* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

.title--light {
  color: #fcfcfc;
}

.heading1 {
  font: 400 76px/82.1% 'Cormorant SC';
  text-transform: inherit;
  letter-spacing: 0.075em;
  color: #fcfcfc;
  margin: 0;
}
@media (max-width: 767px) {
  .heading1 {
    font-size: 40px;
  }
}
.heading1--gold {
  color: #bd9a5c;
}

.heading2 {
  font: 400 58px/90% 'Cormorant SC';
  text-transform: inherit;
  color: #fcfcfc;
  margin: 0;
  text-align: center;
}
.heading2--gold {
  color: #bd9a5c;
}
.heading2--black {
  color: #3a3335;
}
.heading2--big {
  font-size: 52px;
}
@media (max-width: 767px) {
  .heading2 {
    font-size: 36px;
  }
}

.heading3 {
  font: 400 42px/93.6% 'Cormorant SC';
  text-transform: inherit;
  color: #fcfcfc;
  margin: 0;
}
@media (max-width: 767px) {
  .heading3 {
    font-size: 32px;
  }
}
.heading3--black {
  color: #3a3335;
}
.heading3--gold {
  color: #bd9a5c;
}
.heading3--center {
  text-align: center;
}

.heading4 {
  font: 400 32px/39px 'Cormorant SC';
  text-transform: inherit;
  color: #fcfcfc;
  margin: 0;
}
@media (max-width: 767px) {
  .heading4 {
    font: 400 16px/19px 'Cormorant SC';
    text-align: center;
  }
}
.heading4--black {
  color: #3a3335;
}

.paragraph {
  font: 400 18px/22px 'Quicksand';
  color: #3a3335;
  margin: 0;
}
.paragraph--justified {
  text-align: justify;
}
.paragraph--centered {
  text-align: center;
}
.paragraph--white {
  color: #fcfcfc;
}
.paragraph--gold {
  color: #bd9a5c;
}
.paragraph--bigText {
  font: 400 24px/113% 'Quicksand';
}
.paragraph--font {
  font: 400 18px/22px 'Cormorant SC' !important;
}
@media (max-width: 767px) {
  .paragraph--font {
    font: 400 16px/20px 'Cormorant SC' !important;
  }
}
@media (max-width: 767px) {
  .paragraph {
    font: 400 16px/20px 'Quicksand';
  }
}

.cta {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  height: 52px;
  width: -moz-max-content;
  width: max-content;
  padding: 0 35px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 50px;
  font: 400 18px/22px 'Cormorant SC';
  color: #000000;
  background-color: transparent;
  border: 1px solid #000000;
}
.cta:hover {
  color: #fcfcfc;
  background-color: #bd9a5c;
  border: 1px solid #bd9a5c;
  transition: 0.3s;
}
.cta:hover .cta__arrow {
  filter: invert(100%) sepia(98%) saturate(0%) hue-rotate(94deg)
    brightness(104%) contrast(98%);
}
.cta--dark {
  color: #fcfcfc;
  background: rgba(58, 51, 53, 0.9);
  border: 1px solid #bd9a5c;
}
.cta--dark .cta__arrow {
  filter: invert(100%) sepia(98%) saturate(0%) hue-rotate(94deg)
    brightness(104%) contrast(98%);
}
.cta--gold {
  color: #fcfcfc;
  background-color: #bd9a5c;
  border: 1px solid #bd9a5c;
}
.cta--gold .cta__arrow {
  filter: invert(100%) sepia(98%) saturate(0%) hue-rotate(94deg)
    brightness(104%) contrast(98%);
}
.cta--gold:hover {
  color: #fcfcfc;
  background: rgba(58, 51, 53, 0.9);
  border: 1px solid #bd9a5c;
}
.cta--gold:hover .cta__arrow {
  filter: invert(100%) sepia(98%) saturate(0%) hue-rotate(94deg)
    brightness(104%) contrast(98%);
}
.cta--transparent {
  color: #fcfcfc;
  background-color: transparent;
  border: 1px solid #fcfcfc;
}
.cta--transparent .cta__arrow {
  filter: invert(100%) sepia(98%) saturate(0%) hue-rotate(94deg)
    brightness(104%) contrast(98%);
}
.cta--bigText {
  font: 400 18px/22px 'Cormorant SC';
}

