@charset "UTF-8";
.hero {
  padding: 0;
}
.hero section {
  padding: 0;
}
.hero__title {
  font-size: 5.625rem;
  margin-bottom: 2rem;
}
.hero__slider {
  width: 100%;
  position: relative;
}
.hero__slider img {
  width: 100%;
  height: 30.625rem;
  object-fit: cover;
  object-position: center;
}
.hero__slider--prev, .hero__slider--next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  cursor: pointer;
}
.hero__slider--prev svg, .hero__slider--next svg {
  width: auto;
  height: 1.25rem;
}
.hero__slider--prev {
  left: 1.25rem;
}
.hero__slider--next {
  right: 1.25rem;
}
.hero__slider--dots {
  position: absolute;
  left: 50% !important;
  bottom: 6.25rem !important;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  justify-content: center;
  gap: 0.625rem;
}
.hero__slider--dots .swiper-pagination-bullet {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 0;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
  opacity: 0.4;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero__slider--dots .swiper-pagination-bullet-active {
  background: #fff;
  border-color: #fff;
  transform: rotate(45deg) scale(1.25);
  opacity: 1;
}
.hero__booking {
  margin-top: -4.6875rem !important;
  z-index: 999;
  max-width: 75rem !important;
}

.rooms {
  background-color: #f6f7f9;
  overflow-x: hidden;
}
.rooms__slider-wrapper {
  position: relative;
}
.rooms__slider {
  margin-top: 2rem;
  position: relative;
}
.rooms__slider--prev, .rooms__slider--next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  padding: 0.3125rem 0.9375rem;
}
.rooms__slider--prev:hover, .rooms__slider--next:hover {
  color: #40552e;
}
.rooms__slider--prev.swiper-button-disabled, .rooms__slider--next.swiper-button-disabled {
  opacity: 0.25;
  pointer-events: none;
}
.rooms__slider--prev svg, .rooms__slider--next svg {
  width: 1.875rem;
  height: auto;
}
.rooms__slider--prev {
  right: 100%;
}
.rooms__slider--next {
  left: 100%;
}
.rooms__top {
  display: flex;
  justify-content: space-between;
}
.rooms__text {
  max-width: 26.25rem;
}
.rooms__card {
  display: block;
  width: 100%;
  aspect-ratio: 0.73;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-decoration: none;
}
.rooms__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg) center/cover no-repeat;
  transition: transform 0.6s ease;
  z-index: -2;
}
.rooms__card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: #3d3d3d;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  z-index: -1;
}
.rooms__card:hover::before {
  transform: scale(1.08);
}
.rooms__card:hover .rooms__card--foot svg {
  transform: translateX(5px);
}
.rooms__card--price {
  background-color: #f6f7f9;
  padding: 0.4375rem 0.625rem;
  position: absolute;
  right: 0.3125rem;
  top: 0.625rem;
  font-size: 0.875rem;
  color: #000;
  clip-path: polygon(0 0, calc(100% - 0.875rem) 0, 100% 0.875rem, 100% 100%, 0 100%);
}
.rooms__card--breakfast {
  position: absolute;
  right: 0.3125rem;
  top: 3rem;
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  padding: 0.375rem 0.625rem;
  background-color: #da5252;
  color: #fff;
  font-size: 0.8125rem;
  clip-path: polygon(0 0, calc(100% - 0.75rem) 0, 100% 0.75rem, 100% 100%, 0 100%);
}
.rooms__card--breakfast svg {
  width: 0.9375rem;
  height: 0.9375rem;
  flex-shrink: 0;
  margin: 0;
  stroke: currentColor;
  stroke-width: 1.5px;
}
.rooms__card--name {
  flex: 1;
  font-size: 1.375rem;
}
.rooms__card--foot {
  position: absolute;
  width: calc(100% - 0.9375rem - 0.9375rem);
  left: 0.9375rem;
  bottom: 0.9375rem;
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
}
.rooms__card--foot svg {
  width: 2.5rem;
  transition: all 0.4s;
}

