@charset "UTF-8";
/* @keyframes bgSize {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
} */
.slide-up {
  opacity: 0;
  transform: translateY(8rem);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: transform, opacity;
  transition-delay: var(4s, 0s);
}

.slide-up.is-visible,
.slide-up-media.is-visible,
.wave-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  font-size: 1.8rem;
  font-family: "Khula", sans-serif;
  color: #0a0f23;
  background-color: #fff9f4;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

h1 {
  font-family: "Melodrama", serif;
  font-weight: 300;
  font-size: 12rem;
  color: #ffebda;
  text-transform: uppercase;
  line-height: 12rem;
}

.heading-sub {
  font-family: "Khula", sans-serif;
  color: #ffebda;
  font-size: 3.2rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

h2 {
  font-family: "Melodrama", serif;
  font-weight: 500;
  font-size: 6rem;
  color: #0a0f23;
  text-transform: uppercase;
}

h3,
h4 {
  font-family: "Melodrama", serif;
  font-weight: 300;
  font-size: 3.6rem;
  color: #0a0f23;
  text-transform: uppercase;
}

p {
  font-family: "Khula", sans-serif;
  font-size: 1.8rem;
  color: #0a0f23;
}

.booking__menu {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
  background-color: rgba(10, 15, 35, 0.7);
  padding: 0.8rem 0.8rem 0.8rem 4rem;
  border-radius: 3.2rem;
  position: fixed;
  font-size: 1.2rem;
  align-items: center;
  color: #ffebda;
  border: 1px solid #ffebda;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12rem;
  box-shadow: 0 3px 12.3px 0 rgba(0, 0, 0, 0.37);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: 0.3s;
  z-index: 500;
}
.booking__menu--divider {
  height: 3.2rem;
  width: 1px;
  background-color: #ffebda;
}
.booking__menu--selector {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
}
.booking__menu--selector--item {
  text-align: center;
  position: relative;
  min-width: 12rem;
}
.booking__menu--selector--item .guest-dropdown {
  display: none;
  position: absolute;
  top: -240%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 0.6rem;
  padding: 1.6rem;
  min-width: 12rem;
  z-index: 1000;
  color: #0a0f23;
}
.booking__menu--selector--item .guest-dropdown.active {
  display: block;
}
.booking__menu--selector--item .guest-dropdown .guest-option {
  padding: 0.8rem 2rem;
  color: #0a0f23;
  font-size: 1.4rem;
  transition: background 0.2s;
}
.booking__menu--selector--item p {
  letter-spacing: 2.5px;
}
.booking__menu--selector--item p:first-child {
  font-weight: 800;
}
.booking__menu--btns {
  display: flex;
  flex-direction: row;
}

.date-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.flatpickr-calendar {
  z-index: 9999 !important;
}

.guest-counter {
  display: flex;
  flex-direction: column;
  row-gap: 0.8rem;
}

.counter-controls {
  display: flex;
  flex-direction: row;
  justify-content: center;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
  font-size: 1.4rem;
  align-items: center;
}

.btn-count {
  width: 3.2rem;
  height: 3.2rem;
  background-color: #fff;
  outline: none;
  border: 1px solid #000;
  border-radius: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.2s;
}
.btn-count:hover {
  opacity: 0.5;
}
.btn-count:active {
  border-color: #ffebda;
  color: #ffebda;
}

.counter-label {
  font-size: 1.4rem;
}

.sect__slider-wrapper {
  position: relative;
}
.sect__slider-wrapper .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: 0.3s;
}
.sect__slider-wrapper .slider-btn.prev {
  left: 1rem;
}
.sect__slider-wrapper .slider-btn.next {
  right: 1rem;
}
.sect__slider-wrapper .slider-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.impressions {
  background-color: #0a0f23;
  padding: 18rem 12rem 10rem;
  color: white;
  position: relative;
  overflow: hidden;
}
.impressions__title {
  position: absolute;
  top: 13%;
  left: 0;
  width: 100%;
  z-index: 0;
  font-size: 9.6rem;
  text-align: center;
  color: #ffebda;
  pointer-events: none;
  text-transform: uppercase;
  z-index: 500;
}
.impressions__container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}
.impressions__display {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 30px;
  min-height: 40vh;
  max-height: 40vh;
  position: relative;
  overflow: hidden;
}
.impressions__display:active {
  cursor: grabbing;
}
@media (max-width: 768px) {
  .impressions__display {
    grid-template-columns: 1fr;
  }
}
.impressions__image {
  width: 100%;
  height: 40vh;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
.impressions__viewall {
  text-align: center;
}
.impressions__viewall a {
  font-weight: 100;
  letter-spacing: 2.888px;
  font-size: 1.6rem;
  display: inline-block;
  color: #ffebda;
  border-bottom: 1px solid #ffebda;
  transition: 0.3s;
}
.impressions__viewall a:hover {
  opacity: 0.8;
}
.impressions__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}
.impressions__nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  -moz-column-gap: 3.2rem;
       column-gap: 3.2rem;
}
.impressions__btn {
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
}
.impressions__btn:hover {
  opacity: 0.8;
}
.impressions__btn:active {
  opacity: 0.6;
}
.impressions__pool {
  display: none;
}

