:root {
  --black: black;
  --coral: #ff8e64;
  --white: white;
  --lime: #48ff01;
  --lime-green: #00ad31;
  --gold: #ffe641;
  --dark-grey: #a5a5a5;
  --gainsboro: #ddd;
  --white-smoke: #f5f6f9;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

h1 {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
}

h2 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: 600;
  line-height: 50px;
}

h3 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
}

h4 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}

h5 {
  color: #333;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

h6 {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
}

p {
  color: #969696;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  color: #969696;
  font-size: 15px;
  line-height: 25px;
}

blockquote {
  color: #000;
  background-color: rgba(221, 221, 221, .08);
  border-left: 2px solid #ff8e64;
  margin-bottom: 10px;
  padding: 20px;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 26px;
}

.page-fade-in {
  font-family: Montserrat, sans-serif;
  overflow: hidden;
}

.contact-us {
  z-index: 1000;
  background-color: rgba(255, 142, 100, .81);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.contact-us-wrapper {
  opacity: 1;
  text-align: center;
  display: block;
  position: relative;
  top: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
}

.contact-us-popup {
  z-index: 3000;
  text-align: center;
  background-color: #fff;
  border-radius: 3px;
  max-width: 570px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 64px 64px;
  display: block;
  position: relative;
  transform: scale(.9);
  box-shadow: 0 10px 30px rgba(38, 56, 72, .2);
}

.close-popup-button {
  background-image: url('../images/cross-symbol.png');
  background-position: 50%;
  background-size: 20px;
  width: 28px;
  height: 28px;
  margin-top: 20px;
  margin-right: 20px;
  transition: opacity .2s;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.link-block {
  opacity: .3;
  background-image: none;
}

.link-block:hover {
  opacity: 1;
}

.contact-us-icon {
  background-color: rgba(0, 0, 0, 0);
  margin-top: 0;
  margin-bottom: 8px;
}

.popup-overlay {
  z-index: 2000;
  text-align: center;
  background-color: rgba(16, 18, 70, .65);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.contact-us-button {
  z-index: 2000;
  background-image: url('../images/watt.png'), linear-gradient(#fff, #fff);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 61px, auto;
  border-radius: 14px;
  width: 60px;
  height: 60px;
  margin: 32px;
  position: fixed;
  bottom: 0;
  right: 0;
  box-shadow: 0 8px 16px rgba(34, 34, 34, .2);
}

.navbar {
  z-index: 9999;
  background-color: #fff;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.navbar.fixed-nav {
  z-index: 999;
  background-color: #fff;
  padding-left: 56px;
  padding-right: 56px;
  position: fixed;
  transform: translate(0, -75px);
}

.navbar.white {
  background-color: #fff;
}

.container-full {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  display: block;
}

.container-full.slide-wrapper {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.brand {
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  height: 70px;
  padding: 15px 15px 10px;
  display: flex;
}

.brand.scroll {
  height: 60px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.nav-menu {
  float: right;
  text-align: center;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  margin-top: -1px;
  padding-top: 0;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.nav-menu.fixed-menu {
  height: 70px;
}

.nav-menu.scroll {
  height: 60px;
}

.image-background-section {
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.image-background-section.hero-section {
  height: 100vh;
  padding-left: 0;
  padding-right: 0;
}

.image-background-section.hero-section.homeages-2 {
  background-image: url('../images/dots2_1dots2.png'), linear-gradient(rgba(245, 246, 249, .8), rgba(245, 246, 249, .8)), url('../images/naomi-hebert-188443-unsplash-p-2000.jpeg');
  background-position: 0 0, 0 0, 0 0;
  background-size: 8px, auto, cover;
  background-attachment: scroll, scroll, fixed;
  height: 500px;
  padding-top: 120px;
  overflow: hidden;
}

.image-background-section.hero-section.third {
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-background-section.footer-section {
  background-image: linear-gradient(rgba(24, 25, 56, .85), rgba(24, 25, 56, .85)), url('../images/TAVEL.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  width: 100%;
}

.image-background-section.blog-hero-section {
  background-image: linear-gradient(rgba(16, 18, 70, .6), rgba(16, 18, 70, .6)), url('../images/dots2_1dots2.png'), url('../images/yann-maignan-376943-unsplash-p-1080.jpeg');
  background-position: 0 0, 0 0, 50%;
  background-size: auto, 6px, cover;
  position: static;
}

.image-background-section.blog-hero-section.style-guide.new {
  background-image: linear-gradient(rgba(16, 18, 70, .5), rgba(16, 18, 70, .5)), url('../images/dots2_1dots2.png'), url('../images/vbDV-p-1080.jpeg');
  background-position: 0 0, 0 0, 50% -141px;
  background-size: auto, 6px, cover;
}

.image-background-section.blog-hero-section.correct-blog {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url('../images/dots2_1dots2.png'), url('../images/yann-maignan-376943-unsplash-p-1080.jpeg');
  background-position: 0 0, 50% 0, 50% 0;
  background-size: auto, auto, cover;
  height: 600px;
  padding-left: 0;
  padding-right: 0;
}

.image-background-section.blog-hero-section.author {
  background-image: linear-gradient(rgba(16, 18, 70, .6), rgba(16, 18, 70, .6)), url('../images/dots2_1dots2.png'), url('../images/kari-shea-109894-unsplash-1.jpg');
  background-position: 0 0, 0 0, 50% 100%;
  background-size: auto, 5px, cover;
  background-attachment: scroll, scroll, scroll;
}

.image-background-section.blog-hero-section.new {
  background-image: linear-gradient(rgba(16, 18, 70, .6), rgba(16, 18, 70, .6)), url('../images/dots2_1dots2.png'), url('../images/TRAVEL---SICILY.jpg');
  background-position: 0 0, 0 0, 50%;
  background-size: auto, 6px, cover;
}

.image-background-section.blog-hero-section.new.ff {
  background-image: linear-gradient(rgba(16, 18, 70, .6), rgba(16, 18, 70, .6)), url('../images/dots2_1dots2.png'), url('../images/biagio1.jpeg');
  background-position: 0 0, 0 0, 50% 100%;
  background-size: auto, 6px, contain;
  background-attachment: scroll, scroll, fixed;
  height: 50vh;
}

.image-background-section.blog-hero-section.new.ff.f {
  background-image: linear-gradient(rgba(16, 18, 70, .6), rgba(16, 18, 70, .6)), url('../images/dots2_1dots2.png'), url('../images/alessi1.jpeg');
  background-position: 0 0, 0 0, 50% 100%;
  background-size: auto, 6px, contain;
  background-attachment: scroll, scroll, fixed;
}

.hero-slider {
  height: 100%;
}

.slide {
  background-image: linear-gradient(rgba(16, 18, 70, .65), rgba(16, 18, 70, .65)), url('../images/noleggio-bus-conducente-sicilia.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.slide._2 {
  background-image: linear-gradient(rgba(16, 18, 70, .63), rgba(16, 18, 70, .63)), url('../images/servizio-transfer-.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.slide._3 {
  background-image: linear-gradient(rgba(15, 17, 68, .63), rgba(15, 17, 68, .63)), url('../images/mercedes-classe-s.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, contain;
}

.slider-content {
  text-align: center;
  flex: 0 auto;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 15px;
  display: block;
}

.slider-content.third {
  z-index: 200;
  width: 100%;
  max-width: 750px;
  padding-top: 0;
  position: absolute;
}

.hero-text {
  color: #fff;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.hero-text.thin {
  text-align: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  font-weight: 200;
  display: block;
}

.button {
  opacity: 1;
  color: #fff;
  text-align: center;
  background-color: #ff8e64;
  border-radius: 30px;
  width: 180px;
  height: auto;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  display: inline-block;
}

.button:hover {
  opacity: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
}

.button.hero-button {
  border: 1px solid #ff8e64;
  border-radius: 30px;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-right: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 14px;
  line-height: 20px;
}

.button.outline-button {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border: 1px solid #ff8e64;
  border-radius: 30px;
  height: auto;
  padding: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.button.color {
  color: #ff8e64;
  text-align: center;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border: 1px solid #ff8e64;
  border-radius: 30px;
  height: auto;
  padding: 9px 25px;
  font-size: 12px;
  font-weight: 500;
  transition: all .2s, background-color .4s;
}

.button.color:hover {
  color: #fff;
  background-color: #ff8e64;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
}

.button.pop-up {
  margin-top: 24px;
}

.button.full-in-pass {
  width: 100%;
  margin-top: 0;
}

.button.center {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.hero-heading {
  color: #fff;
  text-transform: uppercase;
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 50px;
  font-weight: 400;
  line-height: 56px;
}

.slide-arrow {
  color: #ff8e64;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #ff8e64;
  border-radius: 4px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: auto auto auto 10%;
  font-size: 16px;
  transition: border .2s, background-color .4s;
  display: flex;
  top: 0;
  bottom: 0;
  left: 0%;
  right: 0%;
}

.slide-arrow:hover {
  background-color: #fff;
  border-color: #fff;
  font-size: 17px;
}

.slide-nav {
  color: #ff8e64;
  font-size: 11px;
  display: none;
  bottom: 8%;
  left: -50%;
}

.hero-bottom {
  z-index: 100;
  padding-left: 40px;
  padding-right: 40px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.wrapper.hero-bottom-wrapper {
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.social-link {
  opacity: .7;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  padding: 8px 5px;
  transition: opacity .2s;
  display: inline-block;
}

.social-link:hover {
  opacity: 1;
}

.social-link.orage {
  text-align: center;
  background-color: #ff8e64;
  border-radius: 100px;
  width: 28px;
  height: 28px;
  margin-right: 5px;
  padding: 3px;
}

.social-link.orage.gray {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  width: 32px;
  height: 32px;
  padding-top: 4px;
  padding-bottom: 4px;
  transition-property: background-color;
  transition-duration: .4s;
}

.social-link.orage.gray:hover {
  background-color: #ff8e64;
  border-color: #ff8e64;
}

.social-link.orage.gray.orange {
  background-color: #ff8e64;
}

.social-link.orage.gray.orange:hover {
  border-color: #fff;
}

.scroll-down-link {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 100px;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-right: 0%;
  display: flex;
  position: relative;
  bottom: 30px;
  right: 15px;
}

.scroll-down-link.w--current {
  border-radius: 100px;
  bottom: 25px;
}

.section {
  text-align: center;
  background-color: #fff;
  padding: 120px 56px;
  position: relative;
  overflow: visible;
}

.section.no-padding {
  float: none;
  padding: 0;
}

.section.no-padding.nuova-sezione-diamond {
  float: none;
  clear: none;
  direction: rtl;
}

.section.gray {
  z-index: 30;
  background-color: #f5f6f9;
  overflow: hidden;
}

.section.gray.single {
  background-image: linear-gradient(rgba(245, 246, 249, .49), rgba(245, 246, 249, 0)), url('../images/dots2_1dots2.png');
  background-position: 0 0, 50%;
  background-size: auto, 10px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.section.image-background {
  background-image: url('../images/dots2_1dots2.png');
  background-position: 0 0;
  background-size: 10px;
}

.section.fullwidth {
  padding: 10px;
}

.section.dots {
  background-image: url('../images/dots2_1dots2.png');
  background-position: 0 0;
  background-size: 8px;
}

.section.dots.baudi-white {
  background-image: url('../images/5ac1f8c7b62e427bffce17e9_baudi-white.png'), url('../images/dots2_1dots2.png');
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 1100px, 8px;
  background-attachment: fixed, scroll;
}

.section.baudi {
  opacity: 1;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/TAVEL.jpg');
  background-position: 0 0, 50% 66%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
}

.vertical-features-header {
  flex-direction: column;
  align-items: flex-start;
  width: 72px;
  padding-top: 270px;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.vertical-header {
  text-align: right;
  letter-spacing: 4px;
  text-transform: uppercase;
  width: 320px;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 11px;
  line-height: 16px;
  position: relative;
  left: -124px;
  transform: rotate(-90deg);
}

.section-wrapper-content {
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  width: 50%;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  font-weight: 400;
  display: block;
  position: relative;
}

.section-wrapper-content.page-header {
  width: 60%;
  margin-top: 70px;
}

.section-wrapper-content.page-header.blog {
  flex-direction: column;
  width: 40%;
  margin-top: 200px;
  margin-bottom: 0;
}

.section-wrapper-content.next {
  margin-top: 50px;
}

.section-header {
  color: #000;
  text-align: center;
  text-transform: uppercase;
  border: 0 #000;
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
}

.section-header.white {
  color: #fff;
  font-size: 46px;
  line-height: 50px;
}

.section-header.left {
  text-align: left;
}

.section-header.bianco {
  color: #fff;
}

.services-wrapper {
  flex-wrap: wrap;
  margin-left: 30px;
  padding-top: 8px;
  display: flex;
}

.services-wrapper.no-side-padding {
  margin-left: 0;
}

.services-card {
  text-align: left;
  border: 1px solid #e7e9ec;
  border-radius: 8px;
  flex: 1;
  margin-left: 25px;
  margin-right: 25px;
  padding: 48px 32px 32px;
  position: relative;
}

.services-card.style-2 {
  float: right;
  box-shadow: none;
  border-style: none;
  flex: 1;
  width: 100%;
  margin-left: 25px;
  margin-right: 25px;
  padding: 16px 32px;
}

.services-card.new {
  flex: 0 auto;
  margin-top: 60px;
  margin-bottom: 60px;
  padding-top: 46px;
  padding-bottom: 0;
}

.services-card.new.second {
  margin-top: 0;
}

.services-line {
  border-style: none;
  border-top-width: 2px;
  border-top-color: #ff8e64;
  justify-content: center;
  align-items: center;
  width: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 24px;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.services-line.price {
  background-color: rgba(0, 0, 0, 0);
  border-top-style: solid;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 8px;
  display: block;
  position: absolute;
}

.services-tittle {
  text-align: left;
  text-transform: none;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
}

.services-tittle.style-2 {
  float: none;
  text-align: left;
  text-transform: uppercase;
  flex-direction: row;
  margin-top: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  display: block;
  position: relative;
}

.paragraph-small {
  color: #000;
  margin-top: 8px;
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 25px;
}

.features-wrapper {
  justify-content: space-between;
  display: flex;
}

.features-wrapper._2 {
  padding-left: 0;
  padding-right: 0;
}

.half-side-content {
  justify-content: center;
  align-items: center;
  width: 50%;
  padding-left: 60px;
  padding-right: 60px;
  display: flex;
}

.half-side-content.image-background {
  background-image: url('../images/AEROPORTI.jpg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  height: auto;
  padding-left: 0;
  padding-right: 0;
}

.half-side-content.image-background._2 {
  background-image: url('../images/ASSISTENZA-CLIENTI.jpg');
  background-position: 50%;
  background-size: cover;
}

.half-side-content.image-background._2.black {
  background-image: url('../images/black-diamond-logo.jpg');
}

.half-side-content.contact-bacground {
  background-image: linear-gradient(rgba(16, 18, 70, .3), rgba(16, 18, 70, .3)), url('../images/form-alessi.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  width: 50%;
  height: auto;
  min-height: 700px;
  position: relative;
}

.half-side-content.contact-us-half-side {
  width: 50%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.half-side-content.gray {
  background-color: #f5f6f9;
  background-image: linear-gradient(rgba(165, 165, 165, .18), #fff), url('../images/SFONDO-ALESSI.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  height: auto;
  min-height: 700px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.half-side-content.icon {
  min-height: 700px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.half-side-info {
  max-width: 400px;
  padding-bottom: 16px;
  padding-left: 15px;
  padding-right: 15px;
}

.half-side-info.new {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.instagram-section {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/bram-naus-200967-unsplash.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.instagram-section.style-2 {
  background-color: #f5f6f9;
  background-image: none;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.follow-me-text {
  color: #000;
  text-align: left;
  margin-top: 14px;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  text-decoration: none;
}

.follow-me-text.center {
  color: #969696;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
}

.play-icon {
  background-color: #ff8e64;
  background-image: url('../images/play-button.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid #ff8e64;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin-left: -30px;
  padding-left: 0;
  padding-right: 0;
  transition: all .4s;
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
}

.play-icon:hover {
  transform: translate(0, -50%)scale(1.06);
}

.play-icon.video-section {
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.play-icon.video-section._2 {
  top: 50%;
  transform: none;
}

.small-features {
  flex-flow: wrap;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  max-width: 500px;
  margin-left: 0;
  padding: 50px 15px 50px 0;
  display: flex;
}

.small-feature {
  flex: 0 auto;
  width: 50%;
  margin-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
}

.small-feature.new {
  width: 100%;
}

.team-section {
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  padding: 109px 40px;
}

.team-section.gray {
  background-color: #f5f6f9;
  background-image: none;
}

.team-section.top-border {
  border-top: 1px rgba(221, 221, 221, .67);
}

.team-content {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  flex: 1;
  padding: 0 12px;
  position: static;
  bottom: 0;
  left: 0;
  right: 0;
}

.team-name {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 24px;
}

.team-name.small {
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
}

.top-padding {
  margin-top: 12px;
}

.pricing-wrapper {
  flex-wrap: wrap;
  padding-top: 8px;
  display: flex;
}

.pricing-card {
  text-align: center;
  background-color: #fff;
  border: 1px solid #ddd;
  border-top-style: none;
  border-radius: 3px;
  flex: 1;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 58px;
  padding-bottom: 48px;
  transition: all .2s;
  position: relative;
}

.pricing-card:hover {
  border-top: 2px #ff8e64;
  border-left-style: solid;
  box-shadow: 0 16px 20px rgba(165, 165, 165, .21);
}

.pricing-card.colored {
  background-color: #ff8e64;
  background-image: linear-gradient(rgba(16, 18, 70, .2), rgba(16, 18, 70, .2)), url('../images/becca-tapert-391584-unsplash.jpg');
  background-position: 0 0, 50%;
  background-size: auto, 700px;
  border-style: none;
  border-color: #ff8e64;
}

.pricing-big-text {
  color: #333;
  font-size: 48px;
  line-height: 56px;
}

.pricing-wrapper-list {
  width: 80%;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
}

.pricing-text-list {
  color: #969696;
  border-bottom: 0 rgba(0, 0, 0, 0);
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  padding: 14px 24px 15px;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  display: block;
  box-shadow: 0 1px #e6e4e4;
}

.testimonial-wrapper {
  flex-wrap: wrap;
  margin-left: 30px;
  display: flex;
}

.teastimonial-card {
  text-align: left;
  background-color: #fff;
  border: 1px solid #e7e9ec;
  border-radius: 10px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-left: 40px;
  margin-right: 40px;
  padding: 24px 32px;
  display: block;
  position: relative;
}

.teastimonial-card.in {
  float: none;
  width: 73%;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.testimonial-member {
  text-align: left;
  border: 2px solid #ff8e64;
  border-radius: 10px;
  width: 68px;
  height: 68px;
  margin-top: -35px;
  margin-bottom: 24px;
  margin-left: -45px;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonial-member.in {
  width: 100px;
  height: 100px;
  margin-top: 0;
  position: static;
}

.testimonial-member.single-author {
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 0;
  position: static;
}

.testimonial-text {
  color: #969696;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}

.social-wrapper {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.social-wrapper.testimonials {
  text-align: left;
  margin-top: 30px;
  padding-top: 6px;
}

.social-wrapper.team {
  text-align: left;
}

.social-wrapper.single {
  justify-content: center;
  margin-top: 20px;
}

.social-wrapper.hero {
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  display: block;
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
}

.testimonial-name {
  color: #000;
  margin-bottom: 16px;
  padding-left: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
}

.services-block-image {
  background-color: #fff;
  background-image: url('../images/134144-128.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40px;
  border: 2px solid #ff8e64;
  border-radius: 10px;
  width: 68px;
  height: 68px;
  margin-top: -30px;
  margin-left: -35px;
  padding: 5px;
  position: absolute;
  top: 0;
  left: 0;
}

.services-block-image._2 {
  background-image: url('../images/black-nuovo.jpg');
  background-size: 62px;
  border-radius: 10px;
  margin-left: -35px;
}

.services-block-image._3 {
  background-image: url('../images/bus.png');
  background-size: 40px;
  border-style: solid;
  border-width: 2px;
  border-radius: 10px;
  margin-left: -35px;
}

.services-block-image.new {
  margin-bottom: 20px;
  margin-left: 30px;
}

.contact-us-block-form {
  margin-top: 24px;
}

.contact-us-block-form.percentual {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.text-field {
  color: #969696;
  background-color: rgba(245, 246, 249, .53);
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  margin-bottom: 10px;
  font-weight: 400;
  transition: border .4s;
  display: inline-block;
}

.text-field:hover {
  border-color: #bdbdbd;
}

.text-field-2 {
  border-style: none none solid;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  width: 70%;
}

.text-field-2.message {
  color: #969696;
  background-color: rgba(245, 246, 249, .53);
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  width: 100%;
  height: 80px;
  margin-bottom: 30px;
  font-weight: 400;
  transition: border .4s;
}

.text-field-2.message:hover {
  border-color: #bdbdbd;
}

.text-field-2.message.center {
  height: auto;
  min-height: 120px;
}

.sponsor-section {
  background-color: #f5f6f9;
  padding-top: 48px;
  padding-bottom: 48px;
}

.sponsor-link {
  opacity: .65;
  margin-left: 0;
  margin-right: 0;
  padding: 16px;
  transition: opacity .3s;
}

.sponsor-link:hover {
  opacity: 1;
}

.sponsor-wrapper {
  text-align: center;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.footer {
  color: #fff;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-top: 40px;
  display: flex;
  position: relative;
}

.scroll-up-button {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-right: 8.33%;
  display: flex;
  position: absolute;
  bottom: 100px;
  right: -82px;
}

.scroll-up-button:hover {
  background-color: #ff8e64;
  border-color: #ff8e64;
}

.footer-content {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  margin-right: 8.33%;
  padding-left: 15px;
  padding-right: 30px;
  display: flex;
}

.footer-brand {
  text-decoration: none;
}

.footer-links {
  flex-direction: column;
  align-items: flex-start;
  width: 24%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.footer-header {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 34px;
  margin-bottom: 24px;
  font-size: 11px;
  line-height: 16px;
}

.footer-link {
  color: #fff;
  margin-top: 12px;
  margin-bottom: 12px;
  text-decoration: none;
}

.footer-link:hover, .footer-link.w--current:hover {
  text-decoration: underline;
}

.div-block {
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.image-link {
  background-image: linear-gradient(rgba(16, 18, 70, .2), rgba(16, 18, 70, .2)), url('../images/5aa6c108f416ef411d02377e_tim-wright-272031-unsplash.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  border-radius: 10px;
  width: 100%;
  height: 450px;
  margin-left: 23px;
  display: flex;
  position: relative;
}

.question-container {
  border-radius: 3px;
  flex-direction: column;
  margin-top: 16px;
  padding-right: 0;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.question {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/dots2_1dots2.png');
  background-position: 0 0;
  background-size: 8px;
  border: 1px rgba(165, 165, 165, .35);
  border-bottom-style: solid;
  align-items: center;
  padding: 0 20px 0 0;
  display: flex;
}

.question-heading {
  color: #333;
  text-align: left;
  flex: 1;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
}

.question-heading.question-quote {
  flex: 0 auto;
  margin-right: 5px;
  font-weight: 600;
}

.answer {
  padding-right: 0;
}

.nav-button-block {
  float: none;
  padding-top: 0;
  padding-left: 40px;
  display: inline-block;
  position: static;
}

.purchase-button {
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #ff8e64;
  border-radius: 30px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
}

.purchase-button:hover {
  background-color: #ff8e64;
}

.purchase-button.outline {
  border-color: #fff;
  transition: all .3s;
  box-shadow: 0 0 16px rgba(0, 0, 0, .17);
}

.purchase-button.outline:hover {
  color: #ff8e64;
  background-color: #fff;
}

.purchase-button.orange-text {
  color: #000;
  font-weight: 600;
  transition: background-color .4s;
}

.purchase-button.orange-text:hover {
  color: #fff;
}

.purchase-button.nav {
  color: #fff;
  background-color: #ff8e64;
  transition: background-color .4s;
}

.purchase-button.nav.w--current {
  color: #fff;
  background-color: #ff8e64;
  border-color: #ff8e64;
}

.nav-link {
  color: #000;
  text-align: left;
  padding: 8px 10px 8px 2px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: color .4s;
  display: block;
}

.nav-link:hover {
  color: #ff8e64;
}

.nav-link.w--current {
  color: #ff8e64;
  font-weight: 400;
}

.nav-link.dark {
  color: #333;
  font-weight: 600;
}

.nav-link.dark:hover {
  color: #ff8e64;
}

.nav-link.down {
  color: #000;
  display: block;
}

.slide-arrow-right {
  z-index: 3;
  color: #ff8e64;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #ff8e64;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: auto 10% auto auto;
  font-size: 16px;
  transition: background-color .4s;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}

.slide-arrow-right:hover {
  background-color: #fff;
  border-color: #fff;
}

.blog-hero {
  color: #fff;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
  display: flex;
  position: relative;
}

.page-brand {
  justify-content: flex-end;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.blog {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: -40px;
  display: flex;
}

.sidebar-block {
  float: right;
  width: 95%;
  padding-bottom: 40px;
}

.text-button {
  float: none;
  margin-left: 5px;
  font-size: 14px;
  display: inline-block;
}

.paragraph-footer {
  margin-top: 24px;
}

.paragraph-footer.white {
  margin-top: 0;
  font-size: 15px;
  line-height: 25px;
}

.purchase-section {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(rgba(16, 18, 70, .5), rgba(16, 18, 70, .5)), url('../images/dots2_1dots2.png'), url('../images/viaggi-PER-CATANIA.jpg');
  background-position: 0 0, 0 0, 50% 100%;
  background-size: auto, 8px, cover;
  background-attachment: scroll, scroll, fixed;
  padding-top: 80px;
  padding-bottom: 80px;
  position: static;
}

.purchase-button-block {
  text-align: center;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.small-text-team {
  color: #ff8e64;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}

.instagram-card-style-2 {
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  width: 33.33%;
  margin-left: auto;
  margin-right: auto;
  padding: 45px 40px 40px;
  display: block;
  position: relative;
}

.div-block-3 {
  float: none;
  display: inline-block;
}

.tabs-menu {
  text-align: center;
  border-bottom: 1px #ddd;
  width: 100%;
  margin-bottom: 40px;
}

.tab-link {
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  padding-left: 20px;
  padding-right: 20px;
  font-size: 12px;
}

.tab-link:hover {
  color: #ff8e64;
}

.tab-link.w--current {
  color: #ff8e64;
  background-color: rgba(0, 0, 0, 0);
  border-bottom: 2px solid #ff8e64;
  padding-left: 20px;
  padding-right: 20px;
}

.tab-link.w--current:hover {
  color: #ff8e64;
}

.contact-us-card {
  text-align: left;
  flex: 1;
  margin-top: 0;
  margin-left: 15px;
  margin-right: 15px;
  padding: 24px 32px;
  position: absolute;
}

.contact-us-block {
  align-items: flex-start;
  margin-top: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.features-link {
  color: #ff8e64;
  font-size: 12px;
  text-decoration: none;
}

.features-link:hover {
  text-decoration: underline;
}

.fact-section {
  background-color: #f5f6f9;
  padding: 72px 56px;
  position: relative;
}

.fact-section.white {
  background-color: #fff;
  background-image: none;
}

.facts {
  display: flex;
}

.fact-item {
  text-align: center;
  flex: 1;
  padding-top: 8px;
  padding-left: 15px;
  padding-right: 15px;
}

.facts-image {
  width: 46px;
}

.facts-heading {
  margin-top: 16px;
  font-weight: 700;
  line-height: 26px;
}

.facts-text {
  color: #a5a5a5;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
}

.text-block-7 {
  font-weight: 500;
}

.team-member-image {
  background-image: url('../images/mark-skeet-531298-unsplash-p-1080.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: flex-end;
  height: 360px;
  margin-bottom: 0;
  padding-bottom: 12px;
  padding-left: 10px;
  transition: box-shadow .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.team-member-image:hover {
  background-image: url('../images/mark-skeet-531298-unsplash-p-1080.jpeg');
  background-position: 50%;
  background-size: cover;
  box-shadow: inset 0 0 0 500px rgba(46, 50, 60, .2);
}

.team-member-image._2 {
  background-image: url('../images/alex-sorto-467581-unsplash-p-1600.jpeg');
  background-position: 50% 0;
  border-radius: 10px;
}

.team-member-image._3 {
  background-image: url('../images/nick-karvounis-423669-unsplash-p-1600.jpeg');
}

.team-member-image._4 {
  background-image: url('../images/dgss`rg.jpg');
}

.white {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
}

.white.big {
  font-family: Montserrat, sans-serif;
  font-size: 55px;
  font-weight: 600;
  line-height: 65px;
}

.white.center {
  text-align: center;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  display: block;
}

.white.center.percentual {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  display: block;
}

.white.center.padding-bottom {
  margin-bottom: 30px;
}

.white._04 {
  margin-bottom: 40px;
}

.price-table {
  color: #ff8e64;
  font-size: 18px;
  font-weight: 500;
}

.price-table.white {
  color: #fff;
}

.number-services {
  color: #ff8e64;
  text-transform: uppercase;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
}

.left {
  float: none;
}

.image-5 {
  float: left;
  height: 20px;
  margin-right: 10px;
}

.contact-us-wrapper-half-section {
  justify-content: space-between;
  display: flex;
}

.small-text-pricing {
  color: #969696;
  margin-bottom: 24px;
  line-height: 24px;
}

.small-text-pricing.white {
  color: #fff;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, .3);
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-top: 64px;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.text-copyright {
  margin-right: 5px;
  font-size: 12px;
  line-height: 24px;
  display: inline;
}

.text-link-copyright {
  color: #ff8e64;
  text-transform: none;
  font-size: 12px;
  text-decoration: none;
}

.text-link-copyright:hover {
  text-decoration: underline;
}

.works {
  flex-wrap: wrap;
  height: 50vh;
  margin-bottom: 0;
  display: flex;
}

.work {
  width: 33.33%;
  padding: 15px;
}

.work-card {
  text-align: left;
  width: 100%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.work-card-image-block {
  z-index: 1;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.work-card-image {
  transition: opacity .2s;
  transform: scale(1.08);
}

.work-card-info {
  box-shadow: none;
  text-align: center;
  background-color: rgba(0, 0, 0, .31);
  justify-content: center;
  align-items: center;
  padding: 40px;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.team-member {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.pop-up-text-field {
  height: 50px;
  margin-top: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.pop-up-text-field.center {
  text-align: center;
}

.portfolio-content {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.portfolio-image {
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
  display: block;
}

.portfolioterxt {
  color: #969696;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 24px;
}

.portfolioterxt.border {
  border-top: 1px #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  line-height: 25px;
}

.portfolioterxt.first {
  padding-top: 0;
}

.big-tittle {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 600;
}

.upper-title {
  text-align: center;
}

.column-div {
  width: 95%;
}

.row-info {
  margin-top: 100px;
}

.separator {
  background-color: #ff8e64;
  width: 1px;
  height: 70px;
  margin: 10px auto 20px;
  display: block;
}

.separator._404 {
  margin-bottom: 0;
}

.pattern-dots {
  background-image: url('../images/dots2_1dots2.png');
  background-position: 50%;
  background-size: auto;
  height: 30px;
}

.logo-type {
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 700;
}

.logo-type.white-font {
  color: #fff;
}

.logo-type.white-font.footer {
  padding-bottom: 30px;
}

.color-font {
  color: #ff8e64;
  text-transform: uppercase;
  font-weight: 700;
}

.licensing-items {
  width: 66.66%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 8px;
  padding-left: 15px;
  padding-right: 15px;
  display: block;
}

.licensing-item {
  border-top: 1px #ddd;
  border-bottom: 1px #ddd;
  justify-content: center;
  align-items: center;
  margin-top: -1px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  position: relative;
}

.licensing-item.first {
  border-bottom-style: solid;
}

.licensing-item-content {
  text-align: left;
  border: 1px solid rgba(0, 0, 0, .14);
  height: 100px;
  margin-left: 32px;
  padding: 12px 20px 20px;
}

.licensin-pfoto-link {
  color: #a5a5a5;
  margin-top: 8px;
  margin-right: 0;
}

.licensin-pfoto-link:hover {
  color: #ff8e64;
}

.divider-link {
  margin-left: 8px;
  margin-right: 8px;
  display: inline-block;
}

.utility-page-wrap {
  background-image: linear-gradient(rgba(16, 18, 70, .5), rgba(16, 18, 70, .5)), url('../images/alexander-pemberton-95212-unsplash-p-2000_1.jpeg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-wrap.pass {
  background-image: linear-gradient(rgba(16, 18, 70, .5), rgba(16, 18, 70, .5)), url('../images/dots2_1dots2.png'), url('../images/vbDV-p-1080.jpeg');
  background-position: 0 0, 0 0, 0 0;
  background-size: auto, 5px, cover;
  background-attachment: scroll, scroll, fixed;
}

.utility-page-content {
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  max-width: 600px;
  padding: 0;
  display: flex;
}

.pass-window {
  color: #fff;
  text-align: center;
  background-color: #fff;
  border-radius: 4px;
  flex-direction: column;
  width: 400px;
  margin-top: 24px;
  padding: 50px;
  font-size: 17px;
  line-height: 27px;
  display: flex;
}

.pass-form {
  color: #333;
}

.input {
  text-align: center;
  height: 48px;
  margin-bottom: 24px;
}

.password-image {
  width: 65px;
  height: 65px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.heading-10 {
  line-height: 22px;
}

.paragraph-center {
  color: #fff;
  text-align: center;
  border: 1px #f5f6f9;
  font-family: Montserrat, sans-serif;
}

.paragraph-center.altra {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.paragraph-center.nero {
  color: #000;
}

.title-liciensing {
  margin-top: 0;
  margin-bottom: 10px;
}

.image-side {
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.copy-div {
  text-align: center;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.hero-image-div {
  background-image: linear-gradient(rgba(16, 18, 70, .6), rgba(16, 18, 70, .6)), url('../images/mitch-moondae-321409-unsplash-p-1600.jpeg');
  background-position: 0 0, 50% 0;
  background-size: auto, cover;
  border-radius: 10px;
  height: 600px;
  margin-top: -300px;
  padding-bottom: 0;
  position: relative;
}

.page-header-overlay {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.div-small-image {
  opacity: .1;
  background-image: url('../images/destinazione-.png');
  background-position: 0 0;
  background-size: cover;
  width: 250px;
  height: 250px;
  position: absolute;
  top: 0;
  left: 0;
}

.div-image-small-right {
  opacity: .09;
  background-image: url('../images/sedan-car-front.png');
  background-position: 50%;
  background-size: cover;
  border: 1px solid rgba(0, 0, 0, 0);
  width: 25%;
  height: 25%;
  position: absolute;
  bottom: 0;
  right: 0;
}

.div-block-8 {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/dots2_1dots2.png');
  background-position: 0 0;
  background-size: 8px;
  border: 35px solid #f6f6f6;
  border-radius: 20px;
  width: 500px;
  height: 500px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
}

.div-block-9 {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/dots2_1dots2.png');
  background-position: 0 0;
  background-size: 8px;
  border: 20px solid #f8f8f8;
  border-radius: 10px;
  width: 200px;
  height: 200px;
  position: absolute;
  top: 53px;
  left: auto;
  right: 42px;
}

.blog-dark-overlay {
  background-image: linear-gradient(rgba(16, 18, 70, .5), rgba(16, 18, 70, .5));
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.dropdown-link {
  color: #a5a5a5;
  background-color: #fff;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 23px;
}

.dropdown-link:hover {
  color: #ff8e64;
}

.dropdown-link.w--current {
  color: #fff;
  background-color: #ff8e64;
  font-size: 13px;
  line-height: 23px;
}

.dropdown-list {
  margin-top: 0;
}

.dropdown-list.w--open {
  border-radius: 4px;
  margin-top: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .15);
}

.title-contact {
  text-transform: uppercase;
}

.scroll-nav {
  background-color: #fff;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
}

.success-message {
  color: #fff;
  background-color: #00ad31;
  border-radius: 10px;
  font-weight: 500;
}

.error-message {
  color: #fff;
  text-align: center;
  background-color: red;
  border-radius: 10px;
}

.link-author {
  color: #ff8e64;
  padding-top: 20px;
}

.link-author:hover {
  color: #000;
}

.div-button {
  float: right;
  height: 80px;
  padding-top: 15px;
}

.bold-text {
  margin-right: 5px;
}

.button-div {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.close-link-block {
  background-image: url('../images/close.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  width: 28px;
  height: 28px;
  margin-top: 20px;
  margin-right: 20px;
  position: absolute;
  top: 0;
  right: 0;
}

.field-label {
  font-size: 12px;
  font-weight: 600;
}

.hero-zoom {
  background-image: linear-gradient(rgba(16, 18, 70, .65), rgba(16, 18, 70, .65)), url('../images/alexander-pemberton-95212-unsplash.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.rich-text {
  text-align: left;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4, .rich-text h5 {
  text-align: left;
}

.categories {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.categories.single {
  color: #fff;
  background-color: #ff8e64;
  border-radius: 5px;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: inline-block;
}

.collection-list {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.collection-item {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.blog-link {
  float: none;
  background-image: none;
  background-size: auto;
  flex-flow: wrap;
  flex: 0 auto;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 300px;
  margin: 10px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  overflow: visible;
}

.blog-container {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 36px 20px;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.blog-container.gray {
  background-color: #f5f6f9;
  border: 1px solid #f5f6f9;
}

.news-text {
  color: #fff;
  background-color: #c9c9c9;
  border: 1px #ff8e64;
  border-radius: 2px;
  margin-left: 0;
  margin-right: 5px;
  padding: 2px 5px;
  font-size: 12px;
  display: inline-block;
}

.news-text.orange {
  color: #fff;
  background-color: #ff8e64;
  border-style: none;
  border-radius: 2px;
  padding-left: 10px;
  padding-right: 10px;
}

.blog-heading {
  color: #333;
  text-align: left;
  text-transform: uppercase;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.date-text {
  color: #333;
  border-bottom: 1px #ff8e64;
  margin-bottom: 16px;
  margin-left: 20px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.blog-link-photo {
  background-image: url('../images/sophia-baboolal-86214-unsplash.jpg');
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.collection-list-wrapper {
  text-align: center;
  display: inline-block;
}

.text-categories {
  color: #fff;
  text-align: center;
  background-color: #ff8e64;
  border-radius: 4px;
  width: 120px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 10px 15px;
  text-decoration: none;
  display: inline-block;
}

.div-block-14 {
  margin-bottom: 40px;
}

.div-block-15 {
  text-align: left;
}

.collection-item-5 {
  padding-left: 0;
  padding-right: 0;
}

.block-quote {
  line-height: 30px;
}

.block-quote-2 {
  border-left-width: 2px;
  border-left-color: #ff8e64;
  font-style: italic;
  line-height: 28px;
}

.block-quote-3 {
  font-weight: 300;
}

.block-quote-4, .icon-2, .bold-text-2 {
  color: #000;
}

.html-embed {
  width: 100%;
  height: 100%;
}

.heading-11, .heading-12 {
  font-size: 34px;
}

.heading-13 {
  margin-top: 10px;
  font-size: 34px;
}

.heading-14 {
  font-size: 34px;
}

.heading-15 {
  text-align: center;
  font-size: 34px;
}

.heading-16 {
  font-size: 34px;
}

.bold-text-3 {
  color: #fffdfd;
}

.link, .link-2, .link-3, .link-4 {
  color: #fff;
}

.paragraph {
  color: #000;
  text-align: center;
}

.paragraph-2 {
  color: #000;
  text-align: center;
  margin-bottom: 30px;
}

.button-2 {
  background-color: #000;
  margin-top: 20px;
}

.div-block-28 {
  background-color: rgba(79, 94, 120, .24);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  min-height: 200px;
  padding: 55px 15px;
  display: flex;
  position: relative;
}

.button-3 {
  background-color: #5748c5;
  border-radius: 50px;
  padding-left: 35px;
  padding-right: 35px;
  font-size: 14px;
  font-weight: 500;
}

.button-3.button-3-d {
  color: #4f5e78;
  background-color: #f5f6f8;
}

.text-span-5 {
  margin-left: 8px;
}

.dropdown-list-2 {
  background-color: #663d3d;
}

.dropdown-list-2.w--open {
  background-color: #fff;
}

.dropdown-link-2, .dropdown-link-3 {
  border-bottom: 1px solid #000;
}

.dropdown-toggle {
  border: 1px solid #000;
  align-items: center;
  display: block;
  position: relative;
}

.column {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: static;
}

.column-2 {
  height: auto;
  position: static;
}

.columns {
  justify-content: center;
  align-items: center;
  height: 70vh;
  display: flex;
}

.column-3 {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.div-block-29 {
  text-align: center;
}

.paragraph-3 {
  text-align: center;
  margin-bottom: 30px;
}

.columns-2 {
  height: 70vh;
}

.column-4 {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.columns-3 {
  height: 70vh;
}

.column-5, .column-6 {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.paragraph-4 {
  text-align: center;
  margin-bottom: 30px;
}

.column-7 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.column-8 {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.columns-4, .columns-5 {
  height: 70vh;
}

.column-9 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.column-10 {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.paragraph-5, .paragraph-6, .paragraph-7 {
  text-align: center;
  margin-bottom: 30px;
}

.columns-6 {
  height: 70vh;
}

.column-11, .column-12 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.columns-7 {
  height: 70vh;
}

.column-13 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.paragraph-8 {
  text-align: center;
  margin-bottom: 30px;
}

.column-14 {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.div-block-30 {
  background-image: url('../images/MERCEDES-CLASSE-E-TRE-POSTI-.jpg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 350px;
}

.heading-17 {
  text-align: left;
  font-size: 29px;
  line-height: 40px;
}

.paragraph-9 {
  color: #000;
  text-align: center;
  font-size: 17px;
}

.columns-8 {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  height: 55vh;
  margin-bottom: 10px;
  display: flex;
}

.columns-8._1 {
  background-image: linear-gradient(rgba(255, 255, 255, .82), rgba(255, 255, 255, .82)), url('../images/SFONDO-ALESSI.png');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
  height: auto;
}

.columns-8._2 {
  background-image: linear-gradient(rgba(255, 255, 255, .94), rgba(255, 255, 255, .94)), url('../images/SFONDO-ALESSI.png');
  background-position: 0 0, 0%;
  background-size: auto, contain;
}

.columns-8._3 {
  background-image: linear-gradient(rgba(255, 255, 255, .87), rgba(255, 255, 255, .87)), url('../images/SFONDO-ALESSI.png');
  background-position: 0 0, 0 0;
  background-size: auto, cover;
}

.div-block-31, .column-15 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.div-block-32 {
  background-image: url('../images/MERCEDES-CLASSE-E-TRE-POSTI-.jpg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 350px;
}

.div-block-32.classe-s {
  background-image: url('../images/mercedes-benz-s-Vip-Clss.jpeg');
  height: auto;
}

.div-block-32.vito-8-posti {
  background-image: url('../images/mercedes-vito.jpg');
  height: auto;
}

.div-block-32.vito-8-posti.zz {
  background-image: none;
}

.div-block-32.sprinter-14-post {
  background-image: url('../images/classe-e-.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}

.div-block-32.sprinter-14-post.sprinter {
  background-image: url('../images/mercedes-sprinter-14-posti.jpg');
  background-size: contain;
}

.div-block-32.sprinter-19 {
  background-image: url('../images/Mercedes-sprinter-19-posti.jpg');
}

.div-block-32.beluga {
  background-image: url('../images/mercedes-beluga-30-posti.jpg');
}

.div-block-32.travego {
  background-image: url('../images/mercedes-alessi-noleggio.png');
}

.div-block-33 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-4 {
  background-color: #000;
  background-image: url('../images/002-mail.png');
  background-position: 90%;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 10px;
  width: 120px;
  margin-right: 20px;
}

.column-16 {
  height: 100%;
}

.button-5 {
  background-color: #00ad31;
  background-image: url('../images/phone-call-1.png');
  background-position: 90%;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 10px;
  width: 120px;
}

.button-6 {
  background-color: #ff8e64;
  border-radius: 12px;
}

.italic-text, .italic-text-2 {
  font-style: normal;
}

.button-7 {
  background-color: #ff8e64;
  border-radius: 11px;
  margin-top: 60px;
}

.section-2 {
  height: 500px;
  padding-top: 20px;
}

.paragraph-10 {
  color: #000;
  padding-top: 20px;
  font-size: 18px;
}

.text-span-6 {
  font-size: 22px;
  font-weight: 700;
}

.collection-list-wrapper-2 {
  flex-direction: column;
  display: flex;
}

.empty-state {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.div-block-34 {
  background-image: url('../images/alessi1.jpeg');
  background-position: 50%;
  background-size: cover;
  height: 300px;
}

.div-block-34._2 {
  background-image: url('../images/biagio1.jpeg');
}

.text-block-8 {
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
}

.div-block-35 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  display: flex;
}

.section-3 {
  margin-top: 98px;
}

.paragraph-11 {
  color: #000;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
}

.text-span-7, .text-span-8, .text-span-9, .text-span-10, .testo-trasparente {
  color: #fff;
}

.section-4 {
  background-image: url("https://cdn.prod.website-files.com/5cf83932a122292731b3ca3a/5dc5f74e2427078b95c20fe1_Servizio%20di%20noleggio%20con%20conducente.%20Transfer%20da%20e%20per%20l'aeroporto%20di%20Catania.%20Personale%20Specializzato.%20Servizio%20Con%20Conducente.%20Servizio%20Sicuro.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 60vh;
}

.section-5 {
  height: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.div-block-36 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.heading-18 {
  font-size: 30px;
}

.paragraph-12 {
  color: var(--black);
  text-align: center;
}

.container-2 {
  text-align: center;
  padding-top: 1px;
}

.column-17 {
  padding-left: 0;
  padding-right: 0;
}

.div-block-4 {
  z-index: 1000;
  float: none;
  box-shadow: none;
  background-color: #f5f8fa;
  width: 105%;
  margin-top: -15px;
  padding: 60px 20px 10px;
  position: relative;
}

.heading {
  color: var(--black);
  text-align: left;
  border: 1px #000;
  border-bottom: 2px #e0e0e0;
  margin-top: 0;
  margin-bottom: auto;
  font-size: 22px;
  font-weight: 200;
  line-height: 36px;
  display: inline-block;
}

.benefit-split-section {
  margin-top: 10px;
  margin-bottom: 30px;
}

.benefit-text {
  float: none;
  color: #383b41;
  margin-left: 9px;
  padding-left: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  display: inline-block;
}

.paragraph-text {
  color: #63696d;
  padding-left: 0;
}

.column-18 {
  background-image: url('../images/beluga-30-posti.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 245px;
  padding-bottom: 200px;
}

.column-18._54 {
  background-image: url('../images/travego-54-posti-interni-.jpeg');
}

.column-18.sa {
  background-image: url('../images/WhatsApp-Image-2024-07-25-at-10.05.05-3.jpeg');
  background-position: 50%;
}

.column-18.ccc {
  background-image: url('../images/WhatsApp-Image-2024-07-25-at-10.09.01-1.jpeg');
  background-position: 50% 40%;
}

.column-18.aaa {
  background-image: url('../images/WhatsApp-Image-2024-07-30-at-17.40.15.jpeg');
  background-position: 50% 60%;
}

.section-6 {
  height: auto;
  padding-top: 30px;
  padding-bottom: 20px;
}

.section-7 {
  background-image: url('../images/minivan-14-posti.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 60vh;
  margin-top: auto;
  padding-top: 0;
}

.section-7.vip {
  background-image: url('../images/classe-s.jpeg');
  background-position: 50%;
}

.section-7._8 {
  background-image: url('../images/Noleggio-Autobus---Pullman---Mazzarino---Caltanissetta---Sicilia---Mercedes-Vito-8-Posti.jpg');
}

.section-7._19 {
  background-image: url('../images/WhatsApp-Image-2024-07-25-at-10.09.07.jpeg');
  background-position: 50%;
}

.section-7._30 {
  background-image: url('../images/WhatsApp-Image-2024-07-25-at-10.09.03.jpeg');
  background-position: 50%;
  height: 70vh;
  margin-top: auto;
  padding-top: 0;
}

.section-7._30._54 {
  background-image: url('../images/WhatsApp-Image-2024-07-25-at-10.09.06-1.jpeg');
  background-position: 50% 40%;
}

.section-7._30._54.ssa {
  background-image: url('../images/WhatsApp-Image-2024-07-25-at-10.09.08.jpeg');
}

.section-7._30._54._62 {
  background-image: url('../images/WhatsApp-Image-2024-07-25-at-10.09.05.jpeg');
}

.text-span-11 {
  color: #f5f8fa;
  font-size: 8px;
}

.success-message-2 {
  text-align: left;
  background-color: #57a773;
}

.text {
  line-height: 28px;
}

.hero-form {
  text-align: left;
  flex-direction: column;
  display: flex;
}

.form-input {
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  height: 50px;
  margin-bottom: 0;
  padding: 10px 20px;
  font-weight: 500;
}

.form-input::placeholder {
  color: rgba(34, 37, 37, .6);
}

.button-8 {
  border: 2px solid var(--coral);
  background-color: var(--coral);
  text-transform: capitalize;
  border-radius: 5px;
  margin-top: 10px;
  padding: 15px 20px;
  font-weight: 700;
  transition: box-shadow .2s;
  position: relative;
  box-shadow: inset 0 0 100px 100px rgba(0, 0, 0, 0);
}

.button-8:hover {
  box-shadow: inset 0 0 100px 100px rgba(0, 0, 0, .2);
}

.form-grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
}

.form-group {
  margin-bottom: 12px;
}

.success-heading {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 5px;
  font-style: italic;
  text-decoration: underline;
}

.hero-grid {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  align-items: center;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.form-block {
  margin-top: 35px;
}

.heading-1 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 39px;
  font-weight: 500;
  line-height: 1.1;
}

.opt-in-content {
  max-width: 550px;
  padding: 60px 25px;
}

.hero-image {
  width: 100%;
  height: 100%;
}

.success-text {
  color: #fff;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
}

.text-caps {
  text-align: center;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}

.section-8 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.section-9 {
  height: auto;
}

.nav-menu-3 {
  background-color: #f6f8fd;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-height: 340px;
  padding-top: 80px;
  display: flex;
}

.hero-3-header {
  color: #0b072a;
  margin-top: 0;
  margin-bottom: 45px;
  font-size: 40px;
  font-weight: 400;
  line-height: 72px;
}

.nav-3-container {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-3-left-content {
  align-items: center;
  width: 60%;
  min-height: 80vh;
  padding-left: 55px;
  display: flex;
}

.header-3 {
  align-items: center;
  min-height: 80vh;
  display: flex;
  position: relative;
}

.icon-3 {
  color: #fff;
}

.button-standard {
  background-color: #446beb;
  border-radius: 4px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  max-width: 155px;
  padding: 12px 22px;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.button-standard:hover {
  transform: translate(0, -3px);
  box-shadow: 0 8px 11px rgba(0, 0, 0, .15);
}

.hero-3-right-content {
  background-image: url('../images/hero2.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 40%;
  height: 100%;
  min-height: 80vh;
  margin-top: 80px;
}

.hero-3-title-wrapper {
  position: absolute;
}

.navbar-3 {
  background-color: rgba(0, 0, 0, 0);
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
  padding-left: 55px;
  padding-right: 55px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.nav-link-3 {
  text-align: left;
  flex: 1;
  padding-right: 32px;
  font-weight: 500;
  display: block;
}

.menu-button-2 {
  display: flex;
}

.menu-button-2.w--open {
  z-index: 4;
  background-color: #c2d2f9;
}

.hero-1-text {
  color: #446beb;
  letter-spacing: 1px;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
}

.text-span-12 {
  color: var(--black);
}

.text-span-12.tra {
  color: rgba(92, 62, 62, 0);
  background-color: rgba(0, 0, 0, 0);
  line-height: 36px;
}

.text-span-13 {
  color: var(--black);
}

.heading-19 {
  text-align: left;
  margin-top: auto;
}

.heading-20 {
  text-align: left;
}

.text-span-14, .text-span-15 {
  font-size: 40px;
  font-weight: 700;
}

.div-block-276 {
  padding-top: 150px;
}

.section-10 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.text-block-65 {
  color: #000;
  font-family: Lato, sans-serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 35px;
}

.text-block-66 {
  color: #000;
  margin-top: 10px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.div-block-277 {
  background-color: rgba(0, 0, 0, .03);
  height: 2px;
  margin-top: 20px;
}

.text-block-67 {
  color: #000;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}

.container-12 {
  margin-top: 100px;
}

.div-block-278 {
  background-image: linear-gradient(rgba(0, 0, 0, .38), rgba(0, 0, 0, .38)), url('../images/prenotazione-viaggi.jpg');
  background-position: 0 0, 50% 100%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  align-items: center;
  height: 55vh;
  display: flex;
}

.liii {
  color: var(--white);
}

.image-8 {
  margin-right: 7px;
}

.section-11 {
  margin-top: 151px;
  padding-top: 22px;
}

.text-span-16, .text-span-17, .text-span-18, .text-span-19 {
  color: rgba(0, 0, 0, 0);
}

.container-13 {
  padding-top: 0;
  padding-bottom: 0;
}

.section-12 {
  background-color: var(--black);
  background-image: url('../images/noleggio-mercedes-in-sicilia---Alessi-viaggi.jpg');
  background-position: 50%;
  background-size: cover;
  margin-top: 114px;
  padding-top: 85px;
  padding-bottom: 600px;
  position: relative;
}

.t {
  color: rgba(0, 0, 0, 0);
}

.heading-21 {
  float: none;
  color: var(--white);
  text-shadow: 1px 1px 6px #000;
  margin-top: auto;
  margin-bottom: auto;
}

.section-13 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.paragraph-13 {
  color: var(--black);
  text-align: center;
  border-top: 1px solid #000;
  margin-top: 20px;
  padding-top: 20px;
}

.paragraph-14 {
  color: var(--black);
  font-size: 17px;
}

.link-5 {
  color: #fff;
  text-decoration: none;
}

.image-9 {
  width: 100%;
  height: auto;
}

.image-9.zzz {
  opacity: 0;
}

.lightbox-link {
  width: 100%;
  height: 100%;
}

.lightbox-link.dd {
  background-image: url('../images/WhatsApp-Image-2024-07-30-at-17.45.38.jpeg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.image-10 {
  opacity: 0;
  width: 100%;
  height: 100%;
}

.lightbox-link-2 {
  background-image: url('../images/WhatsApp-Image-2024-07-25-at-10.09.08.jpeg');
  background-position: 50% 35%;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.lightbox-link-2.a1 {
  background-image: url('../images/WhatsApp-Image-2024-07-25-at-10.09.02.jpeg');
  background-position: 50% 40%;
  background-size: cover;
}

.lightbox-link-2.a111 {
  background-image: url('../images/WhatsApp-Image-2024-07-25-at-10.09.07.jpeg');
  background-position: 50% 60%;
  background-size: cover;
}

.lightbox-link-2.aqq {
  background-image: url('../images/WhatsApp-Image-2024-07-25-at-10.09.06-1.jpeg');
  background-position: 50%;
  background-size: cover;
}

.lightbox-link-2.a333 {
  background-image: url('../images/WhatsApp-Image-2024-07-25-at-10.09.05.jpeg');
}

html.w-mod-js [data-ix="display-none-on-load"] {
  opacity: 0;
  display: none;
  transform: scale(1.09);
}

html.w-mod-js [data-ix="hide-scroll-navigation-on-initial"] {
  display: none;
}

@media screen and (max-width: 991px) {
  .navbar {
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .navbar.fixed-nav {
    padding-left: 16px;
    padding-right: 0;
  }

  .brand {
    height: 70px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .nav-menu {
    float: none;
    text-align: left;
    background-color: #fff;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: auto;
    margin-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    top: 60px;
    bottom: auto;
    left: 0;
    overflow: scroll;
  }

  .image-background-section.hero-section {
    height: 700px;
  }

  .image-background-section.hero-section.homeages-2 {
    height: 450px;
    padding-top: 80px;
  }

  .image-background-section.footer-section {
    padding-left: 8px;
    padding-right: 8px;
  }

  .image-background-section.blog-hero-section.style-guide.new {
    background-image: linear-gradient(to bottom, null, null), url('../images/dots2_1dots2.png'), url('../images/vbDV-p-1080.jpeg');
    background-position: 0 0, 0 0, 50%;
  }

  .slider-content {
    width: 80%;
    margin-top: 40px;
    margin-bottom: 80px;
    padding-top: 40px;
  }

  .slider-content.third {
    z-index: 10;
    margin-top: 0;
  }

  .hero-heading {
    font-size: 40px;
    line-height: 58px;
  }

  .slide-arrow {
    margin-left: 5%;
  }

  .section {
    padding: 80px 8px;
  }

  .section.gray {
    padding-left: 8px;
    padding-right: 8px;
  }

  .section.gray.single {
    padding-top: 80px;
  }

  .section.image-background {
    padding: 80px 8px;
  }

  .section-wrapper-content {
    width: 470px;
  }

  .section-wrapper-content.page-header, .section-wrapper-content.page-header.blog {
    width: 80%;
  }

  .section-header {
    text-align: center;
    font-size: 30px;
    line-height: 40px;
  }

  .section-header.white {
    font-size: 30px;
    line-height: 40px;
  }

  .services-card {
    flex: 1;
    margin-bottom: 0;
    margin-left: 8px;
    margin-right: 8px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .services-card.style-2 {
    flex-basis: 25%;
    margin-left: 15px;
    margin-right: 15px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .services-tittle.style-2 {
    text-align: left;
    font-size: 16px;
    line-height: 24px;
  }

  .paragraph-small {
    font-size: 14px;
  }

  .half-side-content {
    padding-left: 4%;
    padding-right: 4%;
  }

  .half-side-content.image-background {
    width: 50%;
    height: auto;
  }

  .half-side-content.contact-bacground {
    width: 100%;
  }

  .half-side-content.contact-us-half-side {
    width: 100%;
    height: auto;
    min-height: 700px;
    padding-left: 10%;
    padding-right: 10%;
  }

  .half-side-content.gray {
    flex: 0 auto;
    width: 50%;
    height: auto;
    display: flex;
  }

  .half-side-content.icon {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .half-side-info {
    padding-left: 24px;
    padding-right: 24px;
  }

  .follow-me-text.center {
    font-size: 17px;
    line-height: 24px;
  }

  .small-features {
    flex: 1;
  }

  .small-feature {
    flex: 0 auto;
    width: 100%;
    margin-bottom: 0;
  }

  .pricing-card {
    margin-left: 8px;
    margin-right: 8px;
  }

  .pricing-big-text {
    font-size: 40px;
    line-height: 48px;
  }

  .pricing-wrapper-list {
    width: 100%;
  }

  .testimonial-wrapper {
    flex-direction: column;
    justify-content: space-between;
    margin-left: 45px;
  }

  .teastimonial-card {
    width: 66.66%;
    margin-bottom: 48px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    display: block;
  }

  .social-wrapper.footer {
    padding-left: 0;
    padding-right: 0;
  }

  .sponsor-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .sponsor-link {
    padding: 8px;
  }

  .sponsor-wrapper {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .scroll-up-button {
    right: -20px;
  }

  .footer-content {
    margin-right: 0%;
    padding-left: 8px;
    padding-right: 20px;
  }

  .footer-links {
    padding-left: 8px;
    padding-right: 8px;
  }

  .footer-header {
    letter-spacing: 2px;
  }

  .footer-link {
    color: #fff;
    margin-top: 12px;
    margin-bottom: 12px;
    text-decoration: none;
  }

  .question-container {
    padding-right: 2px;
  }

  .answer {
    padding-right: 0;
  }

  .nav-button-block {
    flex: 0 auto;
    margin-top: 30px;
    padding-left: 0;
    display: none;
  }

  .purchase-button, .purchase-button.outline, .purchase-button.nav, .purchase-button.nav:hover {
    color: #fff;
  }

  .nav-link {
    color: #a5a5a5;
    width: 100%;
    padding: 16px 20px;
    display: block;
  }

  .nav-link:hover {
    color: #ff8e64;
  }

  .nav-link.dark {
    color: #a5a5a5;
    font-weight: 500;
  }

  .nav-link.down {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 20px;
  }

  .slide-arrow-right {
    margin-right: 5%;
    left: 24%;
  }

  .menu-button {
    color: #fff;
  }

  .menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .menu-button.black {
    color: #000;
  }

  .instagram-card-style-2 {
    width: 40%;
    padding: 27px 24px 24px;
  }

  .contact-us-card {
    margin-left: 8px;
    margin-right: 8px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .fact-section {
    padding-left: 8px;
    padding-right: 8px;
  }

  .white.center, .white.center.percentual {
    width: 90%;
  }

  .contact-us-wrapper-half-section {
    flex-flow: column-reverse wrap;
    justify-content: center;
  }

  .work {
    padding: 8px 8px 8px 5px;
  }

  .work-card {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .portfolio-content {
    margin-left: 8px;
  }

  .row-info {
    margin-top: 70px;
  }

  .logo-type.white-font.footer {
    padding-left: 0;
  }

  .copy-div {
    width: 80%;
  }

  .hero-image-div {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .div-block-9 {
    top: auto;
    bottom: 53px;
    right: 42px;
  }

  .div-button {
    padding-top: 15px;
    padding-right: 20px;
  }

  .collection-list {
    flex-flow: column;
    align-content: stretch;
    justify-content: space-between;
    height: 100%;
    display: flex;
  }

  .collection-item {
    justify-content: space-between;
    align-items: stretch;
    width: auto;
    display: block;
  }

  .blog-link {
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    width: 96%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 8px;
    padding-right: 8px;
    display: flex;
    position: relative;
  }

  .blog-container {
    padding-left: 16px;
    padding-right: 16px;
    display: block;
  }

  .blog-heading {
    font-size: 14px;
    line-height: 24px;
  }

  .blog-link-photo {
    display: block;
  }

  .collection-item-5 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-4 {
    width: 100%;
  }

  .hero-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .opt-in-content {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .hero-image {
    width: auto;
    height: auto;
    max-height: 450px;
  }

  .hero-3-header {
    font-size: 51px;
    line-height: 62px;
  }

  .hero-3-left-content {
    min-height: 70vh;
    padding-left: 25px;
  }

  .header-3, .hero-3-right-content {
    min-height: 70vh;
  }

  .navbar-3 {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media screen and (max-width: 767px) {
  .contact-us-wrapper {
    padding: 16px;
  }

  .contact-us-popup {
    padding: 40px;
  }

  .navbar {
    padding-left: 0;
    padding-right: 0;
  }

  .image-background-section.hero-section {
    height: 700px;
  }

  .image-background-section.hero-section.homeages-2 {
    height: 400px;
  }

  .image-background-section.blog-hero-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .slider-content {
    margin-top: 0;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-heading {
    font-size: 30px;
    line-height: 40px;
  }

  .section-wrapper-content {
    width: auto;
  }

  .section-wrapper-content.page-header {
    width: 100%;
  }

  .section-wrapper-content.page-header.blog {
    width: 90%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .services-card {
    width: 66.66%;
    margin-bottom: 58px;
    margin-left: 0;
    margin-right: 0;
    padding: 56px 32px 48px;
  }

  .services-card.style-2 {
    width: 66.66%;
    margin-bottom: 24px;
  }

  .services-tittle.style-2 {
    text-align: left;
  }

  .features-wrapper {
    flex-flow: column-reverse wrap;
    display: flex;
  }

  .features-wrapper._2 {
    flex-flow: column;
  }

  .half-side-content {
    justify-content: center;
    width: 100%;
    margin-bottom: 0;
    display: flex;
  }

  .half-side-content.image-background {
    width: 100%;
    height: 600px;
  }

  .half-side-content.image-background._2 {
    flex-flow: row;
  }

  .half-side-content.contact-bacground {
    height: 560px;
  }

  .half-side-content.contact-us-half-side, .half-side-content.gray {
    width: 100%;
    height: auto;
  }

  .half-side-content.icon {
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .half-side-info {
    margin-bottom: 24px;
    padding-top: 24px;
  }

  .play-icon {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .small-features {
    justify-content: center;
    max-width: 91%;
  }

  .small-features.new {
    max-width: 100%;
  }

  .small-feature {
    width: 50%;
    padding-left: 8px;
    padding-right: 8px;
  }

  .team-content {
    text-align: left;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .pricing-wrapper {
    margin-bottom: 25px;
    display: block;
  }

  .pricing-card {
    width: 66.66%;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .testimonial-wrapper {
    display: block;
  }

  .teastimonial-card {
    width: 66.66%;
    margin-bottom: 58px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .social-wrapper.footer {
    padding-left: 0;
  }

  .contact-us-block-form.percentual {
    width: 80%;
  }

  .footer {
    padding-right: 20px;
  }

  .footer-content {
    flex-basis: 100%;
    padding-left: 0;
    padding-right: 10px;
  }

  .footer-links {
    width: 50%;
  }

  .footer-link {
    font-size: 13px;
  }

  .div-block {
    display: block;
  }

  .image-link {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .purchase-section {
    padding-left: 8px;
    padding-right: 8px;
  }

  .small-text-team {
    text-align: left;
  }

  .instagram-card-style-2 {
    width: 66.66%;
  }

  .facts {
    flex-direction: column;
  }

  .fact-item {
    margin-bottom: 20px;
  }

  .team-member-image._4 {
    width: 100%;
  }

  .white.center {
    width: 90%;
  }

  .white.center.percentual {
    width: 100%;
  }

  .contact-us-wrapper-half-section {
    flex-flow: column-reverse wrap;
    display: flex;
  }

  .works {
    flex-direction: column;
  }

  .work {
    width: 100%;
  }

  .work-card {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .portfolio-content {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .column-div {
    margin-bottom: 24px;
  }

  .row-info {
    margin-top: 50px;
  }

  .licensing-items {
    width: 70%;
  }

  .image-side {
    width: 100%;
  }

  .copy-div {
    width: 80%;
  }

  .div-button {
    padding-top: 15px;
  }

  .collection-item {
    padding-left: 0;
    padding-right: 0;
  }

  .blog-link {
    flex-basis: 47%;
    justify-content: center;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .blog-container {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .news-text {
    margin-bottom: 8px;
  }

  .collection-item-5 {
    margin-bottom: 10px;
    display: inline-block;
  }

  .div-block-28 {
    margin-bottom: 16px;
  }

  .div-block-4 {
    width: 100%;
  }

  .heading-1 {
    margin-bottom: 16px;
    font-size: 40px;
  }

  .opt-in-content {
    width: 90%;
    padding: 50px 0;
  }

  .hero-3-header {
    font-size: 45px;
    line-height: 59px;
  }

  .hero-3-left-content {
    width: 100%;
    height: 500px;
    min-height: 60vh;
    padding-top: 150px;
    padding-bottom: 120px;
  }

  .header-3 {
    flex-direction: column;
    align-items: flex-start;
  }

  .icon-3 {
    color: #232931;
  }

  .hero-3-right-content {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .contact-us-button {
    margin: 16px;
  }

  .navbar {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar.fixed-nav {
    background-color: rgba(0, 0, 0, 0);
    padding-left: 8px;
  }

  .container-full {
    flex-flow: column;
    align-items: center;
    margin-top: 0;
    display: flex;
  }

  .brand {
    height: 60px;
    padding-top: 10px;
  }

  .image-background-section.hero-section {
    height: 650px;
  }

  .image-background-section.blog-hero-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .slider-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 32px;
    margin-bottom: 95px;
    padding: 32px 10px;
    display: flex;
  }

  .button {
    margin-bottom: 10px;
  }

  .button.hero-button {
    margin-bottom: 8px;
    margin-left: 0;
    margin-right: 16px;
  }

  .button.outline-button {
    margin-left: -16px;
  }

  .slide-arrow, .hero-bottom {
    display: none;
  }

  .wrapper.hero-bottom-wrapper {
    justify-content: space-between;
    align-items: flex-end;
  }

  .section {
    margin-top: 48px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section-wrapper-content {
    width: 100%;
    font-size: 16px;
  }

  .section-wrapper-content.page-header.blog {
    padding-left: 10px;
    padding-right: 10px;
  }

  .section-header.white {
    font-size: 32px;
    line-height: 40px;
  }

  .section-header.left {
    font-size: 23px;
    line-height: 29px;
  }

  .services-wrapper {
    margin-left: 33px;
  }

  .services-card {
    width: 100%;
  }

  .half-side-content.contact-us-half-side {
    min-height: 750px;
    padding-left: 10%;
    padding-right: 10%;
  }

  .half-side-content.icon {
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .half-side-info {
    max-width: 400px;
    margin-bottom: 1px;
    padding-top: 0;
  }

  .instagram-section.style-2 {
    flex-direction: column;
  }

  .small-feature {
    width: 1000%;
  }

  .team-section {
    padding-top: 72px;
    padding-bottom: 72px;
    padding-left: 20px;
  }

  .team-section.gray {
    padding-right: 20px;
  }

  .team-section.top-border {
    padding-left: 10px;
    padding-right: 10px;
  }

  .pricing-card {
    width: 100%;
  }

  .testimonial-wrapper {
    margin-left: 0;
  }

  .teastimonial-card {
    width: 100%;
  }

  .scroll-up-button {
    margin-bottom: 20px;
    bottom: 125px;
  }

  .footer-links {
    width: 100%;
  }

  .question-container {
    padding-right: 2px;
  }

  .slide-arrow-right {
    display: none;
  }

  .menu-button {
    color: #000;
  }

  .purchase-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .instagram-card-style-2 {
    width: 100%;
    margin-bottom: 19px;
  }

  .tabs-menu {
    text-align: center;
  }

  .tab-link {
    text-align: center;
    width: 66.66%;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .tab-link.w--current {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .contact-us-card {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
  }

  .facts {
    flex-direction: column;
  }

  .fact-item {
    margin-bottom: 16px;
  }

  .white.center {
    width: 95%;
  }

  .footer-copyright {
    flex-direction: column;
    align-items: center;
  }

  .portfolio-content {
    width: 100%;
    margin-left: 0;
  }

  .big-tittle {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 40px;
  }

  .row-info {
    margin-top: 50px;
  }

  .licensing-items {
    width: 100%;
  }

  .licensing-item-content {
    flex: 0 auto;
    margin-left: 20px;
  }

  .paragraph-center.altra {
    font-size: 16px;
  }

  .title-liciensing {
    margin-bottom: 5px;
  }

  .image-6 {
    flex: 0 auto;
  }

  .copy-div {
    width: 80%;
  }

  .hero-image-div {
    height: 700px;
  }

  .div-block-10 {
    text-align: left;
    flex: 0 auto;
  }

  .div-block-12 {
    text-align: left;
  }

  .div-button {
    padding-top: 15px;
    padding-right: 10px;
  }

  .collection-list {
    display: block;
  }

  .collection-item {
    width: 100%;
    margin-bottom: 25px;
  }

  .blog-link {
    flex-flow: column-reverse wrap;
    flex-basis: 100%;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    height: 300px;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    display: block;
    position: static;
  }

  .blog-container {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: block;
  }

  .blog-link-photo {
    flex-flow: row;
    width: 30%;
    display: none;
  }

  .collection-item-5 {
    margin-bottom: 10px;
  }

  .heading-11 {
    font-size: 20px;
    line-height: 30px;
  }

  .columns-2 {
    height: auto;
  }

  .column-4 {
    height: auto;
    padding-top: 30px;
  }

  .heading-17 {
    font-size: 20px;
    line-height: 25px;
  }

  .paragraph-9 {
    margin-bottom: 33px;
  }

  .grid, .grid-2 {
    flex-direction: column;
    display: flex;
  }

  .columns-8 {
    flex-direction: column;
    height: auto;
  }

  .div-block-31 {
    padding-bottom: 30px;
  }

  .image-7 {
    margin-bottom: 17px;
  }

  .bold-text-4 {
    color: #000;
  }

  .paragraph-10 {
    height: auto;
    padding: 7px;
    line-height: 33px;
  }

  .container {
    padding-left: 8px;
    padding-right: 1px;
  }

  .div-block-4 {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .benefit-image {
    margin-bottom: 10px;
  }

  .benefit-text {
    margin-bottom: 5px;
    display: block;
  }

  .paragraph-text {
    margin-bottom: 20px;
    padding-left: 0;
  }

  .text {
    font-size: 16px;
  }

  .button-8 {
    text-align: center;
    display: block;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .heading-1 {
    margin-bottom: 12px;
  }

  .opt-in-content {
    width: 90%;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .hero-3-header {
    font-size: 42px;
    line-height: 48px;
  }

  .hero-3-left-content {
    padding-left: 15px;
  }

  .hero-3-right-content {
    background-position: 6% 33%;
    background-size: auto;
    min-height: 40vh;
  }

  .navbar-3 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-10 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

#w-node-e4e60054-af3d-4506-8b22-08784e3f8272-4e3f8270, #w-node-e4e60054-af3d-4506-8b22-08784e3f828c-4e3f8270 {
  align-self: center;
  justify-self: center;
}