.reviews__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.reviews__all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #000;
  text-decoration: none;
}
.reviews__all svg {
  width: 1.125rem;
  height: 1.125rem;
  transition: transform 0.2s ease;
}
.reviews__all:hover {
  color: #40552e;
}
.reviews__all:hover svg {
  transform: translateX(0.25rem);
}
.reviews__grid {
  display: flex;
  gap: 1.25rem;
  align-items: stretch;
}
.reviews__summary {
  flex: 0 0 15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
}
.reviews__google {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.875rem;
}
.reviews__score {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1;
  color: #14161f;
}
.reviews__stars {
  display: flex;
  gap: 0.125rem;
  margin: 0.625rem 0rem 0.5rem;
  font-size: 1.25rem;
  line-height: 1;
}
.reviews__count {
  font-size: 0.8125rem;
  color: #8b93a1;
}
.reviews__slider {
  flex: 1;
  min-width: 0;
  padding-bottom: 2.5rem;
  position: relative;
}
.reviews__pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.reviews__pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}
.reviews__pagination .swiper-pagination-bullet-active {
  width: 1.5rem;
  border-radius: 0.25rem;
  background: #40552e;
}

.star {
  color: #fbbc05;
}
.star--empty {
  color: #d8dbe0;
}
.star--half {
  position: relative;
  color: #d8dbe0;
}
.star--half::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #fbbc05;
}

.review {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background-color: #f6f7f9;
}
.review__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review__avatar {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}
.review__avatar--letter {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #40552e;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}
.review__meta {
  flex: 1;
  min-width: 0;
}
.review__author {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #14161f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review__date {
  font-size: 0.75rem;
  color: #8b93a1;
}
.review__g {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
}
.review__stars {
  display: flex;
  gap: 0.125rem;
  margin: 0.75rem 0rem;
  font-size: 0.9375rem;
  line-height: 1;
}
.review__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #5b6472;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about__top {
  display: grid;
  grid-template-columns: 31.25rem 1fr;
  gap: 3rem;
  align-items: center;
}
.about__text {
  margin-top: 1.5rem;
  line-height: 1.7;
  color: #5b6472;
}
.about__gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about__img {
  overflow: hidden;
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about__img:hover img {
  transform: scale(1.05);
}
.about__img--1 {
  grid-column: 1/3;
  height: 18.75rem;
}
.about__img--2, .about__img--3 {
  height: 13.125rem;
}
.about__badge {
  position: absolute;
  left: -2.5rem;
  top: 45%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem;
  background: #fff;
}
.about__badge-num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #40552e;
}
.about__badge-label, .about__badge-text {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #5b6472;
}
.about__features {
  list-style: none;
  margin: 3.5rem 0 0;
  padding: 0;
  display: flex;
  gap: 1.875rem;
  justify-content: center;
  position: relative;
}
.about__features::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  z-index: -1;
}
.about__feature {
  width: calc(100% / 4 - 1.875rem / 4 * (4 - 1));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.625rem;
  padding: 0rem 1rem;
}
.about__feature + .about__feature {
  border-left: 1px solid #e8eaee;
}
.about__feature svg {
  stroke: #40552e;
  stroke-width: 1px;
  width: 2.375rem;
  height: 2.375rem;
}
.about__feature-title {
  font-size: 1.25rem;
  color: #14161f;
}
.about__feature-sub {
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #5b6472;
}

.instagram {
  background-color: #f6f7f9;
  overflow-x: hidden;
}
.instagram__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2.5rem;
}
.instagram__title {
  text-transform: uppercase;
}
.instagram__text {
  max-width: 32.5rem;
  margin-top: 1rem;
  color: #5b6472;
  line-height: 1.6;
}
.instagram__slider-wrapper {
  position: relative;
}
.instagram__slider .ig-slide {
  height: auto;
}
.instagram__slider--prev, .instagram__slider--next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  padding: 0.3125rem 0.9375rem;
}
.instagram__slider--prev:hover, .instagram__slider--next:hover {
  color: #40552e;
}
.instagram__slider--prev.swiper-button-disabled, .instagram__slider--next.swiper-button-disabled {
  opacity: 0.25;
  pointer-events: none;
}
.instagram__slider--prev svg, .instagram__slider--next svg {
  width: 1.875rem;
  height: auto;
}
.instagram__slider--prev {
  right: 100%;
}
.instagram__slider--next {
  left: 100%;
}
.instagram__item {
  position: relative;
  display: block;
  aspect-ratio: 0.73;
  overflow: hidden;
}
.instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.instagram__item:hover img {
  transform: scale(1.06);
}
.instagram__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(64, 85, 46, 0.55);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.instagram__overlay svg {
  width: 2rem;
  height: 2rem;
}
.instagram__item:hover .instagram__overlay {
  opacity: 1;
}
.instagram__more {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  padding: 1.5rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #40552e;
  transition: background 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 1;
}
.instagram__more svg {
  width: 2.5rem;
  height: 2.5rem;
}
.instagram__more-text {
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
}
.instagram__more::after {
  content: "";
  background-color: #fff;
  position: absolute;
  left: -1%;
  top: 0;
  width: 102%;
  height: 100%;
  z-index: -1;
  transform-origin: 0 0;
  transition: all 0.4s;
  transform: scaleX(0);
}
.instagram__more:hover::after {
  transform: scaleX(1);
}
.instagram__more:hover svg:last-child {
  transform: translateX(0.375rem);
}
.instagram__more svg:last-child {
  width: 1.75rem;
  transition: transform 0.3s ease;
}

