* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

:root {
  --white: #ffffff;
  --steal-blue: #537eac;
  --light-steal-color: rgb(246, 249, 253);
  --light-gray-color-border: rgb(201, 201, 201);
  --gray: rgb(88, 88, 88);
  --mid-gray: rgb(130, 130, 130);
  --star-color: rgb(255, 187, 0);
  --red: rgb(246, 0, 0);
  --black: #000000;
  --dark-blue: rgb(0, 18, 37);
  --light-dark-blue: rgb(11, 44, 88);
  --tint-firs: rgb(249, 245, 234);
  --second-shade-blue: #dce7f5;
  --brand-color: rgb(197, 171, 81);
}

:root {
  --Sacramento: Sacramento;
  --lugfa-medium: lugfa-medium;
  --lugfa-thin: lugfa-thin;
  --lugfa-light: lugfa-light;
  --lugfa-regular: lugfa-regular;
  --lucida-writing: lucida-writing;
}

@font-face {
  font-family: "lucida-writing"; /* Name for the font */
  src: url("../lucida-writing/lucidahandwriting_italic.ttf");
}

@font-face {
  font-family: "lugfa-medium"; /* Name for the font */
  src: url("../hotel-pics/lugfa/LufgaMedium.ttf");
}

@font-face {
  font-family: "lugfa-thin"; /* Name for the font */
  src: url("../hotel-pics/lugfa/LufgaThin.ttf");
}

@font-face {
  font-family: "lugfa-light"; /* Name for the font */
  src: url("../hotel-pics//lugfa/LufgaLight.ttf");
}

@font-face {
  font-family: "Sacramento"; /* Name for the font */
  src: url("../hotel-pics/Sacramento/Sacramento.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "lucida"; /* Name for the font */
  src: url("../hotel-pics/writing/LucidaHandwriting");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "lugfa-regular"; /* Name for the font */
  src: url("../hotel-pics/lugfa/LufgaRegular.ttf");
  font-weight: normal;
  font-style: normal;
}

h1 {
  font-size: 76px;
  font-style: normal;
}

h2 {
  font-size: 44px;
  font-style: normal;
}

h3 {
  font-size: 34px;
  font-style: normal;
}

h4 {
  font-size: 26px;
  font-style: normal;
}

h5 {
  font-size: 22px;
  font-style: normal;
}

h6 {
  font-size: 18px;
  font-style: normal;
}


.header-section {
  background: rgba(255, 255, 255, 0.2); /* Light transparent background */
  backdrop-filter: blur(10px); /* Adjust blur intensity */
  -webkit-backdrop-filter: blur(15px); /* For Safari */
  position: absolute;
  width: 100%;
  z-index: 99;
}

.hotel-navbar-logo-img {
  object-fit: cover;
  object-position: center;
  width: 180px;
  height: 90px;
}

.home-title {
  color: var(--white) !important;
  font-size: 18px;
  font-family: var(--lugfa-regular);
}

.for-padding-home-title {
  padding-left: 80px;
}

.home-title:hover {
  font-weight: bold;
}

.about-title {
  color: var(--white) !important;
  font-size: 18px;
  font-family: var(--lugfa-regular);
}

.about-title:hover {
  font-weight: bold;
}

.for-padding-about-title {
  padding-left: 20px;
}

.book-now-link-header-part {
  background: var(--steal-blue);
  color: var(--white);
  font-size: 16px;
  font-family: var(--lugfa-light);
  font-weight: 600;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 10px;
}

.header-section.nav-link .dropdown:hover {
  display: block;
}

.dropdown:hover .dropdown-menu {
  display: block !important;
}

.header-section .dropdown-menu .dropdown-item {
  color: var(--black);
}

.header-section .dropdown-menu .dropdown-item:hover {
  background: var(--steal-blue);
}
/* header-section */

.parent-container {
  height: 900px;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;

  z-index: -1;
}

#yt-player {
  width: 100%;
  height: 100%; /* Set a fixed height */
  position: relative;
}

/* parent-container */

.content {
  position: absolute;
  z-index: 1;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  background: transparent;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 11, 0.2);
}

.Stay-Beyond-Expectation {
  margin-top: 320px;
  line-height: 80px;
  align-items: center;
  text-align: center;
  color: var(--white) !important;
  font-family: var(--Sacramento);
  font-size: clamp(40px, 8vw, 76px);
  font-weight: 400;
}

/* vedio-player-section */

.booking-registration-container-section {
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--white);
}

/* Style the calendar icon */
.calender-icon {
  width: 32px;
  height: 32px;
  object-fit: cover;
  object-position: center;

  cursor: pointer;
}

.check-in-bottom-box {
  border: 2px solid var(--light-gray-color-border);
  display: flex;
  justify-content: space-around;
  border-radius: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
  align-items: center;
}

.Date-Check-In {
  font-family: var(--lugfa-medium);
  font-size: 14px;
  color: var(--steal-blue);
  font-weight: 500;
}

.check-in-title {
  font-family: var(--lugfa-light);
  font-size: 18px;
  font-weight: 400;
  color: var(--mid-gray);
  text-align: center;
  margin-top: 5px;
}

.date-picker-container {
  display: flex;
  align-items: center;
  gap: 10px; /* Space between input and icon */
  position: relative;
}

/* Style the input field */
.calendar-input {
  border: none;
  background: transparent;
  font-size: 16px;
  color: var(--steal-blue);
  font-family: var(--lufga);
  cursor: pointer;
  padding-right: 30px; /* Space for the icon */
  width: 120px;
}

/* Remove outline when clicked */
.calendar-input:focus {
  border: 0;
}

.room-title {
  font-size: 16px;
  font-family: var(--lugfa-medium);
  color: var(--steal-blue);
  font-weight: 500;
}

.room-counter {
  border: 2px solid var(--light-gray-color-border);
  display: flex;
  justify-content: space-around;
  padding-top: 15px;
  padding-bottom: 12px;
  padding-left: 20px;
  padding-right: 20px;

  border-radius: 10px;
  align-items: center;
}

.room-input {
  width: 80px;
  text-align: center;
  font-size: 20px;
  border: 0;

  padding: 5px;
  background: transparent;
  font-family: var(--lugfa-light);
  color: var(--mid-gray);
}

.room-btn {
  font-size: 18px; /* Increase icon size */
  width: 25px; /* Adjust button width */
  height: 25px; /* Adjust button height */
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: transparent;
  cursor: pointer;
  border: 1px solid var(--steal-blue);
  color: var(--steal-blue);
  border-radius: 50%;
  padding-bottom: 5px;
}

.room-btn.minus {
  font-size: 27px; /* Make minus sign larger */
}

.room-btn.plus {
  font-size: 27px; /* Make minus sign larger */
}

.room-btn:hover {
  background-color: var(--steal-blue);
  color: white;
}

.book-now-link-for-registration-form {
  color: var(--white);
  background: var(--steal-blue);
  font-size: 16px;
  font-family: var(--lugfa-light);

  font-weight: 600;
  text-align: center;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 22px;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 10px;
  display: inline-block;
  margin-top: 30px;
}

/* booking-registration-container-section */

.background-img-welcome-paragrah {
  background-position: center center;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 760px;
}

.Welcome-to-Grand-paragraph {
  color: var(--steal-blue);
  font-family: var(--Sacramento);
  font-weight: 400;
  font-size: clamp(30px, 6vw, 44px);
  text-align: center;
  margin-top: 230px;
}

.Discover-More-link-welcome-grand-paragraph {
  background: var(--steal-blue);
  color: var(--white);
  font-size: 17px;
  font-family: var(--lufga);
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;

  text-align: center;
  border-radius: 10px;
  margin-top: 40px;
  font-weight: 500;
}

.Discover-More-link-welcome-grand-paragraph-box {
  display: flex;
  justify-content: center;
}

/* background-img-welcome-paragrah */

.swipper-room-img-section {
  padding-top: 40px;
  padding-bottom: 80px;
}

.ROOMS-SUITES {
  color: var(--mid-gray);

  font-size: 16px;

  text-align: center;

  font-family: var(--lugfa-light);
  font-weight: 400;
}

.room-border-box {
  display: flex;
  justify-content: center;
}

.room-border {
  width: 45px;
  border: 2px solid var(--steal-blue);
  display: flex;
  justify-content: center;
  text-align: center;
}

.Our-Exquisite-Rooms {
  color: var(--black);
  font-family: var(--Sacramento);
  text-align: center;
  padding-bottom: 30px;
  font-size: clamp(1.5rem, 4vw, 44px);
}

.room-suite-img {
  object-fit: cover;
  object-position: center;

  width: 100%;
  height: 400px;
  border-radius: 10px !important;
}

.Deluxe-room-title {
  color: var(--black);
  text-align: center;
  font-family: var(--lugfa-medium);
  font-weight: 500;
font-size: clamp(1rem, 2vw, 26px);
  padding-top: 20px;
  padding-bottom: 10px;
}

.dollar-price {
  color: var(--steal-blue);
  font-family: var(--lugfa-medium);
}

.per-night {
  color: var(--steal-blue);
  font-size: 16px;
  padding-top: 6px;
}

.price-of-room-per-nit {
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}

.room-detail {
  color: var(--mid-gray);
  font-size: 16px;
  font-family: var(--lugfa-regular);
  text-align: center;
  padding-bottom: 10px;
}

.View-More-box {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.View-More-link {
  color: var(--white);
  background: var(--steal-blue);
  font-size: 16px;
  font-family: var(--lugfa-light);
  display: inline-block;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
  border-radius: 10px;
}

/* Ensure the Swiper container does not clip the buttons */

.swiper-overflow-visible {
  position: relative;
  overflow: visible;
  width: 100%;
}

/* Common styles for Swiper buttons */
.next-button,
.prev-button {
  top: 40%;

  color: var(--black);

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Move buttons far outside the Swiper slides */
.next-button {
  right: -40px; /* Moves outside on the right */
}

.prev-button {
  left: -40px; /* Moves outside on the left */
}

.next-button::after {
  font-size: 30px;
}

.prev-button::after {
  font-size: 30px;
}

.for-mobile {
  display: none;
}

/* swipper-room-img-section */
/* for-desktop */

.Exceptional-Facilities-section {
  background-color: var(--light-steal-color);
  padding-top: 80px;
  padding-bottom: 80px;
}

.img-couple-enjoy {
  width: 100%;
  height: 633px;
  position: relative;
  overflow: hidden;
}

.img-couple-enjoy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../hotel-pics/Logos-20250101T071728Z-001/Logos/couple-img-frame.png")
    no-repeat center center;
  background-size: 100%;
  z-index: 2;
}

.couple-img-frame {
  width: 100%;
  height: 94%;
  object-fit: cover;
  object-position: 100% 100%;
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 10px;
}

.tag-img-box {
  position: relative;
}

.tag-img {
  width: 140px;
  height: 140px;
  top: 30px;
  right: 80px;
  object-fit: cover;
  object-position: center;
  position: absolute;
  z-index: 100;
}

.star-color {
  color: var(--star-color);
  font-size: 18px;
}

.star-color-white {
  color: var(--light-steal-color);
  font-size: 18px;
}

.rating-with-star {
  display: flex;
  gap: 10px;
  margin-left: 20px;
}

.rating-box-of-clients {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  top: -45px;
  left: 70px;
  z-index: 100;
}

.rating-box {
  background: var(--steal-blue);
  display: inline-block;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 10px;
}

.number-rate {
  font-size: 36px;
  color: var(--white);
  font-family: var(--lugfa-light);
}

.Customer-Ratings-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 10px;
}

