* {
    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;
    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 .heading1 {
    padding: 0 0 20px 0;
  }
  @media (max-width: 767px) {
    .hero .heading1 {
      font-size: 48px;
      padding: 0 0 85px 0;
      width: 100%;
    }
  }
  
  .flex-section {
    border-bottom: 1px solid #bd9a5c;
    padding-bottom: 50px;
    margin-top: 70px;
  }
  @media (min-width: 1024px) {
    .flex-section:nth-child(2n-1) {
      flex-flow: row-reverse;
    }
  }
  .flex-section__info-links {
    display: flex;
    flex-direction: column;
    margin: 25px 0 15px;
  }
  .flex-section__info-item {
    font: 400 24px/113% "Cormorant SC";
    text-decoration: none;
    color: #3a3335;
    margin-bottom: 10px;
  }
  
  .reviews {
    margin-top: 70px;
  }
  @media (max-width: 767px) {
    .reviews {
      margin-top: 40px;
    }
  }/*# sourceMappingURL=concierge-category.css.map */