.restaurant__top {
  display: grid;
  grid-template-columns: 27.5rem 1fr;
  gap: 3rem;
  align-items: center;
}
.restaurant__sup {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  font-size: 0.8125rem;
  color: #40552e;
  margin-bottom: 1.25rem;
}
.restaurant__sup span {
  width: 2.5rem;
  height: 1px;
  background-color: currentColor;
}
.restaurant__title {
  text-transform: uppercase;
}
.restaurant__text {
  max-width: 26.25rem;
  margin-top: 1.25rem;
  line-height: 1.6;
  color: #5b6472;
}
.restaurant__buttons {
  margin-top: 2.25rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.restaurant__gallery {
  overflow: hidden;
}
.restaurant__marquee {
  display: flex;
  width: max-content;
  animation: restaurant-marquee 40s linear infinite;
}
.restaurant__marquee-group {
  display: flex;
  flex-shrink: 0;
  gap: 0.75rem;
  padding-right: 0.75rem;
}
.restaurant__gallery-item {
  flex-shrink: 0;
  width: 18.75rem;
  height: 20rem;
  overflow: hidden;
}
.restaurant__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.restaurant__gallery-item:hover img {
  transform: scale(1.06);
}
.restaurant__features {
  margin-top: 2rem;
  margin-left: calc(27.5rem + 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.restaurant__features > * + * {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.restaurant__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1.25rem;
  text-align: center;
}
.restaurant__feature-icon {
  flex-shrink: 0;
  color: #40552e;
}
.restaurant__feature-icon svg {
  width: 2.125rem;
  height: 2.125rem;
  stroke: currentColor;
  stroke-width: 1px;
}
.restaurant__feature-title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.1875rem;
}
.restaurant__feature-sub {
  margin-top: 0.25rem;
  font-size: 1.0625rem;
  color: #5b6472;
}

@keyframes restaurant-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.entertainment {
  padding: 5rem 0rem;
}
.entertainment__grid {
  display: grid;
  grid-template-columns: 35rem 1fr;
  gap: 3.75rem;
  align-items: center;
}
.entertainment__slider {
  border-radius: 1.5rem;
  overflow: hidden;
}
.entertainment__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 28.75rem;
  padding: 1.75rem;
  background: #2b2b2b center/cover no-repeat;
  color: #fff;
  isolation: isolate;
}
.entertainment__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: -1;
}
.entertainment__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.entertainment__tag {
  padding: 0.5rem 1rem;
  border-radius: 62.4375rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  font-size: 0.875rem;
  font-weight: 600;
}
.entertainment__card-body {
  max-width: 26.25rem;
}
.entertainment__card-title {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.2;
}
.entertainment__card-text {
  margin-top: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.entertainment__card-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  padding: 0.8125rem 1.625rem;
  border-radius: 62.4375rem;
  background: #fff;
  color: #14161f;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.entertainment__card-btn:hover, .entertainment__card-btn:focus {
  background: #40552e;
  color: #fff;
}
.entertainment__nav {
  position: absolute;
  right: 1.75rem;
  bottom: 1.75rem;
  z-index: 3;
  display: flex;
  gap: 0.625rem;
}
.entertainment__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #14161f;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.entertainment__arrow svg {
  width: 1.25rem;
  height: 1.25rem;
}
.entertainment__arrow:hover {
  background: #40552e;
  color: #fff;
  transform: translateY(-0.125rem);
}
.entertainment__sup {
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #8b93a1;
}
.entertainment__title {
  margin-top: 0.875rem;
  font-size: 2.875rem;
  font-weight: 700;
  line-height: 1.1;
  color: #14161f;
}
.entertainment__desc {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 2.25rem;
}
.entertainment__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #14161f;
  color: #fff;
}
.entertainment__badge svg {
  width: 1.25rem;
  height: 1.25rem;
}
.entertainment__mark {
  color: #8b93a1;
}
.entertainment__mark svg {
  width: 1.375rem;
  height: 1.375rem;
}
.entertainment__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #8b93a1;
}