.Customer-Ratings {
  color: var(--white);
  font-size: 16px;
  font-family: var(--lugfa-light);
}
/* col-lg-6 */
.Exceptional-Facilities-for-Your-Comfort {
  font-size: clamp(30px, 6vw, 44px);
  color: var(--black);
  font-family: var(--Sacramento);
}

.Grand-Horizon-Hotel-paragrh {
  color: var(--gray);
  font-size: 19px;
  font-family: var(--lugfa-regular);
}

.Luxurious-Rooms-box {
  display: flex;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.correct-icon {
  color: var(--steal-blue);
  font-size: 30px;
}

.Luxurious-Rooms {
  color: var(--gray);
  font-family: var(--lugfa-regular);
  font-size: 19px;

  padding-top: 10px;
}

.Discover-More-link {
  color: var(--white);
  font-size: 16px;
  font-family: var(--lugfa-regular);
  background: var(--steal-blue);
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  display: inline-block;
  border-radius: 10px;
  margin-top: 40px;
}

.for-paading-whole-col {
  padding-left: 50px;
}

/* Exceptional-Facilities-section */

.Our-Premier-Facilities-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.mySwiper-facilities {
  background: var(--light-steal-color);
}

.Our-Premier-Facilities {
  color: var(--black);
 font-size: clamp(1.5rem, 4vw, 44px);

  font-family: var(--Sacramento);
}

.Enjoy-range-paragh {
  color: var(--gray);
  font-size: 19px;
  font-family: var(--lugfa-regular);

  padding-bottom: 20px;
  padding-top: 20px;
}

.Discover-More-visit {
  color: var(--white);
  font-size: 16px;
  font-family: var(--lugfa-regular);
  background: var(--steal-blue);
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  display: inline-block;
  border-radius: 10px;
  margin-top: 40px;
  position: absolute;
}

.padding-from-top {
  padding-top: 80px;
}
.background-img-premier {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 500px;
}

/* col-lg-6 */

.fitness-img {
  width: 100%;
  height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 10px;
}

.Fitness-Center-title {
  color: var(--white);
  font-size: 22px;
  font-family: var(--lugfa-medium);
  position: absolute;
  width: 80%;
  top: 430px;
  left: 30px;
  background: rgba(46, 46, 46, 0.2);
  display: inline-block;
}

.next-button-facilities {
  background: var(--white);
  color: var(--steal-blue);
  height: 50px;
  width: 60px;
  left: -10px;
}

.next-button-facilities::after {
  font-size: 20px;
}

.prev-button-facilities::after {
  font-size: 20px;
}

.prev-button-facilities {
  background: var(--white);
  color: var(--steal-blue);
  height: 50px;
  width: 60px;
  right: -10px;
}

.mySwiper-facilities-mobile {
  display: none;
}

/* Our-Premier-Facilities-section */
.Highlights-from-Past-Events-section {
  background: var(--light-steal-color);
  padding-top: 80px;
  padding-bottom: 80px;
}

.Highlights-from-Past-Events {
  color: var(--black);
  font-family: var(--Sacramento);
  text-align: center;
  padding-bottom: 20px;
  font-size: clamp(1.5rem, 4vw, 44px);

}

.slider-container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.slick-track {
  display: flex;
  margin-left: 0;
  margin-right: 0;
  transform: translateX(-20px);

  /* Shift the track to the left to remove gap */
}

.slick-slide {
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
  text-align: center;
  padding: 0 20px;
  /* Padding inside each slide */
  box-sizing: border-box;

  /* Ensure padding does not affect slide width */
}

.slick-center {
  opacity: 1;
  transform: scale(1.1);

  /* Make the center image zoom in */
}

.slick-prev {
  left: 33%;
}

.slick-prev::before {
  font-size: 44px;
}

.slick-next {
  right: 32.9%;
}

.slick-next::before {
  font-size: 44px;
}

/* Image Styling */
.slick-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  position: relative;

  margin-top: 50px;
}

.slick-center img {
  width: 100%;
  height: 400px;

  margin-top: 20px;
}

.slick-prev,
.slick-next {
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;

  border: none;
  width: 45px;
  height: 45px;

  border-radius: 50%;
}

/* Remove gap before and after the slider */
.slick-track {
  display: flex;
  justify-content: center;
}

.slick-list {
  margin: 0;

  height: 450px;
}

.event-date-place-box {
  position: absolute;
  background: var(--white);
  z-index: 516165;
  margin-top: -90px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 10px;
  margin-left: 20px;
}

.Annual-Business-Summit {
  color: var(--mid-gray);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--lugfa-medium);
}

.date-of-event {
  color: var(--mid-gray);
  font-size: 12px;
  font-family: var(--lugfa-medium);
  font-weight: 400;
  text-align: start;
  padding-top: 5px;
}

/* Highlights-from-Past-Events-section */

.Offers-DEALS-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.offer-and-deals {
  font-size: 18px;
  font-family: var(--lugfa-light);
  color: var(--mid-gray);
  text-align: center;
}

.dicounted-percentage-box {
  width: 100%;
  height: 100%;
  position: absolute;
  margin-top: 20px;
  text-align: end;
  margin-left: -20px;
}

.room-suite-img-other {
  background-size: cover;
  background-position: center;

  width: 100%;
  height: 400px;
  border-radius: 10px !important;
}

.dicounted-percentage {
  color: var(--white);
  background: var(--red);
  font-size: 12px;
  font-family: var(--lugfa-medium);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  display: inline-block;
  text-align: center;
  border-radius: 25px 25px;
}
/* .Offers-DEALS-section */

.Testimonials-section {
  background: var(--light-steal-color);
  padding-top: 100px;
  padding-bottom: 100px;
}

.Testimonials {
  color: var(--mid-gray);
  font-family: var(--lugfa-light);
  font-size: 16px;
  text-align: center;
}

.box-for-review-client {
  background: var(--white);
  border: 2px solid --black;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  /* box-shadow: 2px 2px 0px rgba(154, 172, 187,0.1); */
}

.star-rating-testimonial {
  color: var(--star-color);
  display: flex;
  gap: 10px;
  font-size: 18px;
}

.review-of-client {
  color: var(--gray);
  font-size: 18px;
  font-family: var(--lugfa-light);
  font-weight: 500;
  padding-top: 20px;
}

.review-of-client-second {
  color: var(--gray);
  font-size: 18px;
  font-family: var(--lugfa-light);
  font-weight: 500;
  padding-top: 20px;
}

.review-of-client-onther {
  color: var(--gray);
  font-size: 18px;
  font-family: var(--lugfa-light);
  font-weight: 500;
  padding-top: 20px;
  padding-bottom: 52px;
}

.for-border-line {
  width: 100%;
  border: 1px solid rgba(130, 130, 130, 0.2);
}

.Emily-Beans-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.emily-bean-introduction {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;

  align-items: center;
}

.google-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.emily-bean-box {
  display: flex;
  gap: 20px;
  text-align: center;
}

.Emily-Beans-name {
  font-size: 18px;
  color: var(--black);
  font-family: var(--lugfa-medium);
}

.Police-Officer-job {
  color: var(--mid-gray);
  font-size: 16px;
  font-family: var(--lugfa-light);
  text-align: start;
}

.swiper-overflow-visible-test {
  position: relative;
  overflow: visible;
}

.mySwiper-Testimonials {
  padding-left: 0;
  padding-right: 10px;
  height: 380px;
  padding-top: 10px;
  width: 100%;
}