.nav {
  display: flex;
  flex-flow: column;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 11;
}
.nav,
.nav .nav__top,
.nav .nav__logo {
  transition: 0.6s;
}
@media (min-width: 1024px) {
  .nav--sticky {
    background: rgba(58, 51, 53, 0.9);
  }
  .nav--sticky .nav__top {
    padding: 5px 0;
  }
  .nav--sticky .nav__logo {
    width: 155px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nav--sticky {
    background: rgba(58, 51, 53, 0.9);
  }
  .nav--sticky .nav__top {
    padding: 5px 0;
  }
  .nav--sticky .nav__logo {
    width: 155px;
  }
}
@media (max-width: 767px) {
  .nav--sticky {
    background: rgba(58, 51, 53, 0.9);
  }
}
.nav__items-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1214px;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nav__items-wrapper {
    gap: 10px;
    width: 90%;
    justify-content: space-around;
  }
}
@media (max-width: 767px) {
  .nav__items-wrapper > .button {
    display: none;
  }
}
.nav__top,
.nav__bottom {
  display: flex;
  justify-content: center;
}
.nav__top {
  padding: 20px 0 16px;
}
@media (max-width: 767px) {
  .nav__top {
    padding: 12px 20px;
  }
}
.nav__top .favourite-wrapper {
  position: relative;
}
.nav__top .favourite-wrapper .favourite-number {
  position: absolute;
  height: 17px;
  width: 17px;
  background: rgba(58, 51, 53, 0.9);
  color: #bd9a5c;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  top: -5px;
  right: -5px;
}
.nav__top .language-selector {
  display: none;
  flex-flow: column;
  align-items: flex-start;
  gap: 15px;
  padding: 25px 21px;
  position: absolute;
  z-index: 12;
  top: 100%;
  right: 50%;
  transform: translateX(50%);
  background: rgba(58, 51, 53, 0.9);
  border: 1px solid #bd9a5c;
  border-radius: 25px;
}
.nav__top .language-selector__option {
  display: flex;
  gap: 15px;
  margin: 0;
  font: 400 12px/15px 'Quicksand';
  color: #fcfcfc;
  text-transform: uppercase;
  cursor: pointer;
}
.nav__top .language-selector__option:hover {
  color: #bd9a5c;
}
.nav__top .language-selector img {
  height: 14px;
  width: 14px;
}
.nav__bottom {
  height: 60px;
  background: linear-gradient(
    180deg,
    rgba(58, 51, 53, 0.5) 0%,
    rgba(78, 72, 74, 0.3) 53.51%
  );
}
.nav__bottom > .cta.button {
  display: none;
}
.nav__bottom .nav__items-wrapper .cta {
  display: none;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .nav__bottom .nav__items-wrapper .cta {
    display: flex;
  }
}
@media (max-width: 767px) {
  .nav__bottom {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(58, 51, 53, 0.9);
  }
  .nav__bottom.opened {
    display: flex;
  }
  .nav__bottom .nav__items-wrapper {
    flex-flow: column;
    justify-content: center;
    gap: 24px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .nav__bottom .nav__items-wrapper {
    justify-content: flex-start;
    padding-top: 100px;
    gap: 10px;
    overflow-y: overlay;
  }
}
.nav__bottom .header-dropdown {
  display: none;
  align-items: flex-start;
  flex-flow: column;
  gap: 13px 60px;
  padding: 30px 42px;
  position: absolute;
  z-index: 12;
  top: 100%;
  right: 50%;
  transform: translateX(50%);
  background: rgba(58, 51, 53, 0.9);
  border: 1px solid #bd9a5c;
  border-radius: 30px;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 767px) {
  .nav__bottom .header-dropdown {
    border: none;
    border-radius: 0;
    justify-items: center;
    align-items: center;
    background: #3a3335;
    width: 100vw;
    position: relative;
    top: 0;
  }
  .nav__bottom .header-dropdown .horizontal-separator {
    display: none;
  }
}
.nav__bottom .header-dropdown .villa-link {
  font: 400 24px/113% 'Cormorant SC';
  color: #fcfcfc;
  text-decoration: none;
}
.nav__bottom .header-dropdown .villa-link:hover {
  color: #bd9a5c;
}
.nav__bottom .header-dropdown .horizontal-separator,
.nav__bottom .header-dropdown .cta {
  grid-column: span 2;
  margin: 10px 0;
  justify-self: center;
}
.nav__bottom .dropdown-wrapper--grid .header-dropdown {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .nav__bottom .dropdown-wrapper--grid .header-dropdown {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nav__bottom .dropdown-wrapper.opened .nav__item--background {
    background: #3a3335;
  }
}
@media (max-width: 767px) {
  .nav__bottom .dropdown-wrapper.opened .nav__item--background {
    background: #3a3335;
  }
}
.nav__bottom .experiences-dropdown {
  align-items: center;
  justify-items: flex-start;
  gap: 15px;
  padding: 30px 16px 30px 30px;
  width: 450px;
}
.nav__bottom .experiences-dropdown--image {
  border-radius: 30px;
  width: 140px;
}
.nav__logo {
  width: 205px;
}
@media (max-width: 767px) {
  .nav__logo {
    width: 100px;
    position: relative;
    z-index: 14;
  }
}
.nav__logo-wrapper {
  flex-grow: 1;
}
.nav__item {
  font: 400 24px/113% 'Cormorant SC';
  color: #fcfcfc;
  text-decoration: none;
  text-align: center;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.nav__item:hover {
  color: #bd9a5c;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nav__item {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .nav__item {
    padding-top: 14px;
  }
}
.nav__item--desktop {
  display: block;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nav__item--desktop {
    display: none;
  }
}
@media (max-width: 767px) {
  .nav__item--desktop {
    display: none;
  }
}
.nav__item--mobile {
  display: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .nav__item--mobile {
    display: block;
  }
}
@media (max-width: 767px) {
  .nav__item--mobile {
    display: block;
  }
}

.dropdown-wrapper {
  position: relative;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .dropdown-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .dropdown-wrapper.hoverable:hover div:not(.nav__item--mobile),
  .dropdown-wrapper.hoverable div:not(.nav-item--mobile):hover {
    display: flex;
  }
  .dropdown-wrapper.hoverable:hover div:not(.nav__item--mobile) .cta,
  .dropdown-wrapper.hoverable div:not(.nav-item--mobile):hover .cta {
    display: flex !important;
  }
  .dropdown-wrapper--grid.hoverable:hover div:not(.nav__item--mobile),
  .dropdown-wrapper--grid.hoverable div:not(.nav-item--mobile):hover {
    display: grid;
  }
  .dropdown-wrapper--grid.hoverable:hover div:not(.nav__item--mobile) .cta,
  .dropdown-wrapper--grid.hoverable div:not(.nav-item--mobile):hover .cta {
    display: flex !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .dropdown-wrapper.opened div {
    display: flex;
  }
  .dropdown-wrapper--grid.opened div {
    display: grid;
  }
}
@media (max-width: 767px) {
  .dropdown-wrapper.opened div {
    display: flex;
  }
  .dropdown-wrapper--grid.opened div {
    display: grid;
  }
}

.button {
  display: flex;
  align-items: center;
  padding: 0 30px;
  height: 37px;
  border-radius: 50px;
  text-decoration: none;
  font: 400 12px/15px 'Quicksand';
  color: #fcfcfc;
  text-transform: uppercase;
}
.button--gold {
  background: #bd9a5c;
  border: 1px solid #bd9a5c;
}
.button--gold:hover {
  color: #fcfcfc;
  background-color: transparent;
  border: 1px solid #fcfcfc;
  transition: 0.3s;
}
.button--gold:hover .cta__arrow {
  filter: invert(100%) sepia(98%) saturate(0%) hue-rotate(94deg)
    brightness(104%) contrast(98%);
}

.footer {
  margin: 53px 0 0;
  width: 100%;
  height: 785px;
}
@media (max-width: 767px) {
  .footer {
    margin: 27px 0 0;
    height: 100%;
  }
}
.footer__top {
  display: flex;
  flex-flow: column;
  align-items: center;
  position: relative;
  top: 41px;
}
.footer__top-logo {
  height: 164px;
}
@media (max-width: 767px) {
  .footer__top-logo {
    height: 92px;
  }
}
.footer__top-text {
  font: 400 42px/93.6% 'Cormorant SC';
  color: #bd9a5c;
  margin: 35px 0 45px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__top-text {
    margin: 30px 15px 40px;
    font: 400 32px/39px 'Cormorant SC';
  }
}
.footer__top-awards {
  display: flex;
  gap: 200px;
}
@media (max-width: 767px) {
  .footer__top-awards {
    flex-flow: column-reverse;
    gap: 10px;
  }
  .footer__top-awards * {
    width: 251px;
  }
}
.footer__bottom-wrapper {
  height: 527px;
  background: url('../../src/images/dark-background.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .footer__bottom-wrapper {
    height: 100%;
  }
}
.footer__bottom {
  display: grid;
  justify-items: center;
  align-items: start;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1214px;
  height: 100%;
  padding-top: 80px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer__bottom {
    display: flex;
    flex-flow: column;
    width: 100%;
    gap: 30px;
    padding: 80px 0 12px;
  }
}
.footer__bottom-column {
  display: flex;
  align-items: center;
  flex-flow: column;
  gap: 8px;
}
@media (max-width: 767px) {
  .footer__bottom-column {
    width: 100%;
  }
}
.footer__bottom-column-title {
  font: 400 24px/113% 'Cormorant SC';
  color: #bd9a5c;
  margin: 0;
}
.footer__bottom-column-item {
  font: 400 18px/22px 'Quicksand';
  text-align: center;
  list-style: none;
  padding: 0;
  color: #fcfcfc;
  text-decoration: none;
  margin-top: 0px;
}
.footer__bottom-column-item a {
  font: 400 18px/22px 'Quicksand';
  color: #fcfcfc;
  text-decoration: none;
  text-align: center;
  line-height: 30px;
}
@media (max-width: 767px) {
  .footer__bottom-column-item a {
    font: 400 16px/20px 'Quicksand';
    color: #e5e5e5;
  }
}
.footer__bottom-socials {
  display: flex;
  grid-column: 1 / span 3;
  gap: 41px;
}
@media (max-width: 767px) {
  .footer__bottom-socials {
    flex-flow: column;
    width: 100%;
    gap: 20px;
    align-items: center;
  }
}
.footer__bottom .footer__bottom-flex {
  display: flex;
  width: 100%;
  gap: 41px;
}
@media (max-width: 767px) {
  .footer__bottom .footer__bottom-flex {
    justify-content: space-evenly;
  }
}
.footer__bottom-copyright {
  grid-column: 1 / span 3;
  font: 400 12px/100.6% 'Cormorant SC';
  color: #fcfcfc;
}
@media (max-width: 767px) {
  .footer__bottom-copyright {
    margin: 0 auto;
  }
}

.hamburger {
  display: none;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media (max-width: 767px) {
  .hamburger {
    display: block;
    position: relative;
    z-index: 14;
  }
}

.horizontal-separator {
  height: 0;
  width: 100%;
  border-bottom: 1px solid #3a3335;
  margin: 0;
}
.horizontal-separator--white {
  border-bottom-color: #fcfcfc;
}
.horizontal-separator--gold {
  border-bottom-color: #bd9a5c;
}
.horizontal-separator--thin {
  border-bottom-width: 1px;
}
.horizontal-separator--width {
  max-width: 1214px;
  margin: 0 auto;
}

.hero .nav__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background: rgba(58, 51, 53, 0.9);
  transition: 0.6s;
}
@media (min-width: 1024px) {
  .hero .nav__bottom--sticky {
    position: fixed;
    top: 114px;
  }
}
.hero .nav__bottom .nav__items-wrapper {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.hero .nav__bottom .nav__item {
  color: #bd9a5c;
}
.hero .nav__bottom .nav__item:hover {
  color: #fcfcfc;
}

.hero {
  position: relative;
  height: 682px;
  background: linear-gradient(180deg, #3a3335 0%, rgba(78, 72, 74, 0.5) 67.6%),
    url('../images/experience-hero-background.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__label {
  position: absolute;
  top: 25%;
  left: 0;
}
@media (max-width: 767px) {
  .hero__label img {
    width: 70px;
  }
}
.hero .heading1 {
  padding: 0 !important;
}
@media (max-width: 767px) {
  .hero .heading1 {
    font-size: 48px;
  }
}
.hero__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row;
  height: 682px;
  max-width: 1214px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero__wrapper {
    max-width: 723px;
  }
}
@media (max-width: 767px) {
  .hero__wrapper {
    flex-flow: column;
    justify-content: center;
  }
}
.hero__info {
  background: linear-gradient(
    180deg,
    rgba(58, 51, 53, 0.57) 0%,
    rgba(78, 72, 74, 0.0684) 67.6%
  );
  border: 1px solid #fcfcfc;
  border-radius: 30px;
  width: -moz-max-content;
  width: max-content;
  padding: 32px;
  margin-top: 70px;
}
@media (max-width: 767px) {
  .hero__info {
    margin-top: 40px;
  }
}
.hero__info-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.hero__info-flex:nth-child(1) {
  margin-top: -20px;
}
.hero__info-item {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.hero__info-item-icon {
  filter: invert(98%) sepia(2%) saturate(0%) hue-rotate(231deg) brightness(103%)
    contrast(102%);
}
.hero__info-price {
  font: 400 28px/30px 'Cormorant SC';
  color: #fcfcfc;
}
.hero__info-item-text {
  font: 400 18px/22px 'Quicksand';
  color: #fcfcfc;
}
.hero .cta {
  margin: 18px auto 0;
}

.services {
  margin: 0 auto !important;
  padding: 130px 0 42px;
}
.services__flex-content {
  color: #fcfcfc;
}
@media (max-width: 767px) {
  .services {
    padding: 40px 0;
  }
}

.icons-section {
  background: url('../../src/images/dark-background.svg');
  padding: 70px 0;
}
.icons-section__flex {
  display: flex;
  justify-content: center;
  gap: 85px;
}
@media (max-width: 767px) {
  .icons-section__flex {
    flex-wrap: wrap;
    gap: 40px 60px;
    padding: 0 30px;
  }
}
.icons-section__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icons-section__item-icon {
  width: 25px;
}
.icons-section__item-text {
  font: 400 24px/113% 'Cormorant SC';
  color: #fcfcfc;
  text-align: center;
}
.icons-section .cta {
  margin: 30px auto 0;
}

.pricelist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 35px;
  column-gap: 35px;
  padding-bottom: 80px;
  border-bottom: 1px solid #bd9a5c;
  margin: 70px 0 0;
  max-width: 1214px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pricelist {
    max-width: 723px;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .pricelist {
    grid-template-columns: 1fr;
  }
}
.pricelist .heading1 {
  grid-column: span 2;
  margin-bottom: 26px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pricelist .heading1 {
    grid-column: span 1;
  }
}
@media (max-width: 767px) {
  .pricelist .heading1 {
    grid-column: span 1;
  }
}
.pricelist .heading4 {
  display: flex;
  margin: 14px 0;
  justify-content: space-between;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
@media (max-width: 767px) {
  .pricelist .heading4 {
    text-align: left;
  }
}
.pricelist .heading4.opened {
  color: #bd9a5c;
}
.pricelist .heading4.opened .accordion__arrow {
  transform: rotate(90deg);
  filter: invert(66%) sepia(11%) saturate(1502%) hue-rotate(360deg)
    brightness(94%) contrast(87%);
}
.pricelist .heading4.opened + .pricelist__accordion-panel {
  display: grid;
}
.pricelist__accordion {
  display: flex;
  flex-flow: column;
}
.pricelist__accordion-panel {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  border-top: 2px solid #bd9a5c;
  padding: 24px;
}

.pricelist__accordion-panel .paragraph:first-child:empty + p {
  grid-column: span 2;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pricelist__accordion {
    margin-bottom: 40px;
  }
}
.pricelist__accordion h4 {
  font-size: 24px;
}
.pricelist__accordion .paragraph--bigText {
  font-size: 20px;
}
.pricelist__table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: -moz-max-content;
  height: max-content;
}
@media (max-width: 767px) {
  .pricelist__table {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pricelist__table-column {
  display: flex;
  flex-flow: column;
  gap: 20px;
  border: 1px solid #3a3335;
  border-left: none;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  padding: 20px 35px;
}
.pricelist__table-column:first-child {
  border-radius: 50px 0 0 50px;
  border-left: 1px solid #3a3335;
}
@media (max-width: 767px) {
  .pricelist__table-column:first-child {
    display: none;
  }
}
@media (max-width: 767px) {
  .pricelist__table-column:nth-child(2) {
    border-radius: 50px 0 0 50px;
    border-left: 1px solid #3a3335;
  }
}
.pricelist__table-column:last-child {
  border-radius: 0 50px 50px 0;
}
.pricelist__table-column:not(:first-child) {
  align-items: center;
}
.pricelist__table-column > .pricelist__table-item {
  font-family: 'Cormorant SC';
}
.pricelist__table-column > .pricelist__table-item:first-child {
  height: 100%;
  margin-bottom: 13px;
}

.distances-section {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 40px;
  margin: 50px 0 60px;
}
.distances-section > .heading2 {
  text-align: left;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .distances-section > .heading2 {
    text-align: center;
  }
}
.distances-section__grid {
  display: grid;
  justify-items: flex-start;
  row-gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
.distances-section__grid > *:nth-child(3n + 2) {
  justify-self: center;
}
.distances-section__grid > *:nth-child(3n) {
  justify-self: flex-end;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .distances-section__grid {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
@media (max-width: 767px) {
  .distances-section__grid {
    grid-template-columns: 1fr;
  }
  .distances-section__grid > .distances-section__item {
    justify-self: center;
  }
}
.distances-section__item {
  display: flex;
  justify-content: space-between;
  width: 270px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .distances-section__item {
    width: 100%;
  }
}
.distances-section__item-icon {
  filter: invert(67%) sepia(38%) saturate(469%) hue-rotate(360deg)
    brightness(86%) contrast(89%);
}
.distances-section__item-text {
  font: 400 20px/25px 'Quicksand';
  margin: 0;
}
.distances-section__item-group {
  display: flex;
  gap: 5px;
  flex-grow: 1;
}

.max-width-container {
  max-width: 1214px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .max-width-container {
    max-width: 723px;
  }
}
@media (max-width: 767px) {
  .max-width-container {
    max-width: 90%;
  }
}

.location-section {
  background: linear-gradient(rgba(58, 51, 53, 0.9), rgba(58, 51, 53, 0.9)),
    url('../../src/images/location-section-background.svg');
  padding: 115px 0;
}
.location-section__margin-top {
  margin-top: 84px !important;
}
.location-section .heading2 {
  margin-bottom: 84px;
  text-align: left;
}
.location-section .heading2--gold {
  display: block;
}
@media (max-width: 767px) {
  .location-section .heading2 {
    text-align: center;
    margin-bottom: 40px;
  }
  .location-section .heading2--gold {
    display: inline;
  }
}
@media (max-width: 767px) {
  .location-section {
    padding: 80px 0;
  }
}
.location-section__iframe {
  border-radius: 30px 30px 0px 0px;
  width: 100%;
}
.location-section .heading3 {
  margin: 42px 0 20px;
}
@media (max-width: 767px) {
  .location-section .heading3 {
    margin: 1 20px;
    text-align: center;
  }
}
.location-section__info-flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .location-section__info-flex {
    flex-flow: column;
    align-items: center;
    margin-bottom: 30px;
  }
}
.location-section__info-flex-text {
  font: 400 24px/113% 'Cormorant SC';
  color: #fcfcfc;
  padding-top: 24px;
}
@media (max-width: 767px) {
  .location-section__info-flex-text {
    font-size: 16px;
  }
}
.location-section .cta {
  margin-top: 40px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .location-section .cta {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .location-section .cta {
    margin-top: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .location-section .br {
    display: none;
  }
}
@media (max-width: 767px) {
  .location-section .br {
    display: none;
  }
}

#expandable-section {
  display: none;
}

.expandable-section {
  display: flex;
  justify-content: space-around;
  padding: 105px 0;
  background-color: #3a3335;
}
.expandable-section__column-title {
  font: 400 24px/113% 'Cormorant SC';
  color: #bd9a5c;
  margin-bottom: 20px;
}
.expandable-section__column-item {
  font: 400 18px/22px 'Quicksand';
  color: #fcfcfc;
  margin: 8px 0;
}
@media (max-width: 767px) {
  .expandable-section {
    flex-wrap: wrap;
  }
}

.reviews__heading-width {
  width: 80%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .reviews__heading-width {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .reviews__heading-width {
    width: 100%;
  }
}

.villa-details {
  max-width: 1214px;
  padding: 50px;
  margin: 70px auto 0;
  display: flex;
  justify-content: space-between;
  background-color: #3a3335;
  border-radius: 24px 24px 0px 0px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .villa-details {
    max-width: 723px;
    flex-flow: column;
    align-items: center;
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .villa-details {
    max-width: 90%;
    flex-flow: column;
    align-items: center;
    gap: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .villa-details__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .villa-details__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 5px;
  }
}
.villa-details__title {
  margin-bottom: 15px !important;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .villa-details__title {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .villa-details__title {
    text-align: center;
  }
}
.villa-details__icons {
  display: flex;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .villa-details__icons {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .villa-details__icons {
    justify-content: center;
  }
}
.villa-details__icon {
  filter: invert(100%) sepia(0%) saturate(7467%) hue-rotate(145deg)
    brightness(103%) contrast(98%);
}
.villa-details__flex {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .villa-details__flex {
    flex-flow: column;
  }
}
@media (max-width: 767px) {
  .villa-details__flex {
    flex-flow: column;
  }
}