.activities__grid {
  display: grid;
  grid-template-columns: 25rem 1fr;
  gap: 3rem;
  align-items: center;
}
.activities__media {
  min-width: 0;
}
.activities__sup {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  font-size: 0.8125rem;
  color: #40552e;
  margin-bottom: 1.25rem;
}
.activities__sup span {
  width: 2.5rem;
  height: 1px;
  background-color: currentColor;
}
.activities__title {
  text-transform: uppercase;
}
.activities__text {
  max-width: 22.5rem;
  margin-top: 1.25rem;
  line-height: 1.6;
  color: #5b6472;
}
.activities__btn {
  margin-top: 2rem;
}
.activities__nav {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.activities__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.activities__arrow svg {
  width: 1.25rem;
  height: auto;
  margin: 0;
}
.activities__arrow--next {
  background: #40552e;
  border-color: #40552e;
  color: #fff;
}
.activities__arrow:hover {
  border-color: #40552e;
}
.activities__counter {
  font-size: 1rem;
  color: #5b6472;
}
.activities__slider {
  overflow: hidden;
}
.activities__slide {
  height: 32.5rem;
  background: center/cover no-repeat;
}
.activities__thumbs {
  margin-top: 1rem;
  overflow: hidden;
}
.activities__thumb-img {
  position: relative;
  height: 8.75rem;
  background: center/cover no-repeat;
}
.activities__thumb-icon {
  position: absolute;
  left: 0.625rem;
  bottom: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #fff;
  color: #40552e;
}
.activities__thumb-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
}
.activities__thumb {
  position: relative;
}
.activities__thumb-title {
  font-size: 1.0625rem;
  color: #14161f;
  position: absolute;
  left: -1px;
  bottom: -1px;
  background-color: #fff;
  padding: 0.3125rem 0.75rem;
  max-width: 9.375rem;
  clip-path: polygon(0 0, calc(100% - 0.875rem) 0, 100% 0.875rem, 100% 100%, 0 100%);
}