.next-button-test,
.prev-button-test {
  top: 40%;

  color: var(--black);

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Move buttons far outside the Swiper slides */
.next-button-test {
  right: -40px; /* Moves outside on the right */
}

.prev-button-test {
  left: -40px; /* Moves outside on the left */
}

.next-button-test::after {
  font-size: 30px;
}

.prev-button-test::after {
  font-size: 30px;
}

/* Testimonials-section */
.Experience-Best-Hospitality-background-img {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 620px;
}

.background-color-img {
  width: 100%;
  height: 620px;
  background-size: cover;
  background-position: center;
  background: rgba(11, 11, 11, 0.6);

  position: absolute;
}

.Experience-Best-Hospitality-title {
 font-size: clamp(1.5rem, 4vw, 44px);
  color: var(--white);
  font-family: var(--Sacramento);
  text-align: center;
  font-weight: 400;
  padding-top: 150px;
}

.Experience-Best-Hospitality-paragrh {
  color: var(--white);
  font-size: 18px;
  font-family: var(--lugfa-medium);
  font-weight: 400;
  padding-top: 20px;
  display: flex;

  justify-content: center;
}

.vedio-player-icon {
  width: 32px;
  height: 32px;
}

.vedio-player {
  font-size: 18px;
  color: var(--white);
  font-family: var(--lugfa-light);
  margin-top: 5px;
}

.vedio-player-box {
  width: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 80px;
}

.vedio-player-img-of-hotel-box {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  align-items: end;
  margin-top: 80px;
}

.vedio-player-img-of-hotel {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 216px;
  border: 10px solid rgba(128, 96, 64, 0.8); /* Brownish border */
  border-radius: 20px; /* Rounded corners */
  background-color: rgba(0, 0, 0, 0.2); /* Background overlay */
  outline: 1px solid rgba(255, 255, 255, 0.5);
}

.play-icon-bacground {
  background: rgba(26, 24, 24, 0.3);

  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-icon {
  bottom: 80px;
  position: absolute;
  width: 32px;
  height: 32px;
  object-fit: cover;
  object-position: center;
}

/* Experience-Best-Hospitality-section */

.backgrd-img-Exclusive-Offers-Updates {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 700px;
}

.splashhhh-img {
  width: 100%;
  height: 94%;
  object-fit: cover;
  object-position: 100% 100%;
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 10px;
}

.splashhhh-img-frame {
  width: 100%;
  height: 633px;
  position: relative;
  overflow: hidden;
}

.splashhhh-img-frame::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../hotel-pics/Logos-20250101T071728Z-001/Logos/mask-splash-of-water.png")
    no-repeat center center;
  background-size: cover;
  z-index: 2;
}

.Exclusive-Offers-Updates-Subscribe-Newsletter-col {
  padding-left: 90px;
  padding-top: 110px;
}

.Exclusive-Offers-Updates-Subscribe-Newsletter-topic {
  font-size: 48px;
  color: var(--black);
  font-family: var(--Sacramento);
  font-weight: 400;
  display: flex;
  justify-content: flex-start;
}

.Stay-connected-to-unlock-pargh {
  color: var(--gray);
  font-size: 20px;
  font-family: var(--lugfa-light);
  display: flex;
  justify-content: flex-start;
  font-weight: 500;

  padding-top: 20px;
}

.form-control-inner-part {
  border: 1px solid rgba(88, 88, 88, 0.5);
  width: 100% !important;
  color: var(--gray) !important;
  width: 100%;
  height: 68px;
  border-radius: 10px;
}

.form-control-outer {
  padding-top: 30px;
}

.Subscribe-Now {
  color: var(--white);
  font-size: 16px;
  font-family: var(--lugfa-regular);
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
  background: var(--steal-blue);
  display: inline-block;
  border-radius: 10px;
}

.Subscribe-Now-box {
  display: flex;
  justify-content: flex-start;
  padding-top: 40px;
}

/* Exclusive-Offers-Updates-Newsletter-section */

.get-off-offer-section {
  display: flex;
  position: relative;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 650px;
}

/* get-off-offer-section */

.shape-img {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* shape-img */

.offer-box-tranparent {
  width: 100%;
  height: 100%;
  background-color: rgba(2, 2, 2, 0.1);
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  text-align: center;
}

/* offer-box-tranparent */

.Weekend-Special {
  text-align: center;
  color: var(--white);
  font-family: var(--lucida-writing);
  font-size: 36px;

  margin-top: 135px;
}

/* Weekend-Special */

.Get-Up-To-offer {
  font-family: var(--Sacramento);
  font-size: 84px;
  font-weight: 400;
  font-style: normal;
  text-align: center;

  color: var(--white);
}
/* Get-Up-To-offer  */
.book-now-box-offer {
  font-family: var(--lugfa-medium);
  font-weight: 500px;
  font-style: normal;
  background: var(--steal-blue);
  color: var(--white);

  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 16px;

  display: inline-block;
  margin-top: 50px;
  border-radius: 10px;
}

/* book-now-box-offer */

/* get-off-offer-section */

.footer-img {
  width: 100%;
  height: 480px;
  background-position: center top;
  background-size: cover;
}

/* footer-img */

.background-color-of-footer {
  background: var(--dark-blue);
  width: 100%;
  height: 480px;
  position: relative;
  opacity: 0.98;
}

/* background-color-of-footer */

.footer-container {
  padding-top: 60px;
}

/* footer-container */

.icon-collection-box {
  padding-top: 20px;
}

/* icon-collection-box */

.icon-collection {
  display: flex;
  gap: 20px;
  color: var(--white);
}

/* icon-collection */

.twitter-logo {
  color: var(--white);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  text-align: center;
  font-size: 17px;
  padding: 15px;
  background-color: var(--light-dark-blue);
}

/* twitter-logo */

.footer-logo-img {
  width: auto;
  height: 100px;
}
/* footer-logo-img */
.Grand-Horizon-paragh {
  color: var(--white);
  font-size: 17px;
  font-family: var(--lugfa-light);
  font-weight: 400;
  padding-top: 20px;
}
/* Grand-Horizon-paragh */
.border-line-grand-horizon-paara-box {
  padding-top: 20px;
}

/* border-line-grand-horizon-paara-box */
.border-line-grand-horizon-paara {
  width: 70%;
  border: 1px solid var(--light-dark-blue);
}

/* border-line-grand-horizon-paara  */

/* 
col-lg-4 */

.Quick-links {
  color: var(--white);
  font-family: var(--lugfa-light);
  font-size: 18px;
  font-weight: 400px;
  font-style: normal;
  list-style: none;
  padding-bottom: 10px;
}

/* Quick-links */

.underline-cursor-link {
  border: 2px solid var(--steal-blue);
  width: 20px;
  text-align: center;
  margin-top: -10px;
  margin-left: 10px;
}

/* underline-cursor-link */

.Quick-links-col {
  list-style: none;

  text-decoration: none;
}

/* Quick-links-col div*/

a:hover {
  text-decoration: none;
}

.home-quicks-link {
  font-family: var(--lugfa-light);
  font-size: 16px;
  font-weight: 400px;
  font-style: normal;
  list-style: none;
  margin-left: -30px;
  color: var(--white);
  line-height: 40px;
}

/* home-quicks-link */

/* Quick-links-div */
/* col-lg-2 */

.contents-vedio {
  padding-top: 40px;
  color: var(--text-color-light-gray);
  list-style: none;
}
/* contents-vedio */
.contents-vedio-list {
  margin-left: -30px;
  color: var(--white);
  font-family: var(--lugfa-light);
  font-size: 16px;
  font-weight: 400px;
  font-style: normal;
  list-style: none;
  line-height: 40px;
}

/* contents-vedio-list */

/* contents-vedio col  */
/* col-lg-2 */

.Get-in-Touch {
  color: var(--white);
  font-family: var(--lugfa-light);
  font-size: 18px;
  padding-left: 30px;
  font-style: normal;
  line-height: 23px;
}
/* Get-in-Touch */

.underline-cursor {
  border: 2px solid var(--steal-blue);
  width: 30px;

  margin-left: 70px;
}

/* underline-cursor */

.location-intro {
  display: flex;
  gap: 10px;
  color: var(--white);
  padding-top: 20px;
  padding-left: 40px;
}

/* location-intro */

.company-email {
  display: flex;
  gap: 10px;
  color: var(--white);
  padding-left: 40px;
}

/* company-email */

.contact-number-footer {
  font-family: var(--lugfa-light);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 25px;
  color: var(--white);
}

/* contact-number-footer  */

.location-direction {
  color: var(--white);
  font-size: 14px;
  font-family: var(--lugfa-light);
  padding-top: 60px;
  padding-left: 50px;
}

/* location-direction */

.border-line-cursor-for-location {
  margin-left: 70px;
  width: 30px;
  border: 2px solid var(--steal-blue);
}

/* border-line-cursor-for-location */

.get-direction-box {
  display: flex;
  gap: 10px;
  text-align: center;
  align-items: center;
  padding-top: 30px;
  margin-left: 50px;
}

/*style get-direction-box */

.get-direction {
  color: var(--white);
  font-size: 16px;
  font-family: var(--lugfa-light);
  font-weight: 400;
}

/* style get-direction */

.arrow-left {
  color: var(--white);
  font-size: 16px;
  margin-top: -10px;
}

/* style-arrow-left */

.border-get-direction {
  border: 1px solid var(--white);
  width: 50%;
  margin-left: 50px;
}
/* Style border-get-direction  */

/* col-lg-3 */

/* Get-in-Touch col  */
/* row */
.Copyright-comp {
  color: var(--steal-blue);
  font-family: var(--lugfa-medium);
  font-size: 14px;
  text-align: center;
  display: flex;
  justify-content: center;
  padding-left: 200px;
}

/* Copyright-comp  */
/* row */

/* footer  */
/* home-page-css or style complete */

/* We-Create-The-Art-Best-Hotel-Gallery-about-page-section */
.background-image-of-service-page {
  width: 100%;
  height: 500px;
  background-position: center;
  background-size: cover;
  position: relative;
}

/* background-image-of-service-page */

.black-box {
  width: 100%;
  height: 100%;
  background-color: var(--black);
  opacity: 0.4;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}
/* black-box */

.our-service-page-slide-container {
  position: absolute;
}

/* our-service-page-slide-container */

.who-we-are {
  color: var(--white);
  text-align: center;
  margin-top: 250px;
  font-family: var(--Sacramento);
  font-weight: 400;
  font-size: 44px;

  font-style: normal;
}
/* 
who-we-are */

.home-who-we-are-box {
  display: flex;
  justify-content: center;
  width: 200;
}

/* home-who-we-are-box */

.home-link-who-we-are {
  color: var(--white);
  font-family: var(--lugfa-medium);
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
}

/* home-link-who-we-are */

.who-we-are-word {
  list-style: disc;
  margin-left: 30px;
  color: var(--white);
  font-family: var(--lugfa-light);
  font-size: 20px;
  font-style: normal;
}

/* who-we-are-word */

/* slide-part-of-service-page */

.Indulge-in-the-Luxury-You-Deserve-section {
  background: var(--white);
  padding-top: 70px;
  padding-bottom: 70px;
}

.Indulge-in-the-Luxury-You-Deserve {
  color: var(--black);
  font-family: var(--Sacramento);
 font-size: clamp(1.5rem, 4vw, 44px);
  font-weight: 400;
  font-style: normal;
}

.Indulge-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.Indulge-in-the-Luxury-1st-part {
  display: flex;
  margin-top: 40px;
  gap: 40px;
}

.Located-at-seaside {
  color: var(--gray);
  font-family: var(--lugfa-regular);
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  padding-left: 20px;
}

.Indulge-in-the-Luxury-2nd-part {
  border-left: 5px solid var(--steal-blue);
  width: 70%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.A-place-that-offers {
  color: var(--mid-gray);
  font-family: var(--lugfa-light);
  font-size: 20px;
  letter-spacing: 2%;

  font-style: normal;
  padding-left: 20px;
}

.Leonardo-P {
  font-family: var(--lugfa-medium);
  font-weight: 400;
  font-style: normal;
  padding-left: 20px;
  font-size: 18px;
  color: var(--steal-blue);
}

.Hotel-Manager {
  color: var(--gray);
  font-family: var(--lugfa-light);
  font-weight: 500;
  font-style: normal;
  padding-left: 20px;
  font-size: 14px;
}

.couple-img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.your-top-priority-logo {
  width: 220px;
  height: 180px;
  object-fit: cover;
  object-position: center;
  position: relative;
  margin-left: -120px;
  margin-top: -250px;
}
/* Indulge-in-the-Luxury-You-Deserve-section */

.Our-Purpose-and-Principles-section {
  background: var(--light-steal-color);
  padding-top: 80px;
  padding-bottom: 80px;
}

.Our-Purpose-and-Principles-img {
  width: 100%;
  min-height: 100%; /* Ensuring it has height */
  background-position: center;
  background-size: cover;
  position: relative;
  border-radius: 10px;
}

.play-icon-box-about-page {
  position: absolute;
  background-color: rgba(31, 29, 29, 0.1);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-icon-about-page {
  color: var(--white);
  font-size: 90px;
}

.Our-Purpose-and-Principles-box {
  padding-left: 40px;
  padding-top: 20px;
}

.Our-Purpose-and-Principles {
  color: var(--black);
  font-family: var(--Sacramento);
font-size: clamp(1.5rem, 4vw, 44px);
  font-weight: 500;
  font-style: normal;
  padding-bottom: 20px;
}

.Step-into {
  color: var(--gray);
  font-family: var(--lugfa-regular);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
}

.Book-Now-our-purpose {
  color: var(--white);
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 16px;
  font-family: var(--lugfa-medium);

  font-style: normal;
  background: var(--steal-blue);
  text-align: center;
  display: inline-block;
  margin-top: 20px;
  border-radius: 10px;
}

/* Our Purpose and Principles section */

.Meet-Our-Leadership-Team-section {
  background: var(--white);
  padding-top: 80px;
  padding-bottom: 80px;
}

.Meet-Our-Leadership-Team {
  color: var(--black);
 font-size: clamp(1.5rem, 4vw, 44px);
  font-family: var(--Sacramento);
  text-align: center;
  font-weight: 500;
  font-style: normal;
}

.Meet-the-Visionaries-Behind-para {
  color: var(--mid-gray);
  font-size: 18px;
  font-family: var(--lugfa-light);
  text-align: center;
  font-weight: 400;
  font-style: normal;
}

.border-out-team-box {
  display: flex;
  justify-content: center;
}

.border-out-team {
  width: 50px;
  border: 2px solid var(--steal-blue);
}

.women-in-blue-shirt-img-box {
  width: 100%;
  height: 500px;
  background-position: center;
  background-size: cover;
  position: relative;
  border-radius: 10px;
}

.Dianne-Russell {
  color: var(--white);
  font-family: var(--lugfa-medium);
  text-align: left;
  padding-left: 20px;

  font-style: normal;
  font-size: 22px;
  margin-top: 400px;
  position: relative;
  background-color: rgba(70, 68, 68, 0.2);
  display: inline-flex;
}

.ceo-word {
  color: var(--white);
  font-family: var(--lugfa-light);
  text-align: left;
  font-weight: 400;
  font-style: normal;
  padding-left: 22px;
  font-size: 20px;
  background-color: rgba(70, 68, 68, 0.2);
  display: inline-block;
}

.image-box {
  background: rgba(34, 34, 34, 0.2);
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* 
Meet Our Leadership Team */

.We-Create-The-Art-Best-Hotel-Gallery-about-page-section {
  background: var(--white);
  padding-top: 80px;
}

.We-Create-The-Art-Best-Hotel-Gallery {
  color: var(--black);
  text-align: center;
  font-family: var(--Sacramento);
 font-size: clamp(1.5rem, 4vw, 44px);
  font-weight: 500;
  font-style: normal;
}

.top-padding-row {
  padding-top: 40px;
}

.picture-album {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.nogap-col {
  margin: 0;
  padding: 0;
}

.five-six-two-room-box {
  padding: 79px;
}

/* We-Create-The-Art-Best-Hotel-Gallery-about-page-section */

.Make-Your-Stay-Memorable-section {
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.Make-Your-Stay-Memorable {
  font-family: var(--Sacramento);
  color: var(--black);
  font-weight: 500;
  font-style: normal;
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 44px);
  padding-bottom: 20px;
}

.wifi-col-background {
  background: #ffffff;
  padding: 40px;
  height: 320px;
  box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.router-img-box {
  display: flex;
  justify-content: center;
}

.router-icon {
  width: 100px;
  height: 100px;
  object-fit: cover;
  object-position: center;
}

.High-Speed-Wifi {
  color: var(--black);
  font-family: var(--lugfa-medium);
  text-align: center;
  font-weight: 500;

  font-size: 18px;
  padding-top: 20px;
}

.Upgrading-your-bandwidth-is-easy-and-it-can-be-para {
  color: var(--gray);
  text-align: center;
  font-family: var(--lugfa-regular);
  text-align: center;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  padding-top: 5px;
  padding-bottom: 10px;
}

.breakfast-para {
  color: var(--gray);
  text-align: center;
  font-family: var(--lugfa-regular);
  text-align: center;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  padding-top: 5px;
  padding-bottom: 30px;
}

/* Make-Your-Stay-Memorable-section */
/* about-page-who we are */
.Our-Premier-Facilities-section-facilities-page {
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: var(--light-steal-color);
}

.deluxe-room-section {
  background: var(--light-steal-color);
  padding-top: 80px;
  padding-bottom: 80px;
}

.room-first-col {
  border-radius: 20px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.Deluxe-room-title-onther {
  color: var(--black);
  font-size: clamp(1rem, 2vw, 26px);
  font-family: var(--lugfa-medium);
  padding: 20px;
}

.room-img-room-page {
  object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 320px;
  border-radius: 20px 20px 0px 0px;
}

.room-price {
  display: flex;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
}

.room-detail-room-page {
  font-family: var(--lugfa-light);
  color: var(--mid-gray);
  font-size: 14px;

  align-items: center;
  display: flex;
  justify-content: center;
}

.dollar-price-another {
  font-size: 26px;
  color: var(--steal-blue);
  font-family: var(--lugfa-medium);
}

.per-night {
  color: var(--steal-blue);
  font-size: 16px;
  padding-top: 6px;
}

/* deluxe-room-section */

/* room page */

.A-World-of-Flavors-Awaits-section {
  background-position: center;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--white);
}

.A-World-of-Flavors-Awaits-img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 700px;
  border-radius: 20px;
}

.A-World-of-Flavors-Awaits {
  font-family: var(--Sacramento);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.5rem, 4vw, 44px);
  color: var(--black);
  padding: 20px;
}

.A-World-of-Flavors-Awaits-para {
  color: var(--gray);
  font-family: var(--lugfa-regular);
  font-size: 18px;

  font-style: normal;
  padding: 20px;
}

.Day-Hours {
  font-family: var(--lugfa-medium);
  font-size: 22px;
  font-weight: 500;
  font-style: normal;
  padding-top: 30px;
  padding-left: 20px;
}

.Breakfast-time {
  color: var(--gray);
  font-size: 18px;
  font-family: var(--lugfa-regular);
  text-align: center;
  font-weight: 400;
  font-style: normal;
}

.clock-icon {
  width: 24px;
  height: 24px;
  object-fit: cover;
  object-position: center;
}

.time-of-breakfast {
  display: flex;
  gap: 10px;
  padding: 20px;
}
.time-of-lunch {
  display: flex;
  gap: 10px;
  padding-left: 20px;
}

.A-World-of-Flavors-Awaits-part {
  padding-left: 30px;
}

.read-more-a-world-of-Flavors {
  margin-left: 20px;
  margin-top: 40px;
  display: inline-block;
  background: var(--steal-blue);
  color: var(--white);
  font-family: var(--lugfa-regular);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 10px;
}

/* A-World-of-Flavors-Awaits-section */

/* .get-off-offer-section */
.Restaurant-Menu-section {
  background: var(--light-steal-color);
  padding-top: 80px;
  padding-bottom: 30px;
}

.Menu-topic {
  color: var(--mid-gray);
  font-family: var(--lugfa-light);
  font-size: 18px;
  text-align: center;
}

.border-menu {
  border-bottom: 3px solid var(--steal-blue);
  width: 4%; /* Set width of the container to 1% of the parent */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto; /* This will center the container itself */
}

.Restaurant-Menu {
  font-family: var(--Sacramento);
  font-size: clamp(1.5rem, 4vw, 44px);
  font-weight: 500px;
  font-style: normal;
  color: var(--black);
  text-align: center;
}

.Breakfast-box {
  background: var(--second-shade-blue);
  height: 120px;
  width: 140px;
  padding: 20px;
  border-radius: 10px;
}

.Breakfast-icon {
  width: 45px;
  height: 45px;
  object-fit: cover;
  object-position: center;
  margin-left: 20px;
}

.Breakfast {
  color: var(--gray);
  font-family: var(--lugfa-regular);
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  padding-top: 10px;
  text-align: center;
}

.Breakfast-box:hover {
  background-color: var(--steal-blue);
  color: var(--white);
}

.Breakfast-box:hover .Breakfast {
  color: var(--white);
}

.Breakfast-box:hover .Breakfast-icon {
  color: var(--white);
}

.Breakfast-icon {
  filter: grayscale(100%);
}

.Breakfast-icon {
  filter: grayscale(100%) brightness(40%);
}

.Breakfast-box:hover .Breakfast-icon {
  filter: brightness(0) invert(1); /* Turns the icon white */
}
.Breakfast-box:hover .Breakfast {
  color: var(--white);
}
/* .Breakfast */

.Appetizers-icon {
  filter: grayscale(100%);
}

.Appetizers-icon {
  filter: grayscale(100%) brightness(40%);
}

.Appetizers-box {
  background: var(--second-shade-blue);
  height: 120px;
  width: 140px;
  padding: 30px;
  border-radius: 10px;
}

.Appetizers-icon {
  font-size: 30px;
  padding-left: 25px;
}

.Appetizers {
  color: var(--gray);
  font-family: var(--lugfa-regular);
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  padding-top: 10px;
  text-align: center;
}

.Appetizers-box:hover {
  background-color: var(--steal-blue);
}

.Appetizers-box:hover .Appetizers-icon {
  filter: brightness(0) invert(1); /* Turns the icon white */
}

.Appetizers-box:hover .Appetizers {
  color: var(--white);
}

.Burgers-box {
  background: var(--second-shade-blue);
  height: 120px;
  width: 140px;
  padding: 30px;
  border-radius: 10px;
}

.Burgers-icon {
  font-size: 30px;
  padding-left: 25px;
}

.Burgers-icon {
  filter: grayscale(100%);
}

.Burgers-icon {
  filter: grayscale(100%) brightness(40%);
}
.Burgers-box:hover {
  background-color: var(--steal-blue);
  color: var(--terxt-color-white);
}

.Burgers-box:hover .Burgers-icon {
  filter: brightness(0) invert(1); /* Turns the icon white */
}
.Burgers-box:hover .Breakfast {
  color: var(--white);
}

.Salads-box {
  background: var(--second-shade-blue);
  height: 120px;
  width: 140px;
  padding: 30px;
  border-radius: 10px;
}

.Salads-icon {
  color: var(--gray);
  font-size: 30px;
  padding-left: 20px;
}

.Salads-box:hover {
  background-color: var(--steal-blue);
  color: var(--terxt-color-white);
}

.Salads-icon {
  filter: grayscale(100%);
}

.Salads-icon {
  filter: grayscale(100%) brightness(40%);
}

.Salads-box:hover .Salads-icon {
  filter: brightness(0) invert(1); /* Turns the icon white */
}
.Salads-box:hover .Breakfast {
  color: var(--white);
}

/* salad */

.Seafood-box {
  background: var(--second-shade-blue);
  height: 120px;
  width: 140px;
  padding: 30px;
  border-radius: 10px;
}

.Seafood-icon {
  padding-left: 20px;
}

.Seafood-box:hover {
  background-color: var(--steal-blue);
  color: var(--terxt-color-white);
}

.Seafood-icon {
  filter: grayscale(100%);
}

.Seafood-icon {
  filter: grayscale(100%) brightness(40%);
}

.Seafood-box:hover .Seafood-icon {
  filter: brightness(0) invert(1); /* Turns the icon white */
}
.Seafood-box:hover .Appetizers {
  color: var(--white);
}
/* seafood */

.Mains-box {
  background: var(--second-shade-blue);
  height: 120px;
  width: 140px;
  padding: 30px;
  border-radius: 10px;
}

.Mains-icon {
  padding-left: 20px;
}

.Mains-box:hover {
  background-color: var(--steal-blue);
  color: var(--terxt-color-white);
}

.Mains-icon {
  filter: grayscale(100%);
}

.Mains-icon {
  filter: grayscale(100%) brightness(40%);
}

.Mains-box:hover .Mains-icon {
  filter: brightness(0) invert(1); /* Turns the icon white */
}
.Mains-box:hover .Breakfast {
  color: var(--white);
}



.Breakfast-box.active {
  background-color: var(--steal-blue);
}

.Breakfast-box.active .Breakfast{
  color: var(--white);
}


.Breakfast-box.active .Breakfast-icon {
  filter: brightness(0) invert(1); /* Turns the icon white */
}


/* .Breakfast */

.Appetizers-box.active {
  background-color: var(--steal-blue);
}

.Appetizers-box.active .Appetizers{
  color: var(--white);
}


.Appetizers-box.active .Appetizers-icon{
  filter: brightness(0) invert(1); /* Turns the icon white */
}





.Burgers-box.active {
  background-color: var(--steal-blue);
}

.Burgers-box.active .Breakfast{
  color: var(--white);
}


.Burgers-box.active .Burgers-icon{
  filter: brightness(0) invert(1); /* Turns the icon white */
}




.Salads-box.active {
  background-color: var(--steal-blue);
}

.Salads-box.active .Breakfast{
  color: var(--white);
}


.Salads-box.active .Salads-icon{
  filter: brightness(0) invert(1); /* Turns the icon white */
}



.Seafood-box.active {
  background-color: var(--steal-blue);
}

.Seafood-box.active .Appetizers{
  color: var(--white);
}


.Seafood-box.active .Seafood-icon{
  filter: brightness(0) invert(1); /* Turns the icon white */
}



.Mains-box.active {
  background-color: var(--steal-blue);
}

.Mains-box.active .Breakfast{
  color: var(--white);
}


.Mains-box.active .Mains-icon{
  filter: brightness(0) invert(1); /* Turns the icon white */
}






/* main */



.collapse-slider-container {
  min-height: 705px;

  z-index: 10;
}

.background-of-menu-list {
  background: var(--light-steal-color);
  border: 0;
  min-height: 500px;
}

.Southern-Fried-Chicken {
  color: var(--black);
  font-family: var(--lugfa-medium);
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.Fresh-beware-coffee {
  color: var(--mid-gray);
  font-size: 14px;
  font-family: var(--lugfa-regular);
  margin: 5px 0 0;
}

.price-of-southern-fried-chicken {
  color: var(--steal-blue);
  font-family: var(--lugfa-medium);
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
}

.doted {
  flex-grow: 1;
  border-bottom: 1px dashed var(--mid-gray);
  margin-top: 10px;
}

.Restaurant-Menu-section-for-mobile {
  display: none;
}
/* Restaurant-Menu-section */

/* restuarant-page */

.Request-Your-Individual-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 190px;
}
.Request-Your-Individual {
  font-family: var(--Sacramento);
  color: var(--white);
  font-size: clamp(3rem, 5vw, 76px);
  text-align: center;
}

/* start-hall-page */

/* Elegant-Event-Hall-section */

.Elegant-Event-Hall-section {
  background: var(--white);
  padding-top: 80px;
  padding-bottom: 80px;
  background-position: center;
  background-size: cover;
}

.Elegant-Event-Hall {
  color: var(--black);
  font-family: var(--Sacramento);
  font-size: clamp(1.5rem, 4vw, 44px);
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

.Elegant-Event-Hall-para {
  font-size: 18px;

  color: var(--gray);

  padding-top: 10px;

  font-family: var(--lugfa-regular);

  font-weight: 400;
  font-style: normal;
}

.image-slider-container {
  padding: 0 !important;
}

.main-slider {
  padding: 0 !important;
}

.TOTAL-ACCOMMODATIONS-box-whole-part {
  padding-left: 50px;
}

/* Main Image Slider */
.image-slider {
  width: 100%;
  margin: 0;
  padding: 0 !important;
}

.large-slider-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px !important;

  padding: 0 !important;
}

/* Thumbnail Slider */
.thumbnail-slider {
  height: 130px;
  margin-top: -30px;
}

.small-slider-image {
  width: 140px;
  height: 115px;
  object-fit: cover;
  border-radius: 10px !important;
  padding: 5px !important;
}

/* Custom styling for the arrows */
.custom-prev,
.custom-next {
  background-color: var(--white);
  color: var(--black);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  top: 40%;
  width: 60px;
  height: 50px;
  z-index: 10;
}
.custom-prev {
  left: 10px;
}
.custom-next {
  right: 10px;
}

/* Remove all transformations */
.small-slider-image {
  transform: none;
  opacity: 1;
}

.slick-list {
  padding: 0px !important;
  margin: 0;
}

.TOTAL-ACCOMMODATIONS {
  color: var(--mid-gray);
  font-size: 17px;
  font-family: var(--lugfa-regular);
  word-spacing: 2px;
  font-weight: 400;
  font-style: normal;
}

.TOTAL-ACCOMMODATIONS-number {
  color: var(--steal-blue);
  font-family: var(--lugfa-medium);
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 400px;
  font-style: normal;
  font-size: clamp(1.25rem, 4vw, 42px);
}

.TOTAL-ACCOMMODATIONS-box {
  border-bottom: 1px solid var(--brand-color);
  width: 350px;
}

.border-padding {
  padding-top: 30px;
  padding-left: 60px;
}

.TOTAL-AMENITIES-box {
  padding-top: 30px;
  border-bottom: 1px solid var(--brand-color);
  width: 350px;
}

.TOTAL-CONFERENCE-box {
  padding-top: 30px;
}

.TOTAL-CONFERENCE-ROOMS-number {
  color: var(--steal-blue);
  font-family: var(--lugfa-medium);

  padding-top: 10px;
  padding-bottom: 20px;
  font-weight: 600px;
  font-style: normal;
  font-size: clamp(1.25rem, 4vw, 42px);
}

/* General Table Styles */

.table-responsive{
  padding: 0;
  border: 2px solid var(--second-shade-blue);
  border-radius: 10px;
 
}

.custom-table {
  width: 100%;
  
   margin: 0;
}

.custom-table table {
  border-radius: 50px;
}

.custom-table th,
.custom-table td {
 
  border-right: 1px solid var(--second-shade-blue);
  text-align: start;
  padding-left: 20px;
  padding-bottom: 15px;
}

.custom-table td {
background:transparent;
font-family: var(--lugfa-regular);
font-size: 18px;
  color: var(--gray);
  padding-top: 20px;
   border: 1px solid var(--second-shade-blue);
}

.custom-table th {
  font-family: var(--lugfa-regular);
  font-size: 18px;
  color: var(--black);
background: var(--light-steal-color);
  font-weight: normal;
  border: 1px solid var(--second-shade-blue);
}

.custom-table th,
.custom-table td {
  padding-top: 20px;
}

.Amenities-That-Make-Every-Event-Remarkable-section {
  background: var(--light-steal-color);
  padding-top: 80px;
  padding-bottom: 80px;
}

.Amenities-That-Make-Every-Event-Remarkable {
  color: var(--black);
  font-family: var(--Sacramento);
  font-size: clamp(1.25rem, 4vw, 42px);
  text-align: center;
  font-weight: 500;
  font-style: normal;
}

.Perfecting-Your-Gatherings-with-para {
  font-family: var(--lugfa-regular);
  font-size: clamp(0.875rem, 2vw, 18px);
  color: var(--mid-gray);
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

.Stationery-box {
  background: var(--second-shade-blue);
  height: 120px;
  display: flex;
  color: var(--black);
  gap: 30px;
  padding-left: 40px;
  padding-top: 25px;
  padding-bottom: 25px;
  border: 1px solid white;
  border-radius: 10px;
}

.book-icon {
  object-fit: cover;
  object-position: center;
  width: 64px;
  height: 64px;
}

.Stationery {
  font-family: var(--lugfa-regular);
  font-size: 21px;
  padding-top: 25px;

  font-weight: 500;
  font-style: normal;
  text-align: center;
}

.Water-Bottles {
  font-family: var(--lugfa-regular);
  font-size: 21px;
  padding-top: 30px;

  font-weight: 500;
  font-style: normal;
  text-align: center;
}

/* hall page */

/* photo-page start here */
.photo-gallery-section {
  background: var(--white);
  padding-top: 80px;
}

.row-photo-topic {
  display: flex;
  gap: 10px;
}



.all-photogallery-word {
  font-family: var(--lugfa-regular);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
}

.Interior-photogallery-click-button {
  display: inline-block;
  text-align: center;

  width: 155px;
  height: 40px;
  padding-top: 10px;

  color: var(--gray);
  border: 1px solid var(--mid-gray);
  border-radius: 10px;
}

.Interior-photogallery-click-button:hover {
  background: var(--brand-color);
  color: var(--white);
}

.photo-gallery-image-section {
  background: var(--white);
  padding-top: 40px;

  padding-bottom: 80px;
}

.all-photogallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.photo-gallery-section-mobile {
  display: none;
}

.photo-gallery-section-nest-hub {
  display: none;
}



.Interior-photogallery-click-button.active {
  background-color: var(--brand-color); /* Highlight color for active category */
  color: var(--white);
}

.Interior-photogallery-click-button {
  transition: all 0.3s ease; /* Adjust duration and easing function */
}

/* photo-gallery-section */

/* vedio-page */

.vedio-page-all-img {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.backgr-play-icon {
  position: absolute;
}

.play-vedio-icon {
  color: var(--white);
  font-size: 60px;
}

/* vedio-page-complete */

.Get-In-Touch-form-section {
  background: var(--light-steal-color);
  padding-top: 80px;
  padding-bottom: 80px;
  background-position: center;
  background-size: cover;
}

.Get-in-Touch-form-img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.Get-In-Touch-topics-form-part {
  padding-top: 10px;
  padding-left: 50px;
}

.Get-In-Touch-topics-form {
  color: var(--black);
  font-family: var(--Sacramento);
  font-size: clamp(1.25rem, 4vw, 42px);
  font-weight: 500;
  font-style: normal;
}

.Connect-with-Us-Anytime {
  color: var(--mid-gray);
  font-family: var(--lugfa-light);
  font-size: clamp(0.875rem, 2vw, 19px);
  font-weight: 400;
  font-style: normal;
}

.fill-your-name {
  border: 0;
  border-radius: 0;
  height: 55px;
  width: 100%;
}

.fill-your-number {
  border-radius: 0;
  height: 55px;
  width: 100%;
  border: 0;
}

.fill-your-name-form {
  padding: 10px;
  margin: 0;
}

.fill-email-address-row {
  border: 0;
  padding: 10px;
}

.fill-email-address {
  border-radius: 0;
  border: 0;
  height: 55px;
}

.messege-form {
  height: 200px;
  border: 0;
  padding-top: 15px;
  padding-left: 15px;
}

.messege-form-box {
  border: 0;
  padding-top: 12px;
}

.send-message-button {
  background: var(--steal-blue);
  color: var(--white);
  font-family: var(--lugfa-regular);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 20px;
  border-radius: 10px;
}

/* 
Get-In-Touch-form-section */

.contact-page-information-section {
  background: var(--white);
  padding-top: 60px;
  padding-bottom: 60px;
}

.location-information-box {
  background: var(--light-steal-color);
  padding-top: 30px;
  padding-bottom: 30px;

  height: 327px;
  text-align: center;
}

.location-information-icon-box {
  width: 100px;
  height: 100px;
  text-align: center;
  border-radius: 50%;
  background: var(--second-shade-blue);
  display: inline-block;
  justify-content: center;
  padding-top: 10px;
}

.location-information-icon {
  font-size: 50px;
  color: var(--black);
}

.our-location-information {
  font-family: var(--lugfa-medium);
  text-align: center;
  font-weight: 500;
  font-style: normal;
  color: var(--black);
  font-size: clamp(1rem, 2vw, 22px);
  padding-top: 30px;
}

.The-Queen-Walk-para {
  color: var(--mid-gray);
  font-family: var(--lugfa-regular);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding-top: 20px;
}

.The-Queen-Walk-para-other {
  color: var(--mid-gray);
  font-family: var(--lugfa-regular);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  margin-top: -10px;
}

.padding-contact-information-col {
  padding: 20px;
}

/* contact-page-information-section */

/* contact-page */

.blog-section {
  padding-top: 20px;
  padding-bottom: 80px;
}

.blog-first-col-img {
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.blog-details-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  position: absolute;
  z-index: 5;
}

.blog-details {
  margin-bottom: -0px !important;
  width: 70%;
}

.blog-background-img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  object-position: 100% 100%;
  position: absolute;
  z-index: 1;

  left: 10px;
  top: 60px;
}

.blog-background-frame {
  width: 100%;
  height: 540px;
  position: relative;
  overflow: hidden;
}

.blog-background-frame::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../hotel-pics/Logos-20250101T071728Z-001/Logos/subtract_hotel.png")
    no-repeat center center;
  background-size: 100%;
  z-index: 2;
}

.Crafting-Exceptional-Guest-Experiences-date {
  color: var(--mid-gray);
  font-family: var(--lugfa-regular);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  padding-top: 20px;
  padding-left: 30px;
}

.Crafting-Exceptional-Guest-Experiences {
  font-family: var(--lugfa-medium);
  font-size: 22px;
  font-weight: 400;
  font-style: normal;
  color: var(--black);
  padding-left: 30px;
}

.read-more-button-Crafting {
  display: flex;
  color: var(--steal-blue);
  gap: 10px;
  align-items: center;
  padding-left: 30px;
  font-family: var(--lugfa-regular);
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  padding-top: 20px;
}

.arrow-icon-explore {
  padding-top: 2px;
  color: var(--steal-blue);
}

/* insight-page */
/* Exploring the Local Gems Around Our Hotel page started here */

.Content-without-backward-compatible-data-section {
  background-color: var(--light-steal-color);
  padding-top: 80px;
  padding-bottom: 80px;
}

.Content-without-backward-compatible-data-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px 10px 0 0;
}

.Content-without-backward-compatible-data-written-data {
  background: var(--white);
  padding-top: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
  border-radius: 0 0 10px 10px;
}

.peacefulqode-box-whole-box{
  display: flex;
  gap: 40px;
}

.peacefulqode-box {
  font-family: var(--lugfa-light);
  font-size: clamp(0.75rem, 2vw, 12px);
  color: var(--mid-gray);

  font-style: normal;
  display: flex;
  gap: 10px;
}

.long-established-fact {
  font-family: var(--lugfa-regular);
  font-size: 17px;
  color: var(--gray);

  font-style: normal;
  padding-top: 20px;
}

.Content-without-backward-compatible-data {
  color: var(--black);
  font-family: var(--lugfa-medium);
  font-size: clamp(1rem, 3vw, 24px);
  font-weight: 500;
  font-style: normal;
  padding-top: 40px;
}

.long-established-fact-content {
  font-family: var(--lugfa-regular);
  font-size: 17px;
  color: var(--gray);

  font-style: normal;
  padding-top: 20px;
  padding-bottom: 30px;
}

.long-established-fact-content-dat {
  font-family: var(--lugfa-regular);
  font-size: 17px;
  color: var(--gray);

  font-style: normal;
  padding-top: 30px;
  padding-bottom: 30px;
}

.Michal-Smart {
  color: var(--steal-blue);
  font-family: "Lora", serif;
  font-size: 20px;

  font-weight: 400;
  font-style: normal;
  padding-top: 10px;
}

.Michal-Smart-infor {
  border-left: 4px solid var(--steal-blue);
  padding-left: 20px;
  background: var(--light-steal-color);
  padding-top: 10px;
  padding-bottom: 10px;
}

.Economy-img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 305px;
  border-radius: 10px;
}

.Lorem-ipsum-dolor-para {
  color: var(--gray);
  font-family: var(--lugfa-regular);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  padding-top: 5px;
}

.tick-mark {
  color: var(--steal-blue);
  font-size: 25px;
}

.Lorem-ipsum-dolor-box {
  display: flex;
  gap: 20px;
  padding-top: 30px;
}

.Vivamus-eu-ligula {
  display: flex;
  gap: 20px;
}

.blog-section-luxury {
  padding-top: 80px;
  padding-bottom: 80px;
}

.Our-Exquisite-Rooms-other {
  color: var(--black);
  font-family: var(--Sacramento);
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 44px);
}

/* Content-without-backward-compatible-data-section */

/* tip-for-luxury */

.swimming-pool-page-second-section {
  background: var(--backgrond-color);
  padding-top: 80px;
  padding-bottom: 80px;
}

.children-swimming-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.Dive-into-relaxation {
  color: var(--gray);
  font-family: var(--lugfa-regular);
  font-size: clamp(1rem, 3vw, 20px);
  font-weight: 400;
  font-style: normal;
}

.children-swimming-written {
  padding-top: 30px;
  padding-left: 40px;
}

.Spacious-Pool-box {
  display: flex;
  gap: 20px;
  padding-top: 20px;
}

.tick-mark-icon {
  color: var(--steal-blue);
  font-size: 25px;
}

.Spacious-Pool {
  color: var(--gray);
  font-family: var(--lugfa-regular);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  padding-top: 5px;
}

.Luxurious-Poolside-Amenities-box {
  display: flex;
  gap: 20px;
}

.Make-Your-Stay-Memorable-section-swim {
  background: var(--light-steal-color);
  padding-top: 80px;
  padding-bottom: 80px;
}

/* swimming-pool-page-second-section */

/* swimming page */

/* Deluxe Rooms-page-started here */

.room-picture-section {
  background: var(--light-steal-color);
  padding-top: 80px;
  padding-bottom: 80px;
}

.room-img-deluxe {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.small-img-of-room-deluxe {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.small-img-of-room-deluxe-sec {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  margin-top: 10px;
  border-radius: 10px;
}

.deluxe-room-next-button::after {
  color: var(--black);

  display: flex;

  text-align: center;
  align-items: center;
  font-size: 20px;
}

.deluxe-room-next-button {
  width: 60px;
  height: 50px;
  background: var(--white);
  right: 0;
}

.deluxe-room-prev-button::after {
  color: var(--black);

  display: flex;

  text-align: center;
  align-items: center;
  font-size: 20px;
}

.deluxe-room-prev-button {
  width: 60px;
  height: 50px;
  background: var(--white);
  left: 0;
}

/* room-picture-section */

.About-Accommodation-section {
  background: var(--white);
  padding-top: 60px;
  padding-bottom: 70px;
}

.About-Accommodation {
  color: var(--black);
  font-size: 24px;
  font-family: var(--lugfa-medium);

  font-weight: 400;
  font-style: normal;
}

.About-Accommodation-paragraph {
  font-size: 18px;
  color: var(--gray);
  font-family: var(--lugfa-regular);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding-top: 20px;
  padding-bottom: 20px;
}

.About-Accommodation-Facilities {
  color: var(--black);
  font-size: 24px;
  font-family: var(--lugfa-medium);

  font-weight: 400;
  font-style: normal;
  padding-top: 20px;
  padding-bottom: 10px;
}

.king-size-bed-facilities {
  font-size: 18px;
  color: var(--mid-gray);
  font-family: var(--lugfa-regular);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding: 13px;
}

.bed-icon-deluxe {
  object-fit: cover;
  object-position: center;
  color: var(--text-color-gray);
  width: 30px;
  height: 30px;
  margin-top: 10px;
}

.truck-icon {
  color: var(--mid-gray);
  font-size: 30px;
}

.facilities-bed-size-view {
  display: flex;

  width: 100%;
  height: 60px;
  background: var(--terxt-color-white);
  padding-top: 5px;
  padding-left: 40px;

  border: 1px solid var(--second-shade-blue);
  border-radius: 10px;
}

.Reservation-part {
  background: var(--light-steal-color);
 padding-top: 40px;
 padding-left: 40px;
 padding-right: 40px;
 padding-bottom: 0px;
  height: 100%;
  box-shadow: 10px 10px rgba(48, 49, 50, 0.1);
  border-radius: 10px;
}

.Reservation-topic {
  font-size: 42px;
  color: var(--black);
  font-family: var(--Sacramento);

  font-weight: 500;
  font-style: normal;
}

.dollar-three-two-zero {
  font-size: 44px;
  color: var(--black);
  font-family: var(--lugfa-medium);

  font-weight: 500;
  font-style: normal;
}

.per-night-reservation {
  color: var(--mid-gray);
  font-family: var(--lugfa-medium);
  font-size: 22px;
  font-weight: 400;
  font-style: normal;
  padding-top: 15px;
}

.Reservation-book-now-button {
  background-color: var(--steal-blue);
  color: var(--white);
  text-align: center;
  font-family: var(--lugfa-regular);

  font-weight: 16px;
  font-style: normal;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 40px;
  border-radius: 10px;
}

/* Add your custom styles here if needed */
.calender-for-checkin {
  border: 1px solid var(--gray);
  display: flex;
  justify-content: space-between;
}

.rservbox {
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--gray);
  padding: 15px;
  margin: 15px 0;
  border-radius: 10px;
  color: var(--mid-gray);
}

.rservbox .rbox span {
  cursor: pointer;
}

.rservbox .rbox p {
  margin: 0;
}

.rservbox .rbox input {
  visibility: hidden;
  width: 0;
  height: 0;
}

.down-arrow {
  font-size: 10px;
}

/* reservbox */

.number-of-room-booking {
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--mid-gray) !important;
  text-align: center;
  padding-left: 15px;
  padding-right: 5px;
  padding-top: 5px;

  border-radius: 10px;
  color: var(--mid-gray);
}

.number-of-room {
  margin-top: 7px;
}

.quantity-input {
  display: inline-flex;
  align-items: center;
}

.quantity-input .qty {
  width: 30px;
  height: 30px;
  text-align: center;
  font-size: 16px;
  border: none;
  outline: none;
  color: var(--mid-gray);
}

.quantity-input button {
  background: transparent;
  border: 0;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--mid-gray);
}

.quantity-input button:focus {
  outline: none;
}

.qty {
  background: transparent;
}

/* number-of-room-booking */

.Extra-Services {
  font-size: 24px;
  color: var(--black);
  font-family: var(--lugfa-medium);

  font-weight: 500;
  font-style: normal;
  padding-top: 30px;
  padding-bottom: 20px;
}

.quantity-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;

  padding-right: 10px;
  padding-left: 10px;
}

