body {
      margin: 0;
      font-family: Montserrat, sans-serif;
      color: white;
      overflow-x: hidden;
    }

    body.menu-open {
      overflow: hidden;
    }
    .main-header .flex-container {
    display: none;
}
.main-header.fixed .flex-container {
    display: flex;
    right: 10%;
}
body.menu-open .main-header.fixed .menu-toggle {
    position: absolute;
    top: auto;
    left: 32%;
    z-index: 1003;
}
body.menu-open .main-header.fixed .flex-container {
display: flex;  
left: 10%;
}
.menu.open .menu-scroll,
.menu.open .teal-bg-overlay {
  transition: opacity 0.3s ease 0.3s; /* delay by same duration as slide */
}
    .main-header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      transition: all 0.3s ease;
      padding: 0vh 5vw;
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0px;
      background-color: transparent;
      transition: background-color 0.3s ease;
      z-index: 1002;
      position: relative;
    }

    body.menu-open .nav {
      z-index: 0;
    }

    .logo {
      height: 110px;
      width: auto;
      z-index: 1002;
      position: relative;
    }
      .body.menu-open .nav .logo {
margin-left: -20px;
}
    .menu-toggle {
      width: 35px;
      height: 50px;
      cursor: pointer;
      position: relative;
      z-index: 1002;
    }

    .bar {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      background: white;
      transition: all 0.3s ease;
    }

    .top-bar { top: 8px;height: 3px !important; }
    .middle-bar { top: 16px;height: 2.5px !important; }
    .bottom-bar { top: 24px;height: 3px !important; }
.menu-toggle.open .top-bar {
  transform: rotate(45deg);
  top: 16px;
   height: 3px;
}

.menu-toggle.open .middle-bar {
  opacity: 0;
}