.charging__grid {
  display: grid;
  grid-template-columns: 1fr 35rem;
  gap: 3.75rem;
  align-items: center;
}
.charging__media-inner {
  position: relative;
  height: 32.5rem;
  overflow: hidden;
}
.charging__media-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.charging__badge {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  padding: 0.375rem 1rem;
  background: #fff;
  color: #000;
  font-size: 0.875rem;
  clip-path: polygon(0.875rem 0, 100% 0, 100% 100%, 0 100%, 0 0.875rem);
}
.charging__sup {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.125rem;
  font-size: 0.8125rem;
  color: #40552e;
  margin-bottom: 1.25rem;
}
.charging__sup span {
  width: 2.5rem;
  height: 1px;
  background-color: currentColor;
}
.charging__title {
  text-transform: uppercase;
}
.charging__text {
  max-width: 28.75rem;
  margin-top: 1.25rem;
  line-height: 1.6;
  color: #5b6472;
}
.charging__features {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.charging__feature {
  text-align: center;
  padding: 0rem 0.9375rem;
}
.charging__feature:nth-child(2) {
  border-left: 1px solid #e8eaee;
}
.charging__feature:nth-child(3) {
  grid-column: 1/-1;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e8eaee;
}
.charging__feature-icon {
  display: block;
  color: #40552e;
  margin-bottom: 0.75rem;
}
.charging__feature-icon svg {
  width: 1.875rem;
  height: 1.875rem;
  stroke: currentColor;
  stroke-width: 1px;
}
.charging__feature-title {
  font-weight: 500;
  font-size: 1.1875rem;
}
.charging__feature-sub {
  margin-top: 0.25rem;
  font-size: 1.0625rem;
  color: #5b6472;
}
.charging__btn {
  margin-top: 2.25rem;
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1024px) {
  .booking-page-container .search-container {
    flex-wrap: wrap;
  }
  .hero__title {
    font-size: 3.75rem;
  }
  .hero__slider img {
    height: 23.75rem;
  }
  .rooms__slider {
    overflow: hidden;
  }
  .rooms__slider--prev {
    right: auto;
    left: 0.5rem;
  }
  .rooms__slider--next {
    left: auto;
    right: 0.5rem;
  }
  .rooms__slider--prev, .rooms__slider--next {
    padding: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
  }
  .rooms__slider--prev svg, .rooms__slider--next svg {
    width: 1.375rem;
  }
  .rooms__card {
    aspect-ratio: 1.33;
  }
  .reviews__grid {
    flex-direction: column;
  }
  .reviews__summary {
    flex: none;
    width: 100%;
    padding: 1.5rem;
  }
  .reviews__slider {
    width: 100%;
    max-width: 100%;
  }
  .about__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about__badge {
    left: -1px;
    top: 55%;
    padding: 1rem 1.5rem;
  }
  .about__badge-num {
    font-size: 2.375rem;
  }
  .instagram__slider {
    overflow: hidden;
  }
  .instagram__slider--prev {
    right: auto;
    left: 0.5rem;
  }
  .instagram__slider--next {
    left: auto;
    right: 0.5rem;
  }
  .instagram__slider--prev, .instagram__slider--next {
    padding: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
  }
  .instagram__slider--prev svg, .instagram__slider--next svg {
    width: 1.375rem;
  }
  .restaurant__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .restaurant__features {
    margin-left: 0;
  }
  .entertainment__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .entertainment__title {
    font-size: 2.125rem;
  }
  .activities__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .activities__btn {
    margin-top: 1.5rem;
  }
  .activities__nav {
    margin-top: 1.5rem;
  }
  .activities__slide {
    height: 21.25rem;
  }
  .charging__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .charging__media {
    order: -1;
  }
  .charging__media-inner {
    height: 23.75rem;
  }
}
@media (max-width: 640px) {
  .hero__title {
    font-size: 2.75rem;
  }
  .hero__slider img {
    height: 18.75rem;
  }
  .hero__slider--dots {
    bottom: 1rem !important;
  }
  .hero__booking {
    margin-top: 1.5rem;
  }
  .rooms__top {
    flex-direction: column;
    gap: 0.75rem;
  }
  .rooms__text {
    max-width: none;
  }
  .reviews__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .about__gallery {
    grid-template-columns: 1fr;
  }
  .about__img--1 {
    grid-column: auto;
  }
  .about__badge {
    top: 55%;
  }
  .about__img--3 {
    display: none;
  }
  .about__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem 0;
    margin-top: 2.25rem;
  }
  .about__feature {
    width: auto;
  }
  .about__feature + .about__feature {
    border-left: 0;
  }
  .instagram__text {
    font-size: 0.9375rem;
  }
  .restaurant__features {
    grid-template-columns: 1fr;
  }
  .restaurant__features > * + * {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .restaurant__feature {
    display: block;
  }
  .restaurant__feature-sub {
    font-size: 1rem;
  }
  .restaurant__buttons {
    flex-direction: column;
  }
  .restaurant__buttons .button {
    justify-content: center;
  }
  .entertainment {
    padding: 3rem 0rem;
  }
  .entertainment__title {
    font-size: 1.875rem;
  }
  .entertainment__card {
    min-height: 25rem;
  }
  .activities__slide {
    height: 18.75rem;
  }
  .activities__thumb-title {
    font-size: 0.875rem;
  }
  .activities__thumb-img {
    height: 6.25rem;
  }
  .charging__media-inner {
    height: 18.75rem;
  }
  .charging__features {
    grid-template-columns: 1fr;
  }
  .charging__feature {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 1rem;
    text-align: left;
    padding: 1rem 0rem;
  }
  .charging__feature:nth-child(n+2) {
    border-left: 0;
    border-top: 1px solid #e8eaee;
  }
  .charging__feature:nth-child(3) {
    grid-column: auto;
    margin-top: 0;
    padding-top: 1rem;
  }
  .charging__feature-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .charging__feature-sub {
    grid-column: 2;
    font-size: 1rem;
  }
}
@media (max-width: 425px) {
  .hero__title {
    font-size: 2.3125rem;
  }
  .hero__slider img {
    height: 15rem;
  }
}

/*# sourceMappingURL=home.css.map */