.text__slider {
  background-color: #0a0f23;
  padding: 8rem 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.text__slider-row {
  display: flex;
  white-space: nowrap;
}
.text__slider-row:nth-child(odd) .text__slider-track {
  animation: slideLeft 60s linear infinite;
}
.text__slider-row:nth-child(even) .text__slider-track {
  animation: slideRight 60s linear infinite;
}
.text__slider-track {
  display: flex;
  flex-shrink: 0;
}
.text__slider-item {
  color: #ffebda;
  font-family: "Melodrama", serif;
  font-size: 6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding-right: 4rem;
}
.text__slider-item:hover {
  cursor: pointer;
  opacity: 0.8;
}
.text__slider-item::after {
  content: "•";
  margin-left: 4rem;
  color: #ffebda;
}

@keyframes slideLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes slideRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.booking__menu {
  display: inline-flex;
  align-items: center;
  background-color: rgba(10, 15, 35, 0.7);
  border: 1px solid #ffebda;
  border-radius: 3.2rem;
  padding: 0.8rem 0.8rem 0.8rem 4rem;
  color: #0a0f23;
  font-family: inherit;
}
.booking__menu--selector {
  display: flex;
  align-items: center;
}
.booking__menu--selector--item {
  cursor: pointer;
  position: relative;
}
.booking__menu--selector--item .label {
  font-size: 1rem;
  text-transform: uppercase;
  color: #ffebda;
  margin: 0 0 0.2rem 0;
  letter-spacing: 0.05rem;
}
.booking__menu--selector--item .value {
  font-size: 1.4rem;
  color: #ffebda;
  margin: 0;
  font-weight: 500;
}
.booking__menu--divider {
  width: 1px;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
}
.booking__menu--btns {
  display: flex;
  gap: 0.8rem;
  margin-left: 1rem;
}
.booking__menu--btn {
  display: inline-grid;
  place-items: center;
  height: 4.8rem;
  padding: 1.2rem 3.2rem 0.8rem;
  border-radius: 5rem;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #ffebda;
  line-height: 1;
  transition: 0.3s;
  letter-spacing: 2.888px;
}
.booking__menu--btn--secondary {
  background: transparent;
  color: white;
}
.booking__menu--btn--secondary:hover {
  background-color: rgba(10, 15, 35, 0.5254901961);
}
.booking__menu--btn--primary {
  background-color: #ffebda;
  color: #0a0f23;
  border-color: transparent;
  padding: 1.2rem 4rem 0.8rem;
}
.booking__menu--btn--primary:hover {
  background-color: #e5c1a3;
}

.btn__body {
  padding: 1.2rem 4rem 0.8rem;
  letter-spacing: 2.888px;
  font-size: 1.6rem;
  border-radius: 10rem;
  display: inline-block;
  font-weight: 100;
  transition: 0.3s;
}
.btn__body--primary {
  background-color: #0a0f23;
  color: #ffffff;
  border: 1px solid #0a0f23;
}
.btn__body--secondary {
  background-color: #e5c1a3;
  color: #000000;
  border: 1px solid #e5c1a3;
  padding-left: 3.2rem;
  padding-right: 3.2rem;
}
.btn__body:hover {
  opacity: 0.8;
}
.btn__body--more {
  background-color: transparent;
  color: #0a0f23;
  border: 1px solid #0a0f23;
}
.btn__body--more:hover {
  background-color: #0a0f23;
  color: #ffffff;
}

.sect__slider {
  padding-top: 8rem;
  padding-bottom: 12rem;
  margin-right: 8rem;
  margin-left: 8rem;
  overflow: hidden;
  max-width: 100%;
}
.sect__slider--container {
  max-width: 100%;
  display: flex;
  flex-direction: row;
}
.sect__slider--card {
  max-width: 50%;
  min-width: 50%;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 3.2rem;
       column-gap: 3.2rem;
  padding-right: 3.2rem;
  padding-left: 3.2rem;
}
.sect__slider--card--figure {
  max-width: 40%;
  max-height: 28rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 30rem;
}
.sect__slider--card--figure img {
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sect__slider--card--content {
  max-width: 60%;
  display: flex;
  flex-direction: column;
  row-gap: 2.4rem;
  justify-content: center;
}
.sect__slider--card--content p {
  font-size: 1.4rem;
}

.hero {
  padding-left: 12rem;
  padding-right: 12rem;
  padding-top: 6rem;
  height: 120vh;
  position: relative;
  --hero-bg: url("https://www.adamloczi.com/projects/Heron/img/hero-bg.png");
  background: linear-gradient(181deg, rgba(0, 0, 0, 0.48) 0.94%, rgba(102, 102, 102, 0) 57.57%), linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%), var(--hero-bg) lightgray 50%/cover no-repeat;
  transition: --hero-bg 1s ease-in-out;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero__top {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.hero__top--logo {
  position: absolute;
  left: 12rem;
}
.hero__top--title {
  text-align: center;
}
.hero__top--menu {
  height: 6rem;
  width: 6rem;
  border-radius: 6rem;
  display: flex;
  align-items: center;
  background-color: rgba(10, 15, 35, 0.7);
  position: fixed;
  right: 12rem;
  z-index: 5000;
  cursor: pointer;
}
.hero__top--menu--btn {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 9px;
  padding: 1.6rem;
  width: 100%;
  pointer-events: none;
}
.hero__top--menu--btn--dash {
  content: "";
  height: 1px;
  width: 2.8rem;
  background-color: #ffebda;
}
.hero__top--menu--btn--dash:nth-child(2) {
  width: 1.8rem;
}
.hero::after {
  content: "";
  height: 20vh;
  width: 100%;
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 249, 244, 0) 0%, rgba(255, 249, 244, 0.99) 100%);
  bottom: 0;
  left: 0;
}

.booking--scroll {
  display: none !important;
}

.dash1,
.dash2,
.dash3 {
  transform-origin: center center;
}

.sect-intro {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: -4.5rem;
  z-index: 50;
  position: relative;
  flex-direction: column;
  align-items: center;
  row-gap: 3.2rem;
  padding-bottom: 12rem;
}
.sect-intro .p-content {
  max-width: 68rem;
  line-height: 2;
  font-size: 1.8rem;
}

.sect-rooms-intro {
  display: flex;
  justify-content: center;
  text-align: center;
  position: relative;
  flex-direction: column;
  align-items: center;
  row-gap: 3.2rem;
  padding-bottom: 12rem;
  padding-top: 12rem;
}
.sect-rooms-intro .p-content {
  max-width: 68rem;
  line-height: 2;
  font-size: 1.8rem;
}
.sect-rooms-intro .p-content p {
  margin-bottom: 6rem;
}

.section__rooms {
  width: 100%;
  position: relative;
  background: #000;
}
.section__rooms .rooms__inner {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.section__rooms .room-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.section__rooms .room-panel.room-1 {
  background-color: #fff;
  z-index: 1;
}
.section__rooms .room-panel.room-2 {
  background-color: #fff9f4;
  z-index: 2;
}
.section__rooms .room-panel.room-3 {
  background-color: #ffebda;
  z-index: 3;
}
.section__rooms .room-panel .room__content {
  color: #0a0f23;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 3.2rem;
  row-gap: 3.2rem;
}
.section__rooms .room-panel .room__content p {
  font-weight: 100;
  line-height: normal;
  letter-spacing: 2.888px;
  font-size: 1.4rem;
}
.section__rooms .room-panel .room__content--snippets {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
}
.section__rooms .room-panel .room__content--snippets .separator {
  content: "";
  width: 1px;
  height: 2.4rem;
  background-color: #0a0f23;
}
.section__rooms .room-panel .room__content--snippets .separator p {
  text-transform: uppercase;
  margin-top: 0 !important;
}
.section__rooms .room-panel .room__content .description {
  display: flex;
  flex-direction: column;
  row-gap: 1.6rem;
}
.section__rooms .room-panel .room__content .description a {
  border-bottom: 1px solid #0a0f23;
  transition: 0.3s;
}
.section__rooms .room-panel .room__content .description a:hover {
  opacity: 0.6;
}
.section__rooms .room-panel .room__content .buttons {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
  margin-top: 3.2rem;
}

.room-ui-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  width: 90%;
  max-width: 1200px;
}

.gallery-column .main-image-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: transparent;
}
.gallery-column .main-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-column .thumbnails {
  display: flex;
  gap: 2%;
  margin-top: 1.5rem;
}
.gallery-column .thumbnails .thumb {
  width: 32%;
  aspect-ratio: 16/9;
  cursor: pointer;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.gallery-column .thumbnails .thumb.active, .gallery-column .thumbnails .thumb:hover {
  opacity: 1;
  outline: 1px solid #000;
}

.sect-experiences {
  display: flex;
  justify-content: center;
  text-align: center;
  position: relative;
  flex-direction: column;
  align-items: center;
  row-gap: 3.2rem;
  padding-bottom: 18rem;
  padding-top: 18rem;
}
.sect-experiences .p-content {
  max-width: 68rem;
  line-height: 2;
  font-size: 1.8rem;
}
.sect-experiences .p-content p {
  margin-bottom: 6rem;
}

.sect__exp--container {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
  margin-top: 6rem;
}
.sect__exp--card {
  border-radius: 1.3rem;
  overflow: hidden;
  flex: 1;
}
.sect__exp--card img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  min-width: 100%;
  min-height: 80vh;
  max-height: 80vh;
  transition: 0.4s;
  transform: scale(1.1);
}
.sect__exp--card img:hover {
  transform: scale(1.2);
}
.sect__exp--card--figure {
  position: relative;
  margin-bottom: 3.2rem;
  border-radius: 1.3rem;
  overflow: hidden;
}
.sect__exp--card--desc {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 3.2rem 2.4rem;
  background-color: rgba(10, 15, 35, 0.6980392157);
  backdrop-filter: blur(3px);
  width: 100%;
  border-radius: 0 0 1.3rem 1.3rem;
}
.sect__exp--card--desc h3,
.sect__exp--card--desc p {
  color: #ffebda;
}
.sect__exp--card--desc p {
  letter-spacing: 1.888px;
  font-size: 1.4rem;
  text-align: left;
  font-weight: 100;
  margin-top: 1.6rem;
}
.sect__exp--card .buttons {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
  justify-content: center;
}