.menu-toggle.open .bottom-bar {
  transform: rotate(-45deg);
  top: 16px;
  height: 3px;
}
    .menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 900 !important;
    background: linear-gradient(360deg, #0b3c4a 0%, #195870 50%, #093a47 100%);
    width: 100%;
    padding: 15vh 4vw;
    }

    .menu.open {
      transform: translateX(0);
    }

    .menu-scroll {
      flex-grow: 1;
      overflow-y: auto;
      z-index: 1;
      overflow-x: hidden;
      padding-bottom: 50px;
    }

    .menu-item {
      font-size: 1.2rem;
      position: relative;
    }

    .menu-item > a,
    .menu-item-toggle,
    .submenu a {
      text-decoration: none;
      color: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 0 1rem 0;
      border-bottom: 1px solid white;
      cursor: pointer;
      font-size: 18px;
      font-weight: 500;
    }

    .submenu {
      overflow: hidden;
      height: 0;
      display: flex;
      flex-direction: column;
      transition: height 0.3s ease;
    }

    .menu-item.open .submenu {
      height: auto;
    }

    .plus-icon {
      font-size: 1.6rem;
      transition: transform 0.5s ease;
    }

    .menu-item.open .plus-icon {
      transform: rotate(45deg);
    }

    .main-header.fixed {
      position: fixed;
      animation: fadeSlideIn 0.4s ease forwards;
      padding: 0;
      z-index: 1001 !important;
    }

    @keyframes fadeSlideIn {
      0% {
        opacity: 0;
        transform: translateY(-10px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ----- LOGO SWAP ----- */
.logo.fixed-logo {
      display: none;
    }
    .main-header.fixed .logo.default-logo {
      display: none;
    }
    .main-header.fixed .logo.fixed-logo {
      display: inline;
      height: 100px;
      padding-top: 10px;
      margin-left: -20px;
    }
    .main-header.fixed .nav {
    background: linear-gradient(360deg, #0b3c4a 0%, #195870 50%, #093a47 100%);
    height: 90px;
    align-content: center;
    padding: 10px 5vw;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-size: 200% 200%;
    }
.fixed-header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(
    circle at 40% top,
    #00FDEF 0%,
    #00F4E7 7.3%,
    #00DBD4 19.5%,
    #00CAC4 27.4%,
    #00BEBB 32.3%,
    #00BAB7 33.8%,
    #00AEB0 38.1%,
    #00989B 46.9%,
    #00969A 47.8%,
    #007881 60.0%,
    #005C6A 74.6%,
    #004A55 87.5%,
    #003F49 95.1%,
    #003B44 98.4%,
    #003742 100%
  );
}
/* Show only when the header is fixed */
.main-header.fixed .fixed-header-overlay{
  opacity: 0.4;
}
.flex-container {
    position: absolute;
    column-gap: 10px;
    flex-direction: row;
    z-index: 1000;
    right: 75%;
    display: none;
}
  /* ----- MENU TOGGLE BAR COLORS ----- */
    .menu-toggle .bar {
    width: 40px;
    height: 2px;
    background-color: white;
    margin: 10px 0;
    transition: background-color 0.3s ease;
    }
.black {
    color: #242424;
    text-shadow: none;
    font-size: 3.5em;
    font-weight: 500;
}
.menu-overlay {
background: radial-gradient(circle at 40% top, #00FDEF 0%, 3.658536449074745%, #00F4E7 7.31707289814949%, 13.414633646607399%, #00DBD4 19.512194395065308%, 23.475609719753265%, #00CAC4 27.439025044441223%, 29.878048598766327%, #00BEBB 32.31707215309143%, 33.07926803827286%, #00BAB7 33.841463923454285%, 35.975609719753265%, #00AEB0 38.109755516052246%, 42.53048747777939%, #00989B 46.95121943950653%, 47.408536076545715%, #00969A 47.8658527135849%, 53.96341532468796%, #007881 60.060977935791016%, 67.37805008888245%, #005C6A 74.69512224197388%, 81.09756112098694%, #004A55 87.5%, 91.31097495555878%, #003F49 95.12194991111755%, 96.79878056049347%, #003B44 98.47561120986938%, 99.23780560493469%, #003742 100%);
}
.teal-bg-overlay {
background: radial-gradient(circle at 40% top, #00FDEF 0%, 3.658536449074745%, #00F4E7 7.31707289814949%, 13.414633646607399%, #00DBD4 19.512194395065308%, 23.475609719753265%, #00CAC4 27.439025044441223%, 29.878048598766327%, #00BEBB 32.31707215309143%, 33.07926803827286%, #00BAB7 33.841463923454285%, 35.975609719753265%, #00AEB0 38.109755516052246%, 42.53048747777939%, #00989B 46.95121943950653%, 47.408536076545715%, #00969A 47.8658527135849%, 53.96341532468796%, #007881 60.060977935791016%, 67.37805008888245%, #005C6A 74.69512224197388%, 81.09756112098694%, #004A55 87.5%, 91.31097495555878%, #003F49 95.12194991111755%, 96.79878056049347%, #003B44 98.47561120986938%, 99.23780560493469%, #003742 100%);
    opacity: 40%;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
}
/* Transparent AFTER delay */
body.menu-opened .main-header.fixed .nav {
  background: transparent;
  box-shadow: none;
}
body.menu-opened .main-header.fixed .fixed-header-overlay {
  opacity: 0;
}
.menu-item > a, .menu-item-toggle, .submenu a {
    text-decoration: none;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 1rem 0;
    border-bottom: 1px solid white;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    text-shadow: 1px 2px 4px #0000005c;
}
.menu-item.open{
    font-weight: 500;
    border-bottom: 0;
}
.plus-icon {
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 0.5s ease;
}
.menu-item.open .plus-icon {
  transform: rotate(45deg);
}
.submenu {
    overflow: hidden;
    height: 0;
    display: flex;
    flex-direction: column;
    padding-left: 0;
    background-color: transparent;
}
.submenu a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    padding: 0;
    border-bottom: 0;
    transition: all 0.3s ease;
    line-height: 2.5rem;
}
.nav.footer {
    position: fixed;
    bottom: 0;
    z-index: 999;
    background: white;
}
h1, h2, h3, h4, h5, h6 {
    font-size: 4em;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 0;
    color: white;
    z-index: 100;
    text-transform: none;
    line-height: 1.1em;
}
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0rem 5vw;
  position: relative;
  width: auto;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(360deg, #0b3c4a 0%, #195870 50%, #093a47 100%);
}

.hero-content {
  max-width: 60%;
  z-index: 2;
  display: flex;
    flex-direction: column;
    row-gap: 20px;
    margin-top:100px;
}

.hero-image-container {
    position: absolute;
    max-width: 50%;
    margin-top: 100px;
    right: -100px;
    z-index:100;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}
.white-text {
text-shadow: 1px 2px 4px #0000005c;
color: white;
font-size: 18px;
}
p {
font-size: 18px;
line-height: 30px;
font-weight: 500;
color: #242424;
}
.red {
    text-shadow: none;
    color: #d52122;
    font-weight: 600;
    color: #c60217;
}
.button {
text-decoration: none;
    font-size: 16px;
    display: block;
    margin: 0;
    width: auto;
    height: 50px;
    font-family: Montserrat;
    color: white;
    border-radius: 10px;
    box-shadow: 0px 2px 10px #1700006b;
    text-align: center;
    line-height: 50px;
    font-weight: bold;
    background-image: linear-gradient(54deg, #ab1817, #da2323 50%, #b70102 104%);
    padding: 0 20px;
    text-shadow: 1px 2px 4px #00000038;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.button-container {
    display: flex;
    column-gap: 20px;
    padding-top: 20px;
}
.flex-row {
    display: flex;
    flex-direction: column;
    column-gap: 30px;
}
.flex-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 20px;
}
.teal-section {
    padding: 7vh 5vw;
    background: linear-gradient(360deg, #0b3c4a 0%, #195870 50%, #093a47 100%);
    display: flex;
    flex-direction: column;
    row-gap: 50px;
    position: relative;
    margin: 5vh 0 5vh 0;
}
.uppercase-heading {
    color: white;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 1px 2px 4px #0000005c;
    font-size: 17px;
    font-weight: 600;
}
.section {
padding: 7vh 5vw;
}
.inner-section-container {
    margin-top: 50px;
}
.slides div {
	width:100vw;
	min-width:100vw;
	height:100vh;
	flex-shrink:0;
	outline:none;
	font-weight:500;
	text-transform:none;
	line-height:1;
	color: black;
	padding:0 10vw 0 10vw;
	font-size: clamp(30px, 5vw, 30px);
}
.centered {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}
.form-wrapper {
width: 100%;
}
.search-bar-container {
    width: 80%;
}
.search-bar__container .dropdown__value-text, .search-bar__container .search-bar__main-options .checkbox-list__text, .search-bar__container .search-bar__main-options .search-bar__autocomplete .autocomplete__input {
    border-radius: 5px;
    margin-bottom: 18px;
    margin-top: 0;
    height: auto;
    text-transform: capitalize;
    border: 1px solid #fff;
    font-weight: 500;
    padding-left: 10px;
    padding-bottom: 1vh;
    padding-top: 1vh !important;
    padding-right: 0vw;
    text-shadow: 1px 2px 4px #0000005c;
}
.search-bar__container .search-bar__main-options .search-bar__autocomplete .autocomplete__input input {
  text-shadow: 1px 2px 4px #0000005c;
}
span {
    font-size: 18;
    line-height: 28px;
    font-weight: 500;
    z-index: 2;
    position: relative;
}
.tags-bg-overlay {
background: radial-gradient(circle at 40% top, #00FDEF 0% 0%, 3.658536449074745%, #00F4E7 7.31707289814949%, 13.414633646607399%, #00DBD4 19.512194395065308%, 23.475609719753265%, #00CAC4 27.439025044441223%, 29.878048598766327%, #00BEBB 32.31707215309143%, 33.07926803827286%, #00BAB7 33.841463923454285%, 35.975609719753265%, #00AEB0 38.109755516052246%, 42.53048747777939%, #00989B 46.95121943950653%, 47.408536076545715%, #00969A 47.8658527135849%, 53.96341532468796%, #007881 60.060977935791016%, 67.37805008888245%, #005C6A 74.69512224197388%, 81.09756112098694%, #004A55 87.5%, 91.31097495555878%, #003F49 95.12194991111755%, 96.79878056049347%, #003B44 98.47561120986938%, 99.23780560493469%, #003742 100%);
    opacity: 40%;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    z-index: 1;
}
.listing__tag_type_price {
background: linear-gradient(360deg, #0b3c4a 0%, #195870 50%, #093a47 100%);
background-size: 200% 200%;
   width: auto;
    bottom: 25px;
    left: 130px;
    color: #fff;
    font-size: 19px;
    letter-spacing: 1px;
    position: relative !important;
    text-align: left;
    padding: 10px 18px;
    z-index: 2;
}
.slick-dotted.slick-slider {
    margin-bottom: 0;
    margin-top: 50px;
}
.horizontal-scroll-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.scroll-inner {
  display: flex;
  height: 100%;
}

.panel {
  flex: 0 0 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel:nth-child(1) { background: transparent; }
.panel:nth-child(2) { background: transparent; }
.panel:nth-child(3) { background: transparent; }

.flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  max-width: 600px;
}
.listing__heading {
    line-height: 28px;
    text-transform: capitalize;
    letter-spacing: normal;
    font-size: 17px;
    font-weight: 500;
    margin-top: 5px;
    padding-top: 10px;
    color: #37312b;
}
.listing__badge-value {
    font-size: 17px;
    color: #000;
    font-weight: 600;
}
.listing__tag_type_sold, .listing__tag_type_reduced, .listing__tag_type_just-listed, .listing__tag_type_offer, .listing__tag_type_virtual-tour, .listing__tag_type_video-tour, .listing__tag_type_on-show {
    background-image: linear-gradient(54deg, #ab1817, #da2323 50%, #b70102 104%);
    border: 0;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 17px;
    font-weight: 600;
    padding: 5px 10px;
}
.listing__favorite {
  display: none;
}
.slick-dots {
display: none;  
}
.search-bar__container {
    padding-top: 0; 
    border: none;
    box-shadow: none;
    color: #ffffff !important;
    font-size: 18px;
}
.search-bar__container .search-bar__main-options {
    border: 0;
    padding: 0;
    box-shadow: none;
    background-color: transparent !important;
    display: block;
    position: static !important;
    border-radius: 5px;
}
.search-bar__container .dropdown__value-text:before, .search-bar__container .search-bar__main-options .checkbox-list__text:before, .search-bar__container .search-bar__main-options .search-bar__autocomplete .autocomplete__input:before {
 display: none; 
}
.search-bar__container .search-bar__main-options .search-bar__submit {
    bottom: 0 !important;
    font-size: 0px;
    color: #FFF;
    border-radius: 5px;
    height: 52px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
    width: 5%;
    flex: 1;
    order: 0;
    align-items: center;
    margin: 0;
    display: flex;
    position: absolute;
    justify-content: flex-end;
    right: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E"), linear-gradient(54deg, #ab1817, #da2323 50%, #b70102 104%);
}
.search-bar__container .search-bar__main-options .search-bar__options {
    border: 1px solid;
    border-radius: 5px;
    margin: 0 !important;
    bottom: 0 !important;
    position: relative !important;
    left: 0vw !important;
    width: 100% !important;
    height: auto !important;
    padding-top: 1vh;
    padding-bottom: 1vh;
    font-size: 18px !important;
    padding-left: 10px !important;
    text-transform: capitalize;
    letter-spacing: 0;
    text-shadow: rgba(0, 0, 0, 0.36) 1px 2px 4px;
}
.search-bar__container .search-bar__secondary-options {
    margin-bottom: 0 !important;
    box-shadow: none;
    background-color: transparent !important;
    border: 0;
    width: 100%;
    padding: 0;
    position: relative;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}  
.search-bar__container .search-bar__main-options .search-bar__autocomplete .search-bar__secondary-options .autocomplete__input, .search-bar__container .search-bar__main-options .search-bar__secondary-options .checkbox-list__text, .search-bar__container .search-bar__secondary-options .dropdown__value-text, .search-bar__container .search-bar__secondary-options .search-bar__main-options .checkbox-list__text, .search-bar__container .search-bar__secondary-options .search-bar__main-options .search-bar__autocomplete .autocomplete__input {
    padding: 10px !important;
    background-color: transparent;
    border-radius: 5px;
    border: 1px solid #eee;
}
.search-bar__options_state_close:after, .search-bar__options_state_open:after, .search-bar__container .dropdown__value-text:after, .search-bar__container .search-bar__main-options .checkbox-list__text:after, .search-bar__container .search-bar__main-options .search-bar__autocomplete .autocomplete__input:after {
 display: none;
}
.search-bar__options.search-bar__options_state_close::after {
    display: none;
}
.search-bar__container .dropdown__options, .search-bar__container .search-bar__main-options .checkbox-list__options, .search-bar__container .search-bar__main-options .search-bar__autocomplete .autocomplete__results {
  color: #37312b;
}
.switcher__label {
    font-size: 18px;
    color: #fff;
    margin-left: -95px !important;
    font-weight: 500;
    text-shadow: rgba(0, 0, 0, 0.36) 1px 2px 4px;
} 
input#form__sidebarContact--name::placeholder {color:grey;font-weight: 500;}
input#form__sidebarContact--phone::placeholder {color:grey;font-weight:500;}
input#form__sidebarContact--message::placeholder {color:grey;font-weight: 500;}
input#form__sidebarContact--email::placeholder {color:grey;font-weight: 500;}
input#form__modalRequestValuation--address::placeholder {color:grey;font-weight: 500;}
input#form__modalListProperty--price::placeholder {color:grey;font-weight: 500;}
input#form__modalListProperty--name::placeholder {color:grey;font-weight: 500;}
input#form__modalListProperty--price::placeholder {color:grey;font-weight: 500;}
input#form__modalListProperty--address::placeholder {color:grey;font-weight: 500;}
input#form__modalListProperty--message::placeholder {color:grey;font-weight: 500;}
textarea#form__modalListProperty--message::placeholder {color:grey;font-weight: 500;font-size: 18px;}
input#form__modalListProperty--email::placeholder {color:grey;font-weight: 500;}
input#form__modalListProperty--phone::placeholder {color:grey;font-weight: 500;}
textarea#form__sidebarContact--message::placeholder {color:grey;font-weight: 500;}
input#form__contactUs--property-address::placeholder {color:grey;font-weight: 500;}
textarea#form__contactUs--message, textarea#form__sidebarContact--message {padding: 10px;}
textarea#form__listProperty--message::placeholder {color:grey;font-weight: 500;font-size:18px;
}
.listing-article .article-block__thumb, .article__image {
    min-height: 300px;
}
.article__image {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.article {
    height: auto!important;
}
.article__summary {
    font-size: 16px;
    line-height: 24px;
}
.article__title {
    line-height: 27px;
    font-weight: 600;
    color: #c60217;
}
.full-width {
    max-width: 100%;
    margin-top: auto;
}
.page-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: auto;
    height: auto;
    overflow: hidden;
    background: linear-gradient(360deg, #0b3c4a 0%, #195870 50%, #093a47 100%);
    padding: 160px 5vw 60px;
}

.page-image-container {
    position: absolute;
    max-width: 50%;
    margin-top: 100px;
    right: -100px;
    z-index: 100;
}
.listing__summary {
    font-size: 18px;
    font-weight: 500;
}
.social-icons-footer {
        width: 80%;
        grid-template-rows: auto auto auto;
        justify-items: stretch;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
@media screen and (max-width: 768px) {
 .form-wrapper {
    padding: 0 15px 0 15px;
}
.nav {
    padding: 10px;
  }
  .menu {
    width: -webkit-fill-available;
    padding: 20vh 5vw;
    max-width: 768px;
  }
  .hero-section {
    padding: 0rem 1.5rem 0rem 1.5rem;
    flex-direction: column;
    justify-content: center;
    width: auto;
}
h1, h2, h3, h4, h5, h6 {
    font-size: 2em;
    text-align: left;
}
.black {
font-size: 2em;

}
.hero-content {
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 20px;
}
/* Only for Edge */
body.is-edge .hero-content {
 margin-bottom: -70px; /* ← Example override for Edge */
}
.hero-image-container {
    position: absolute;
    max-width: 100%;
    bottom: 16%;
    left: 45%;
}
/* Only for Edge */
body.is-edge .hero-image-container {
  bottom: 2%; /* ← Example override for Edge */
}
p {
    font-size: 17px;
    line-height: 28px;
}
.white-text {
 text-shadow: 1px 2px 4px #00000070;  
 font-size: 17px;
 line-height: 28px;
}
.button {
  padding: 0 18px;
}
.button-container {
padding-top: 10px;  
display: flex;
row-gap: 25px;
flex-direction: column;
align-items: flex-start;
}
.flex-row {
    display: flex;
    flex-direction: column !important;
    row-gap: 50px;
}
.search-bar-container {
    width: 100%;
}
.main-header.fixed .logo.fixed-logo {
      padding-top: 0px;
      height: 90px;
      margin-left:-5px !important;
}
.menu-toggle {
    width: 35px;
    height: 50px;
}
    .logo {
      height: 95px;
      margin-left: -10px!important;
}
.fixed-header-overlay {
  background: radial-gradient(circle at 50% -40%, #00FDEF 0%, #00F4E7 7.3%, #00DBD4 19.5%, #00CAC4 27.4%, #00BEBB 32.3%, #00BAB7 33.8%, #00AEB0 38.1%, #00989B 46.9%, #00969A 47.8%, #007881 60.0%, #005C6A 74.6%, #004A55 87.5%, #003F49 95.1%, #003B44 98.4%, #003742 100%);
  background-size: 10% 200%;
}
.section {
overflow-x: hidden;
}
.slick-dotted.slick-slider {
    margin-top: 30px;
}
body.menu-open .main-header.fixed .menu-toggle {
      left: 85%;
}
body.menu-open .main-header.fixed .menu {
padding:10vh 6vw;
}
.flex-container {
  right: 25%;
}
.menu {
padding:15vh 6vw 0 6vw;
}
.main-header.fixed .flex-container {
  left: 0 !important;
  right: 0;
  justify-content: center;
}
.section {
    padding: 5vh 5vw;
}

.no-top-padding {
    padding-top: 0;
}
p.clamp {
font-size: clamp(30px, 5vw, 40px);
line-height: 60px;
}

.listing .block {
  margin: 0 15px 1rem;
 }
.search-bar__container .search-bar__main-options .search-bar__submit {
width: 50px;  
}
}