.well-quantity-input {
  display: flex;
  align-items: center;
}

.minus-plus-person-box {
  display: flex;
  align-items: center;
  color: var(--mid-gray);

  font-size: 22px;
  margin-top: 10px;
}

.minus-plus-person-box #qty {
  color: var(--mid-gray);

  font-size: 18px;

  padding-left: 10px;
  width: 50px;
}

.minus-plus-person-box .minus,
.minus-plus-person-box .plus {
  font-size: 22px; /* Increase the size as needed */
  width: 20px; /* Adjust button width */
  height: 20px; /* Adjust button height */
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 3px;
  color: var(--mid-gray);
}

.well-quantity-input input {
  width: 30px;
  text-align: center;

  background-color: transparent;
  border: 0;
}

.well-quantity-input button {
  background-color: transparent;

  border: 2px solid var(--mid-gray);
  text-align: center;
  width: 16px;
  height: 16px;
  font-size: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.controls {
  display: flex;
  align-items: center;
}

.control {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.control input {
  margin-right: 15px;
  transform: scale(2);
}

.controls input[type="checkbox"] {
  position: relative;
  cursor: pointer;
  appearance: none; /* Remove default styles */
  -webkit-appearance: none; /* For Safari */
  -moz-appearance: none; /* For Firefox */

  width: 15px;
  height: 15px;
  background-color: transparent !important; /* Green color when checked */

  border: 1px solid var(--mid-gray) !important;
}

.controls input[type="checkbox"]:checked {
  background-color: transparent !important; /* Green color when checked */

  border: 1px solid var(--mid-gray) !important;
  border-radius: 2px;
}

.controls input[type="checkbox"]:checked::after {
  content: "\f00c"; /* Checkmark symbol */
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steal-blue);
  font-size: 10px;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
}

.Wellness-Spa {
  font-family: var(--lugfa-regular);
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  color: var(--mid-gray);
  font-size: clamp(0.875rem, 2vw, 16px);
  margin-top: 10px;
}

.person-number-box {
  display: flex;
  align-items: baseline;
}

.per-person-resv {
  color: var(--mid-gray);
  font-family: var(--lugfa-medium);
  font-size: clamp(0.75rem, 2vw, 14px);
  margin-left: -10px;
}

.complete-box-person-number {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding-right: 10px;
}

.straight-line {
  color: var(--mid-gray);
}

.person-number {
  font-family: var(--lugfa-medium);
  font-optical-sizing: auto;
  font-size: clamp(1rem, 2vw, 22px);
  font-weight: 100;
  font-style: normal;
  color: var(--gray);
  padding-right: 10px;
  padding-top: 20px;
}

.CONTINUE-book-now-button {
  background: var(--steal-blue);
  color: var(--white);
  font-size: 16px;
  font-family: var(--lugfa-regular);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: block;
  font-weight: 400;
  font-style: normal;

  margin-top: 15px;
  border-radius: 10px;
}

/* About-Accommodation-section */

/* deluxe-page */

/* Make Your Reservation page */
.Reservation-detail-section {
  background: var(--white);
  padding-top: 80px;
  padding-bottom: 80px;
}

.Reservation-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.Reservation-Details {
  color: var(--black);
  font-family: var(--Sacramento);
  font-size: clamp(1.5rem, 4vw, 45px);
  font-weight: 500;
  font-style: normal;
  padding-top: 20px;
}

.padding-fprm-reservation-detail {
  padding-left: 40px;
}

.padding-fprm-reservation-detail-age {
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 10px;
  padding-top: 10px;
}

.Extra-Services {
  font-size: clamp(1rem, 2vw, 22px);
  color: var(--black);
  font-family: var(--lugfa-medium);

  font-weight: 500;
  font-style: normal;
  padding-top: 30px;
  padding-bottom: 20px;
}

.room-type {
  color: var(--mid-gray);
  border-radius: 10px;
  border: 1px solid var(--mid-gray);
  padding-top: 15px;
  padding-bottom: 15px;
}

.room-type-click-down {
  color: var(--mid-gray);
}

/* Complete Your Reservation page */

.billing-section {
  background-color: var(--white);
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.bill {
  background-color: var(--light-steal-color);
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 5px;
  position: sticky;
  top: 0;
  height: 630px;
  z-index: 100000;
  box-shadow: 5px 5px 10px #dce7f5;
}

.checkin-date-check {
  padding-top: 15px;

  color: var(--mid-gray);
  font-size: 18px;
  font-family: var(--lugfa-regular);

  font-weight: 400;
  font-style: normal;
}

.checkin-date {
  color: var(--black);
  font-size: 22px;
  font-family: var(--lugfa-medium);

  font-weight: 400;
  font-style: normal;
}

.billing-of-deluxe-room-total {
  padding-top: 20px;
  display: flex;

  justify-content: space-between;
  padding-bottom: 2px;
}

.billing-of-deluxe-room {
  color: var(--black);
  font-family: var(--lugfa-regular);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
}

.cost-of-deluxe-room {
  color: var(--steal-blue);
  font-family: var(--lugfa-regular);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
}

.line-of-total {
  border-bottom: 2px solid var(--steal-blue);
  opacity: 0.1;
  width: 100%;
}

.billing-of-total-number-adults {
  padding-top: 10px;
  display: flex;

  justify-content: space-between;
  padding-bottom: 10px;
}

.total-cost-of-service {
  display: flex;
  justify-content: space-between;
}

.total-bill {
  color: var(---black);
  font-family: var(--lugfa-regular);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
}

.total-cost {
  color: var(--black);
  font-size: 18px;

  font-family: var(--lugfa-medium);

  font-weight: 600;
  font-style: normal;
}

.form-for-complete-reservation {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 40px;
}

.Fill-Your-Information {
  color: var(---black);
  font-size: 24px;
  font-family: var(--lugfa-medium);
  padding-bottom: 15px;
  font-weight: 400;
  font-style: normal;
}

.form-border-zero {
  height: 65px;
  border-radius: 0;
  border: 1px solid var(--mid-gray);
  border-radius: 10px;
}

.email-address-width {
  width: 100% !important;
  border-radius: 0;
  height: 65px;
  border: 1px solid var(--mid-gray);
  border-radius: 10px;
}

.Choose-Payment-Method {
  color: var(---black);
  font-size: 24px;
  font-family: var(--lugfa-medium);

  font-weight: 400;
  font-style: normal;
  padding-top: 40px;
}

.changein-form-for-padding {
  margin-left: 15px;
  padding-top: 10px;
}

.Office-Payment {
  color: var(--mid-gray);
  font-family: var(--lugfa-regular);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  margin-top: 2px;
  padding-left: 10px;
}

.change-in-form-check-input {
  border: 1px solid var(--steal-blue) !important;
  width: 22px;
  height: 22px;
  background-color: transparent;
}

.change-in-form-check-input:checked {
  background: var(--brand-color) !important;
}

.agreed-check {
  color: var(--mid-gray);
  font-family: var(--lugfa-regular);
  font-size: clamp(1rem, 3vw, 21px);
  font-weight: 400;
  font-style: normal;
}

.terms-and-conditon {
  color: var(--steal-blue);
  font-family: var(--lugfa-medium);
  font-size: clamp(1rem, 3vw, 21px);
  font-weight: 400;
  font-style: normal;
}

.for-check-agred-padding {
  padding-left: 30px;
  padding-top: 10px;
}

.border-of-form-check {
  border: 1px solid var(--mid-gray);
  border-radius: 0px !important;
  width: 19px;
  height: 19px;
  background-color: transparent;
  border-radius: 10px;
}

.padding-for-agred-phase {
  display: flex;
  padding-left: 10px;
  margin-top: 2px;
}

.COMPLETE-BOOKING {
  color: var(--white);
  font-family: var(--lugfa-regular);
  font-size: clamp(1rem, 2.5vw, 18px);
  font-weight: 500;
  font-style: normal;
  background: var(--steal-blue);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 50px;
  border-radius: 10px;
}

/* billing-section */

.change-in-form-check-input:checked {
  background: var(--steal-blue) !important; /* Background color when checked */
  border: 4px solid var(--white) !important;
  outline: 1px solid var(--steal-blue) !important;
  /* Optional: You can scale the element when checked */
  transform: scale(0.8); /* This scales the input down to 80% */
  /* Optional: Add padding inside the checked input */
  padding: 5px; /* Optional: rounded corners for the border */
}

.change-in-form-check-input:focus {
  box-shadow: none !important;
}

/* complete-your-reservation-page */

.testiomials-section-of-testiomials-page {
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.box-for-review-client-box {
  background: var(--white);
  border: 2px solid --black;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
}

/* .Testimonials-page */

/* make-your-reservation-page */

@media screen and (max-width: 480px) {
  /* mobile */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  a {
    text-decoration: none;
  }

  .for-padding-home-title {
    margin-left: -70px !important;
  }

  /* header part */

  .margin-for-mobile-col {
    margin-top: 20px;
  }

  .parent-container{
    height: 700px;
  }

  /* booking-registration-container-section */
  .background-img-welcome-paragrah{
    height: 500px;
  }

  .Welcome-to-Grand-paragraph {
    margin-top: 50px;
  
  }

  /* <!-- background-img-welcome-paragrah --> */

  .for-desktop {
    display: none;
  }

  .for-mobile {
    display: block;
  }

  .img-room-mobile {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    position: relative;
  }

  .next-button-for-mobile,
  .prev-button-for-mobile {
    top: 40%;

    color: var(--black);
  }

  .prev-button-for-mobile::after {
    font-size: 30px;
  }

  .next-button-for-mobile::after {
    font-size: 30px;
  }
  /* mySwiper-for-mobile */

  /* <!-- swipper-room-img-section --> */

  .Exceptional-Facilities-section{
    padding-top: 0;
    padding-bottom: 20px;
  }
  

  .img-couple-enjoy{
    height: 400px !important;
  }

  .tag-img {
    display: none;
  }

  .img-couple-enjoy::before {
    background-size: cover; /* Ensure the background fits well on small screens */
    background-position: center;
  }

  .couple-img-frame {
    height: 330px !important; /* Reduce the height of the image */
    width: 98%;
    margin-top: -20px !important;
   
  }

  .number-rate {
    font-size: 15px !important;
  }

  .Customer-Ratings {
    font-size: 10px !important;
  }

  .star-color {
    font-size: 10px !important;
  }

  .star-color-white {
    font-size: 10px !important;
  }

  .rating-box-of-clients {
margin-top :-15px !important;
margin-left: -10px;
  }

  .for-paading-whole-col {
    margin-left: -45px;
  }

  .padding-from-top{
    padding-top: 0;
  }


  .slick-prev{
    left: 0;

  }

  .slick-next{
    right: 0;
  }
  /* Exceptional-Facilities-section */

  .mySwiper-facilities {
    display: none;
  }

  .mySwiper-facilities-mobile {
    display: block;
  }

  .Our-Premier-Facilities-section{
    padding-top: 20px;
  }

  /* Our-Premier-Facilities-section */

  .Highlights-from-Past-Events-section {
    margin-top: 200px !important;
  }

  /* Highlights-from-Past-Events-section */

  .Offers-DEALS-section {
    margin-top: 0px;
  }

  /* Offers-DEALS-section */

  .Experience-Best-Hospitality-background-img {
    width: 100%;
    height: 1050px;
  }

  .background-color-img {
    width: 100%;
    height: 1050px;
  }

  .vedio-player-box {
    margin-left: -30px;
  }

  .Experience-Best-Hospitality-title{
    padding-top: 40px;
    text-align: start;
  }

  .vedio-player-img-of-hotel-box{
 margin-top: 40px;
  }

  /* Experience-Best-Hospitality-section */

  .backgrd-img-Exclusive-Offers-Updates {
    height: 980px !important ;
  }

  .Exclusive-Offers-Updates-Subscribe-Newsletter-col {
    margin-left: -90px;
  }

  .Exclusive-Offers-Updates-Subscribe-Newsletter-topic {
    font-size: 35px !important;
  }
  /* Exclusive-Offers-Updates-Newsletter-section */

  .splashhhh-img-frame {
    height: 297px !important;
    /* Reduce height for smaller screens */
  }

  .splashhhh-img {
    width: 97% !important;
  
  }
  .splashhhh-img-frame::before {
    background-size: 100% !important; /* Adjusts splash overlay scaling */
    height: 100% !important;
  }

  .Exclusive-Offers-Updates-Subscribe-Newsletter-col{
   margin-top: -60px;
  }

  .Exclusive-Offers-Updates-Subscribe-Newsletter-topic{
    font-size: 1.75rem!important;
  }

  /* Exclusive-Offers-Updates-Newsletter-section */
  .Get-Up-To-offer {
    font-size: 50px;
  }

  /* Get-Up-To-offer  */

  .footer-img {
    height: 1450px;
  }

  .background-color-of-footer {
    height: 1450px;
  }

  .Quick-links-div {
    padding-top: 40px;
  }

  .Copyright-comp {
 padding-left: 0;
 margin-left: -60px;
 padding-top: 20px;
  }

  .Get-in-Touch {
    margin-left: -30px !important;
  }

  .underline-cursor {
    margin-left: 40px;
  }

  .location-intro {
    margin-left: -40px;
  }

  .company-email {
    margin-left: -40px;
  }

  .location-direction {
    margin-left: -50px;
  }

  .border-line-cursor-for-location {
    margin-left: 20px;
  }

  .get-direction-box {
    margin-left: -10px;
  }

  .border-get-direction {
    margin-left: -10px;
  }
  /* footer-section */

  /* about-who-we-are-page */

 .Located-at-seaside-box-res{
 
  margin-top: 20px;
 }

 .Located-at-seaside{
  padding-left: 0;
 }
  .your-top-priority-logo {
    display: none;
  }

  .Indulge-in-the-Luxury-2nd-part {
    width: 100%;
  }

  .margin-couple-mb {
    margin-top: 40px;
  }

  .A-place-that-offers {
    font-size: 14px;
  }

  .rating-box-of-clients {
    margin-top: -130px;
  }

  .couple-img {
    height: 300px;
  }

  .couple-img-frame {
    width: 99%;
    height: 100%;

    top: 50px !important;
    left: 2px;
  }
  /* Indulge-in-the-Luxury-You-Deserve-section */

  .Our-Purpose-and-Principles-img {
    height: 300px;
  }

  /* Our-Purpose-and-Principles-section */

  .Make-Your-Stay-Memorable-section {
    margin-top: 300px;
  }

  .margin-for-memorable-col {
    margin-top: 20px;
  }

  .Copyright-comp {
    margin-top: 10px;
  }

  .Our-Purpose-and-Principles-box{
    padding-left: 0;
  }

  /* Make-Your-Stay-Memorable-section */

  .A-World-of-Flavors-Awaits-part {
    margin-left: -30px;
    padding-left: 10px;
    padding-bottom: 0;

  }

  .A-World-of-Flavors-Awaits-para{
    margin-top: -20px;
  }



  /* resturant-page */
  .Restaurant-Menu-section {
    display: none;
  }

  .Restaurant-Menu-section-for-mobile {
    display: block;
  }

  .Breakfast-menu-box {
    padding-bottom: 5px;
    background: var(--light-steal-color);
  }

  .Breakfast-menu-icon {
    color: var(--terxt-color-white);
    font-size: 30px;
    text-align: center;
    padding-left: 20px;
    padding-top: 10px;
  }

  .Breakfast-menu-box:hover {
    background: var(--steal-blue);
  }

  .breakfast-title {
    font-family: var(--lugfa-medium);
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    padding-top: 10px;
    text-align: center;
    color: var(--mid-gray);
  }

  .Breakfast-menu-box:hover .breakfast-title {
    color: var(--white);
  }

  .Breakfast-menu-icon {
    filter: grayscale(100%);
  }

  .Breakfast-menu-icon {
    filter: grayscale(100%) brightness(40%);
  }

  .Breakfast-menu-box:hover .Breakfast-menu-icon {
    filter: brightness(0) invert(1); /* Turns the icon white */
  }

  .Appetizers-menu-box {
    padding-bottom: 5px;
    background: var(--light-steal-color);
  }

  .Appetizers-menu-icon {
    color: var(--terxt-color-white);

    text-align: center;
    padding-left: 25px;
    padding-top: 10px;
  }

  .Appetizers-menu-box:hover {
    background: var(--steal-blue);
  }

  .Appetizers-menu-box:hover .breakfast-title {
    color: var(--white);
  }

  .Breakfast-menu-box:hover .breakfast-title {
    color: var(--white);
  }

  .Appetizers-menu-icon {
    filter: grayscale(100%);
  }

  .Appetizers-menu-icon {
    filter: grayscale(100%) brightness(40%);
  }

  .Appetizers-menu-box:hover .Appetizers-menu-icon {
    filter: brightness(0) invert(1); /* Turns the icon white */
  }



.Breakfast-menu-box.active {
  background-color: var(--steal-blue);
}

.Breakfast-menu-box.active .breakfast-title{
  color: var(--white);
}


.Breakfast-menu-box.active .Breakfast-menu-icon{
  filter: brightness(0) invert(1); /* Turns the icon white */
}



.Appetizers-menu-box.active {
  background-color: var(--steal-blue);
}

.Appetizers-menu-box.active .Appetizers-menu-icon{
  color: var(--white);
}


.Appetizers-menu-box.active .Breakfast-menu-icon{
  filter: brightness(0) invert(1); /* Turns the icon white */
}




  /* hall-page   */

  .TOTAL-ACCOMMODATIONS-box-whole-part {
    margin-left: -40px;
  }

  /* gallery-photo-page */

  .photo-gallery-section {
    display: none;
  }

  .photo-gallery-section-mobile {
    display: block !important;
  }

 

  .Interior-photogallery-click-button-mobile {
    height: 30px;
    text-align: center;

    color: var(--gray);
    border: 1px solid var(--gray);
    border-radius: 10px;
  }

  .all-photogallery-word-mobile-repre {
    display: inline-block;
    text-align: center;

    color: var(--gray);

    font-family: var(--lugfa-regular);
    font-size: 14px;
    font: weight 400px;
    font-style: normal;
  }

  .swimming-pool-photogallery-click-button-mobile {
    width: 80px;
    height: 35px;
    border: 1px solid var(--gray);
  }

  .Interior-photogallery-click-button-mobile:hover {
    background: var(--brand-color) !important;
  }
  .Interior-photogallery-click-button-mobile:hover
    .all-photogallery-word-mobile-repre {
    color: var(--white);
  }

  .swimming-pool-photogallery-click-button-mobile:hover {
    background: var(--brand-color) !important;
    color: var(--white) !important;
  }

  .background-swipper-photo-gallery {
    background: var(--white);
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .photo-gallery-section-nest-hub {
    display: none !important;
  }

  .all-photogallery-word-mobile {
    font-size: 14px;
    padding-top: 10px;
  }

  .photo-gallery-section-nest-hub {
    display: none;
  }

  .Interior-photogallery-click-button-mobile.active {
    background-color: var(--brand-color); /* Highlight color for active category */
    color: var(--white);
  }
  
  .Interior-photogallery-click-button-mobile {
    transition: all 0.3s ease; /* Adjust duration and easing function */
  }
  
  /* photo-gallery-section */

  /* deluxe-page */

  .Reservation-topic {
    font-size: 25px;
  }

  .dollar-three-two-zero {
    font-size: 25px;
  }

  .per-night-reservation {
    font-size: 15px;
    display: flex;
    margin-top: -6px;
  }
  .margin-for-mb {
    margin-top: 10px;
  }

  .Reservation-part {
    width: 100%;
    margin-top: 40px;
  }

 

 .Reservation-part{
  padding: 0;
  width: 100%;
  padding-top: 10px;
  width: 100%;
 }


 .form-for-complete-reservation{
  margin-top: 40px;
  width: 100%;
  padding: 0;
 }

 .peacefulqode-box-whole-box{
  gap: 20px;
 }
 
 .margin-top-negative{
  margin-top: -50px;

 }
  /* insight-page */
  .blog-background-img {
    min-height: 52vh;
    background-size: cover;
    background-position: center;
    margin-top: -27px;
  }

  .padding-fprm-reservation-detail {
    margin-left: -40px;
  }

  .Exploring-the-Local-res {
    font-size: 30px;
  }

  .home-who-we-are-box {
    margin-left: 40px;
  }

  .padding-mobile-for-from {
    margin-top: 20px;
  }

  .Get-In-Touch-topics-form-part-res {
    margin-left: -50px;
  }

.children-swimming-written{
  padding-left: 0;
}

}

@media (max-width: 1024px) {
  /* tab */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  a {
    text-decoration: none;
  }

  .for-padding-home-title {
    margin-left: -90px;
  }

  .for-padding-about-title {
    margin-left: -10px;
  }

  .book-now-link-header-part {
    font-size: 10px !important;
  }

  /* style for header part */

  .book-now-link-for-registration-form {
    font-size: 13px;
  }

  .check-in-title {
    font-size: 11px;
  }

  .room-input {
    width: 50px;
  }

  .book-now-link-for-registration-form {
    font-size: 11px;
  }

  /* booking-registration-container-section */

  .review-of-client-second {
    font-size: 17px;
  }

  .box-for-review-client {
    height: 400px;
  }

  .review-of-client {
    font-size: 15px;
  }

  .review-of-client-onther {
    padding-bottom: 65px;
  }

  .rating-box-of-clients {
    top: -20px !important;
    left: 20px !important;
  }

  .star-color {
    font-size: 14px;
  }

  .star-color-white {
    font-size: 14px;
  }

  .number-rate {
    font-size: 20px;
  }

  .Customer-Ratings {
    font-size: 14px;
  }

  .tag-img {
    right: 20px !important;
    z-index: 100 !important;
    top: 130px;
  }

  .vedio-player-box {
    margin-left: -30px;
  }

  .img-couple-enjoy {
    height: 500px; /* Reduce height for smaller screens */
  }

  .img-couple-enjoy::before {
    background-size: 100%; /* Adjust background size to fit properly */
    background-position: 100% 100%;
  }

  .couple-img-frame {
    height: 430px; /* Adjust image height for smaller screens */
    margin-top: 100px; /* Adjust positioning */
    left: 0px; /* Adjust positioning */
  }

  /* Exceptional-Facilities-section */

  .backgrd-img-Exclusive-Offers-Updates {
    height: 840px;
    padding-top: 40px;
  }

  .splashhhh-img-frame {
    height: 300px; /* Adjust height for medium-sized screens */
  }

  .splashhhh-img {
    width: 98%;
    height: 440px !important;
    margin-top: -10px;
  }

  .splashhhh-img-frame::before {
    background-size: 100%; /* Scale the overlay logo to fit better */
    height: 450px;
  }

  /* Exclusive-Offers-.your-top-priority-logo */
  /* home-page-complete */
  .your-top-priority-logo {
    display: none;
  }

  /* about-page-who-we-are */

  .margin-couple-mb {
    display: flex;
    align-items: flex-end;
  }

  .couple-img {
    height: 400px;
  }

  .Stationery {
    font-size: 13px;
  }

  .Water-Bottles {
    font-size: 13px;
  }

  /* photo-page */

  .photo-gallery-section-mobile {
    display: none;
  }

  .photo-gallery-section {
    display: none;
  }

  .photo-gallery-section-nest-hub {
    display: block;
  }

  .all-photogallery-word-nesthub {
    padding: 20px;
    text-align: center;
    background: var(--brand-color);
    color: var(--white);
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--lugfa-regular);
  }

  .all-photogallery-word-nest-hub-inter {
    padding: 20px;
    text-align: center;
    border: 1px solid var(--gray);
    color: var(--gray);
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--lugfa-regular);
  }

  .all-photogallery-word-nest-hub-inter:hover {
    background: var(--brand-color);
    color: var(--white);
  }
  /* .Testimonials-page */
  .box-for-review-client-box {
    height: 400px;
  }

  /* deluxe-page */
  .Upgrading-your-bandwidth-is-easy-and-it-can-be-para {
    font-size: 13px;
  }

  .blog-background-img {
    height: 290px !important;
    top: 125px !important;
    width: 95% !important;
  }

  .Crafting-Exceptional-Guest-Experiences {
    font-size: 15px !important;
  }

  .blog-details {
    margin-bottom: 42px !important;
  }
}

@media (max-width: 1280px) {
  .container {
    max-width: 1400px;
  }

  .img-couple-enjoy {
    width: 100%;
    height: 633px;
    position: relative;
    overflow: hidden;
  }

  .img-couple-enjoy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../hotel-pics/Logos-20250101T071728Z-001/Logos/couple-img-frame.png")
      no-repeat center center;
    background-size: 100%;
    z-index: 2;
  }

  .couple-img-frame {
    width: 99%;
    height: 94%;
    object-fit: cover;
    object-position: 100% 100%;
    position: absolute;
    z-index: 1;
    top: 20px;
    left: 2px;
  }

  .rating-box-of-clients {
    left: 22px;
    top: -22px;
  }
  /* Exceptional-Facilities-section */

  .splashhhh-img-frame {
    height: 550px; /* Adjust height for medium-sized screens */
  }

  .splashhhh-img {
    top: 15px; /* Adjust the top position */
    left: 8px; /* Adjust the left position */
  }

  .splashhhh-img-frame::before {
    background-size: cover; /* Scale the overlay logo to fit better */
  }

  /* Exclusive-Offers-Updates-Newsletter-section */

  .blog-background-img {
    height: 340px;
    top: 100px;
    width: 97%;
  }
}