.sect__events {
  padding-top: 18rem;
  padding-bottom: 18rem;
}
.sect__events--card {
  background-color: #ffebda;
  width: 100%;
  padding: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 4rem;
  border-radius: 30rem 1.6rem;
  position: relative;
  z-index: 50;
  box-shadow: 0 4rem 0 #f3d8c2;
}
.sect__events--card p {
  max-width: 60rem;
}

.footer {
  background-color: #0a0f23;
  padding-top: 12rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 18rem;
}
.footer p {
  color: #ffebda;
}
.footer--content {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-around;
}
.footer--col {
  display: flex;
  flex-direction: column;
  row-gap: 1.6rem;
}
.footer--col h3,
.footer--col p,
.footer--col a {
  color: #ffebda;
}
.footer--col h3 {
  font-weight: 500;
  margin-bottom: 1.6rem;
}
.footer--col p,
.footer--col a {
  font-weight: 100;
}
.footer--col a:hover {
  opacity: 0.8;
}
.footer .copyright {
  font-size: 1.4rem;
}

.main__menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
}

.menu-wrapper {
  min-height: 100vh;
  max-height: 100vh;
}

.transition {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.menu__container {
  position: relative;
  z-index: 1;
  padding-left: 12rem;
  padding-right: 12rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.menu__container p,
.menu__container a,
.menu__container h3,
.menu__container h4 {
  color: #ffebda;
  letter-spacing: 2px;
}
.menu__container--header {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
}
.menu__container--content {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 10rem;
}
.menu__container--content--col {
  display: flex;
  flex-direction: column;
  row-gap: 1.2rem;
}
.menu__container--content--col h4 {
  padding-bottom: 0.8rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid #ffebda;
}
.menu__container--content--col a:hover {
  transition: 0.2s;
  color: #fff;
  transform: translateX(4px);
}

.wrapper {
  max-width: 120rem;
  margin: 0 auto;
}

@media (min-width: 1920px) {
  html {
    font-size: 80%;
  }
}
@media (min-width: 2500px) {
  html {
    font-size: 100%;
  }
  .room-ui-container {
    gap: 100px;
    max-width: 1800px;
  }
}
@media (max-width: 1200px) {
  .wrapper {
    max-width: 100rem;
  }
  h2 {
    font-size: 4.8rem;
  }
  .hero {
    padding-left: 4rem;
    padding-right: 4rem;
    background-size: cover;
  }
  .booking__menu--selector--item {
    min-width: 10rem;
  }
  .hero__top--menu {
    right: 6rem;
  }
  .hero__top--logo {
    left: 6rem;
  }
  .menu__container {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .section__rooms .room-panel .room__content {
    padding-top: 1.6rem;
    row-gap: 2.4rem;
  }
  .sect__exp--container {
    -moz-column-gap: 3.2rem;
         column-gap: 3.2rem;
  }
  .sect__exp--card--figure img {
    transform: scale(1.1);
  }
  .sect__exp--card--figure img:hover {
    transform: scale(1.2);
  }
  .text__slider-item {
    font-size: 4rem;
  }
  .menu__container--content {
    justify-content: space-between;
  }
}
@media (max-width: 1080px) {
  .wrapper {
    max-width: 90rem;
  }
  h4 {
    font-size: 3.2rem;
  }
  .sect__slider--card {
    flex-direction: column;
    row-gap: 3.2rem;
  }
  .sect__slider--card--figure {
    max-width: 100%;
  }
  .sect__slider--card--content {
    max-width: 100%;
    text-align: center;
  }
  .sect-intro {
    padding-bottom: 8rem;
  }
  .sect-experiences {
    padding-top: 12rem;
  }
  .sect-rooms-intro {
    padding-top: 8rem;
  }
  .menu__container--content--col h4 {
    font-size: 2.4rem;
  }
  .menu__container--content--col a {
    font-size: 1.4rem;
  }
  .section__rooms .room-panel .room__content--snippets {
    flex-wrap: wrap;
    row-gap: 0.8rem;
  }
}
@media (max-width: 980px) {
  .wrapper {
    max-width: 80rem;
  }
  h4 {
    font-size: 3rem;
  }
  .room__content h2 {
    font-size: 3.2rem;
  }
  .section__rooms .room-panel .room__content .buttons .buttons {
    margin-top: 2.4rem;
  }
  .section__rooms .room-panel .room__content {
    padding-top: 0;
  }
  .sect__events {
    padding-top: 10rem;
    padding-bottom: 12rem;
  }
  .sect__events--card {
    box-shadow: 0 2rem 0 #f3d8c2;
  }
  .sect__slider {
    padding-bottom: 8rem;
  }
  .menu__container--content {
    flex-wrap: wrap;
    -moz-column-gap: 3.2rem;
         column-gap: 3.2rem;
    row-gap: 3.2rem;
  }
}
@media (max-width: 860px) {
  .wrapper {
    max-width: 72rem;
  }
  hero::after {
    bottom: -1px;
  }
  .booking__menu {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .menu__container--content--col {
    width: 44%;
  }
  h2 {
    font-size: 4.2rem;
  }
  p {
    font-size: 1.6rem;
  }
  .booking__menu--btn {
    padding: 0.8rem 2.8rem 0.4rem;
    font-size: 1.2rem;
  }
  .text__slider {
    padding: 6rem 0;
  }
  .text__slider-item {
    font-size: 3rem;
  }
  .sect__slider--card--content h4 {
    font-size: 2.4rem;
  }
  .sect__exp--container {
    flex-direction: column;
    row-gap: 8rem;
  }
  .btn__body {
    padding: 1rem 4rem 0.6rem;
    font-size: 1.4rem;
  }
  .room-ui-container {
    grid-template-columns: 1fr;
  }
  .room-ui-container {
    width: 60%;
  }
  .section__rooms .room-panel .room__content {
    row-gap: 1.4rem;
  }
  .section__rooms .room-panel .room__content .buttons {
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 6rem;
  }
}
@media (max-width: 830px) {
  .wrapper {
    max-width: 70rem;
  }
  .hero::after {
    bottom: -1px;
  }
  .booking__menu--selector {
    display: none;
  }
  .booking__menu {
    padding: 0.8rem 0.8rem 0.8rem 0.8rem;
  }
  .booking__menu--btns {
    display: flex;
    gap: 2rem;
    margin-left: 0;
  }
  .booking__menu--btn {
    min-width: 12rem;
  }
  .sect__slider {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .sect-rooms-intro {
    padding-top: 4rem;
    padding-bottom: 8rem;
  }
  .sect-experiences {
    width: 80%;
    margin: 0 auto;
  }
  .text__slider {
    padding: 4rem 0;
    gap: 1rem;
  }
  .sect__events--card {
    border-radius: 18rem 1.6rem;
    padding: 8rem;
  }
}
@media (max-width: 720px) {
  .wrapper {
    max-width: 68rem;
  }
}
@media (max-width: 680px) {
  .wrapper {
    max-width: 60rem;
  }
  .hero__top--title {
    margin-top: 20rem;
  }
  .sect__slider {
    margin-right: 2rem;
    margin-left: 2rem;
  }
  .sect__exp--card img {
    min-height: 60vh;
    max-height: 60vh;
  }
  .impressions {
    padding: 18rem 6rem 10rem;
  }
}
@media (max-width: 600px) {
  .wrapper {
    max-width: 50rem;
  }
  .hero__top--title {
    margin-top: 9rem;
  }
  .sect__slider {
    margin-right: 2rem;
    margin-left: 2rem;
  }
  .sect__slider--card {
    max-width: 100%;
    min-width: 100%;
  }
  .sect-experiences {
    width: 100%;
    margin: 0 auto;
  }
  .sect__events--card {
    border-radius: 7rem 1.6rem;
  }
  .footer--content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 6rem;
  }
}
@media (max-width: 560px) {
  .wrapper {
    max-width: 48rem;
  }
  h2 {
    font-size: 3.6rem;
  }
  .hero__top--title {
    margin-top: 12rem;
  }
  .sect__events--card {
    padding: 8rem 6rem;
  }
}
@media (max-width: 520px) {
  .wrapper {
    max-width: 46rem;
  }
  .impressions__title {
    position: absolute;
    top: 15%;
    font-size: 8.6rem;
  }
  .sect-experiences {
    padding-bottom: 12rem;
  }
  h2 {
    font-size: 3.2rem;
  }
  .hero__top--title {
    margin-top: 14rem;
  }
  .hero__top--menu {
    right: 4rem;
  }
  .hero__top--logo {
    left: 4rem;
  }
  .btn__body--secondary {
    padding-left: 2.6rem;
    padding-right: 2.6rem;
  }
}
@media (max-width: 500px) {
  .wrapper {
    max-width: 40rem;
  }
  .text__slider-item {
    font-size: 2.4rem;
  }
  .text__slider {
    gap: 0.8rem;
  }
  .sect__events--card {
    padding: 6rem 6rem;
  }
  .menu__container--content--col {
    width: 62%;
    row-gap: 0.2rem;
  }
  .menu__container--content {
    margin-top: 4rem;
  }
  .impressions__title {
    top: 13%;
    font-size: 8.6rem;
  }
  .impressions__controls {
    flex-direction: column;
    row-gap: 4rem;
  }
}
@media (max-width: 430px) {
  .wrapper {
    max-width: 38rem;
  }
  .booking__menu {
    bottom: 18rem;
  }
  .impressions__title {
    position: absolute;
    top: 16%;
    font-size: 6.6rem;
  }
  .text__slider-item::after {
    margin-left: 1rem;
  }
  .text__slider-item {
    padding-right: 1rem;
  }
  .menu__container--content--col h4 {
    font-size: 2rem;
  }
}
@media (max-width: 420px) {
  .wrapper {
    max-width: 36rem;
  }
  .booking__menu {
    bottom: 18rem;
  }
  .impressions__title {
    position: absolute;
    top: 16%;
    font-size: 6.6rem;
  }
  .text__slider-item::after {
    margin-left: 1rem;
  }
  .text__slider-item {
    padding-right: 1rem;
  }
  h2 {
    font-size: 3rem;
  }
}
@media (max-width: 390px) {
  .wrapper {
    max-width: 34rem;
  }
  h1 {
    font-size: 11rem;
  }
  .heading-sub {
    font-size: 2.9rem;
  }
  .room-ui-container {
    width: 80%;
  }
  .impressions {
    padding: 14rem 4rem 10rem;
  }
  .impressions__title {
    top: 12%;
  }
  h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 376px) {
  .wrapper {
    max-width: 32rem;
  }
  .booking__menu {
    bottom: 9rem;
  }
  h1 {
    font-size: 10rem;
  }
  .heading-sub {
    font-size: 2.6rem;
  }
  h2 {
    font-size: 2.4rem;
  }
  .section__rooms .room-panel .room__content p {
    line-height: 1.4;
    letter-spacing: 1.888px;
    font-size: 1.2rem;
  }
  h3 {
    font-size: 2.2rem;
  }
  .sect__exp--card--desc {
    padding: 2.4rem 2rem 2.4rem;
  }
  .sect__events--card {
    padding: 4rem 4rem;
  }
  p {
    font-size: 1.4rem;
  }
  .menu__container--content--col h4 {
    font-size: 1.8rem;
  }
  .menu__container--content--col a {
    font-size: 1.2rem;
  }
  .menu__container--content {
    row-gap: 1rem;
  }
  menu__container--content--col h4 {
    padding-bottom: 0.4rem;
    margin-bottom: 1rem;
  }
  .hero {
    padding-top: 4rem;
  }
  .menu__container {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-top: 4rem;
  }
  .menu__container--content {
    margin-top: 2rem;
  }
  .hero__top--title {
    margin-top: 11rem;
  }
}