* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

:root {
  --primary-color: rgb(0, 132, 125);
  --white: #ffffff;
  --red: rgb(246, 0, 0);
  --star-color: rgb(255, 187, 0);
  --dark-green-shade: rgb(3, 12, 11);
  --green-light-shade: rgb(182, 194, 192);
  --white-shade: #fcfcfc;
  --darkest-green-shade: #0a1514;
  --gray: #b6c2c0;
  --pictures-box-color: #11201f;
  --white-shade: #fcfcfc;
  --black: #000000;
}

:root {
  --lora-regular: lora-regular;
  --lora-mediu: lora-mediu;
  --lora-semi-bold: lora-semi-bold;
  --lora-bold: lora-bold;
  --kiona: kiona;
  --lucida-writing: lucida-writing;
}

@font-face {
  font-family: "lucida-writing"; /* Name for the font */
  src: url("../hotel-pics/writing/Lucida-Handwriting/lucidahandwriting_italic.ttf");
}

@font-face {
  font-family: "lora-regular"; /* Name for the font */
  src: url("../hotel-pics/lora/static/Lora-Regular.ttf");
}

@font-face {
  font-family: "lora-medium"; /* Name for the font */
  src: url("../hotel-pics/lora/static/Lora-Medium.ttf");
}

@font-face {
  font-family: "lora-semi-bold"; /* Name for the font */
  src: url("../hotel-pics/lora/static/Lora-SemiBold.ttf");
}

@font-face {
  font-family: "lora-bold"; /* Name for the font */
  src: url("../hotel-pics/lora/static/Lora-Bold.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "kiona"; /* Name for the font */
  src: url("../hotel-pics/kiona/Kiona-Regular.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 Styling */
.header-section {
  background: rgba(17, 24, 48, 0.1); /* Semi-transparent background color */
  backdrop-filter: blur(10px); /* Apply a blur effect to the background */
  -webkit-backdrop-filter: blur(15px); /* Safari-specific blur effect */
  position: absolute; /* Positioning the header absolutely */
  width: 100%; /* Full width of the container */
  z-index: 99; /* Ensures the header is above other elements */
}

/* Logo Styling */
.hotel-navbar-logo-img {
  object-fit: cover; /* Ensures the logo image covers the container without distortion */
  object-position: center; /* Centers the image */
  width: 160px; /* Fixed width for the logo */
  height: 80px; /* Fixed height for the logo */
}

/* Home Title Styling */
.home-title {
  color: var(--white) !important; /* White text color */
  font-size: 16px; /* Font size */
  font-family: var(--lora-regular); /* Font family from CSS variable */
}

.for-padding-home-title {
  padding-left: 150px; /* Adds left padding to the home title */
}

/* Hover effect for the home title */
.home-title:hover {
  font-weight: bold; /* Makes the title bold on hover */
}

/* About Title Styling */
.about-title {
  color: var(--white) !important; /* White text color */
  font-size: 16px; /* Font size */
  font-family: var(--lora-regular); /* Font family from CSS variable */
}

/* Hover effect for the about title */
.about-title:hover {
  font-weight: bold; /* Makes the about title bold on hover */
}

/* Padding adjustment for the about title */
.for-padding-about-title {
  padding-left: 20px; /* Adds left padding to the about title */
}

/* Book Now Link Styling in Header */
.book-now-link-header-part {
  background: var(--primary-color); /* Background color from CSS variable */
  color: var(--white); /* White text color */
  font-size: 16px; /* Font size */
  font-family: var(--lora-regular); /* Font family from CSS variable */
  padding-top: 12px; /* Adds top padding */
  padding-bottom: 12px; /* Adds bottom padding */
  padding-left: 25px; /* Adds left padding */
  padding-right: 25px; /* Adds right padding */
}

.header-section .navbar-toggler-icon{

background-color: var(--white);

}

.header-section .navbar-toggler{

border: 1px solid white !important;

}




.header-section .dropdown-menu .dropdown-item:hover {
  background: var(--primary-color);
  color: var(--white);
}

.dropdown:hover .dropdown-menu {
  display: block !important;
}

/* Dropdown Styling in Navbar (if applicable) */
.header-section.nav-link .dropdown:hover {
  display: block; /* Shows dropdown on hover */
}

/* Home Page Header Image Styling */
.home-page-header-slide-img {
  width: 100%; /* Full width */
  height: 800px; /* Fixed height */
  background-position: center center; /* Centers the background image */
  background-size: cover; /* Ensures the image covers the whole area */
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.home-page-header-slide-img::before {
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  content: "";
  background-color: rgba(
    17,
    24,
    48,
    0.3
  ); /* Semi-transparent gray background */
  position: absolute; /* Positioned absolutely over the image */
  left: 0; /* Align to the left */
  top: 0; /* Align to the top */
  z-index: 0;
}

/* Main Heading Styling in the Gray Box */
.EXPERIENCE-MERIDIAN-ROYAL-HOSPITALITY {
  font-family: var(--kiona); /* Font from a CSS variable */
  font-size: clamp(30px, 5vw, 68px);
  font-weight: 400; /* Normal font weight */
  font-style: normal; /* Regular style */
  color: var(--white); /* White text color */
  text-align: center; /* Adds margin on top to move the text down */
  opacity: 1; /* Full opacity */
  z-index: 22; /* Ensures text is above the background */
  color: #fff;
  text-shadow: 2px 2px 10px rgb(237, 230, 230); /* Soft black shadow */
}

/* Discover More Button Styling */
.home-page-header-slide-img a {
  display: inline-flex; /* Makes it a flexible inline element */
  align-items: center; /* Align text and arrow properly */
  padding: 18px 25px; /* Combines padding shorthand */
  font-family: var(--lora-regular);
  font-size: clamp(12px, 3vw, 16px);
  color: var(--white);
  background: rgba(17, 24, 48, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--white);
  margin-top: 60px;
}

.home-page-header-slide-img a:hover {
  background: rgba(17, 24, 48, 0.2); /* Slightly darker on hover */
  border-color: rgba(255, 255, 255, 0.8);
}

/* Discover More Button Box Styling */
.discover-button {
  display: flex;
  justify-content: center;
  align-items: center; /* Centered alignment */
  z-index: 10;
}

/* Arrow Icon Styling */
.arrow-up {
  color: var(--white);
  padding-left: 7px;
  transition: transform 0.3s ease; /* Smooth hover animation */
}

.Discover-More:hover .arrow-up {
  transform: translateY(-2px); /* Moves the arrow slightly up on hover */
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  width: auto;
  left: auto;
  top:30%;
  right: 30px;
}

.backgroud-header-pagin .swiper-pagination-bullet {
  background-color: var(--white); /* Light white color for inactive bullets */
  width: 5px; /* Adjust size of the bullet */
  height: 80px; /* Adjust size of the bullet */
  display: block;
  border-radius: 20px;
  margin-top: 15px !important;
  margin-bottom: 15px !important;
  right: 0 !important;
  top: 0 !important;
}

/* <!-- header-background-section --> */

/* General Styling for the Registration Section */
.resitration-section {
  position: relative; /* Used for positioning child elements */
  margin-top: -70px; /* Moves the section up by 70px */
  z-index: 100; /* Makes sure this section stays above others */
}

.registration-container-background {
  background: var(--primary-color); /* Background color using a CSS variable */
  color: var(--white); /* White text color */
  padding: 40px 0; /* Vertical padding */
}

/* Wrapper for the check-in/check-out sections using flexbox */
.check-in-out-wrapper {
  display: flex; /* Flexbox layout for children */
}

/* Styling for the text content inside each check-in/check-out box */
.cbx-content {
  font-family: var(--lora-regular); /* Font-family from a variable */
  font-size: 14px; /* Font size */
  font-weight: 400; /* Normal weight */
  font-style: normal; /* Regular style */
}

/* Each check-in/check-out box setup */
.checkin-box {
  width: 20%; /* Set the width of each box */
  display: flex; /* Flexbox layout */
  justify-content: space-between; /* Space out elements */
  align-items: center; /* Align items vertically */
  position: relative; /* Necessary for the positioning of the divider line */
  padding: 0 50px; /* Horizontal padding */
}

/* Divider line between check-in/check-out boxes */
.checkin-box::after {
  content: ""; /* Empty content for the line */
  width: 1px; /* Width of the line */
  height: 50px; /* Height of the line */
  background-color: var(--white); /* Line color */
  position: absolute; /* Positioned absolutely */
  top: 50%; /* Vertically center the line */
  transform: translateY(-50%); /* Perfect vertical centering */
  right: 0; /* Place the line at the right end of the box */
}

/* Remove the divider line for the last check-in/check-out box */
.checkin-box:last-child::after {
  display: none;
}

/* Remove the divider line for the second-to-last check-in/check-out box */
.checkin-box:nth-last-child(2)::after {
  display: none;
}

/* Button inside the check-in/check-out box styling */
.checkin-box button {
  color: var(--terxt-color-white); /* White button text */
  background-color: transparent; /* Transparent background */
  border: none; /* No border */
  font-family: "Lora", serif; /* Lora font family */
  font-size: 18px; /* Font size */
  font-weight: 400; /* Normal weight */
  font-style: normal; /* Regular style */
}

/* Datepicker input styling */
.datepicker {
  width: 80px; /* Fixed width for the input field */
}

/* Calendar icon container */
.calender {
  padding-left: 10px; /* Left padding */
  font-size: 25px; /* Icon size */
}

/* Styling for the "Book Now" button */
.book-now-resgitser {
  font-family: var(--lora-regular); /* Font for the button */

  justify-content: center; /* Center content */
  display: inline-block; /* Inline-block for proper spacing */
  padding-top: 10px; /* Top padding */
  padding-bottom: 10px; /* Bottom padding */
  padding-left: 20px; /* Left padding */
  padding-right: 20px; /* Right padding */

  color: var(--white); /* White text color */
  border: 3px solid var(--white); /* White border */
}

.for-mobile-home {
  display: none;
}

.years-of-experience-section {
  background: var(--dark-green-shade);
  padding-top: 180px;
  padding-bottom: 120px;
  margin-top: -75px;
}

/* col-lg-4 1 satrt */

.border-box {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center; /* Center items horizontally */
  justify-content: center; /* Center items vertically */
  text-align: center; /* Ensure text is centered */
  padding-top: 30px;
}

/* Left Bracket */
.border-box::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 58%;
  width: 50px;
  height: 150px;
  border-left: 10px solid var(--primary-color);
  border-top: 10px solid var(--primary-color);
  border-bottom: 10px solid var(--primary-color);
  transform: translateY(-50%);
  opacity: 0.5;
}

/* Right Bracket */
.border-box::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 58%;
  width: 50px;
  height: 150px;
  border-right: 10px solid var(--primary-color);
  border-top: 10px solid var(--primary-color);
  border-bottom: 10px solid var(--primary-color);
  transform: translateY(-50%);
  opacity: 0.5;
}

/* Years Styling */
.years {
  color: var(--primary-color);
  font-size: 76px;
  font-family: var(--lora-bold);
}

/* Experience Title */
.years-of-experience-title {
  font-family: var(--lora-regular);
  font-size: 18px;
  color: var(--white);
  text-align: left;
}

/* col-lg-4 1 end */

/* col-lg-4 2 satrt */
.Creative-Solutions {
  color: var(--white);
  font-family: var(--lora-regular);
  font-size: clamp(25px, 5vw, 40px);
}

/* col-lg-4 2 end  */

.We-create-unforgettable {
  color: var(--green-light-shade);
  font-size: clamp(14px, 4vw, 19px);
  font-family: var(--lora-regular);
  padding-left: 20px;
}
/* We-create-unforgettable style */

.read-more-button-box {
  display: inline-block;
  background: var(--primary-color);

  margin-left: 20px;
  margin-top: 20px;

  padding-top: 12px;
  padding-bottom: 10px;
  padding-left: 25px;
  padding-right: 25px;
}

.read-nore-box {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: baseline;
}

.Read-More-button {
  color: var(--white-shade);
  font-family: var(--lora-regular);
  font-size: clamp(12px, 3vw, 16px);
}

.array {
  color: var(--white-shade);
  font-size: 16px;
}
/* years-of-experience-section */

.Find-Your-Ideal-Accommodation-section {
  background: var(--darkest-green-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}

.Find-Your-Ideal-Accommodation-topic {
  color: var(--white);
  font-family: var(--lora-mediu);
  font-size: clamp(16px, 5vw, 38px);
  text-align: center;
}

.Deluxe-Family-Room-pics {
  width: 100%;
  height: 274px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.discounted-rate-of-hotel-box {
  display: flex;
  justify-content: end;
}

.discounted-rate-of-hotel {
  display: inline-block;
  font-size: 12px;
  font-family: var(--lora-regular);
  font-weight: 500;
  font-style: normal;
  color: var(--white);
  background: var(--red);
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 7px;
  padding-bottom: 7px;
  position: relative;

  top: 20px;
  right: 15px;
}

.deluxe-family-room-intro {
  background-color: var(--terxt-color-white);
  position: relative;
  background-color: var(--pictures-box-color);
  padding: 20px;
}

.rating {
  display: flex;
  color: var(--star-color);
  font-size: 20px;
  gap: 10px;
}

.line-btn {
  color: var(--green-light-shade);
}

.Luxury-para {
  font-family: var(--lora-regular);
  font-weight: 400;
  color: var(--green-light-shade);
  font-style: normal;
  padding-top: 5px;
  font-size: 14px;
}

.deluxe-family {
  font-family: var(--lora-mediu);
  color: var(--white);
  font-style: normal;
  font-size: clamp(14px, 4vw, 24px);
}

.price {
  display: flex;
  gap: 5px;

  align-items: baseline;
}

.dollar-eighty-four {
  font-family: var(--lora-regular);
  color: var(--green-light-shade);
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}

.dicount-price {
  color: var(--white);
  font-family: var(--lora-mediu);
  font-style: normal;
  font-size: 20px;
}

.per-night {
  color: var(--green-light-shade);

  margin-left: -2px;
  font-family: var(--lora-mediu);
  font-size: 15px;
}

.bed-size {
  display: flex;
  justify-content: space-between;
  background: var(--tint-firs);
  padding-top: 20px;
  padding-bottom: 10px;
}

.size-of-bed {
  color: var(--green-light-shade);
  display: flex;
  gap: 12px;
}

.bed {
  width: 24px;
  height: 24px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0) invert(1); /* Makes the image appear white */
}

.number-bed {
  font-family: "Lora", serif;

  font-weight: 400;
  font-style: normal;

  font-size: 14px;
}

.number-of-people {
  color: var(--green-light-shade);
  display: flex;
  gap: 10px;
}

.mySwiper-find-ypur-ideal .swiper-scrollbar {
  height: 5px; /* Adjust the height of the scrollbar */
  background: rgba(0, 132, 125, 0.2); /* Light gray background for the track */
}

.mySwiper-find-ypur-ideal .swiper-scrollbar-drag {
  background-color: var(--primary-color); /* Blue color for the thumb */
  border-radius: 6px; /* Rounded corners for the thumb */
  opacity: 1;
  z-index: 255;
}

.mySwiper-find-ypur-ideal {
  position: relative; /* Make the container a reference point */
  padding-top: 40px;
  height: 650px;
}

.swipper-outer-part-button {
  position: relative; /* Make the container a reference point */
}

/* Position the next and prev buttons */
.swipper-outer-part-button .swiper-button-next,
.swipper-outer-part-button .swiper-button-prev {
  position: absolute;
  bottom: 10px; /* Adjust this to position them at the bottom */
  z-index: 10; /* Make sure buttons are above content */
  background-color: var(--pictures-box-color); /* Optional, for visibility */
  color: var(--white); /* Button color */

  width: 60px; /* Button size */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swipper-outer-part-button .swiper-button-next {
  right: -60px; /* Position next button on the right */
}

.swipper-outer-part-button .swiper-button-prev {
  left: -60px; /* Position prev button on the left */
}

.swipper-outer-part-button .swiper-button-next::after {
  font-size: 20px;
}

.swipper-outer-part-button .swiper-button-prev:after {
  font-size: 20px;
}

.mySwiper-find-your-ideal-mobile {
  display: none;
}

.View-More-box {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.View-More-link {
  color: var(--white);
  background: var(--primary-color);
  font-size: clamp(12px, 3vw, 16px);
  font-family: var(--lora-regular);
  display: inline-block;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 25px;
  padding-right: 25px;
  text-align: center;
}

.arrow-up {
  padding-left: 10px;
}

.mySwiper-find-ypur-ideal{
  display: block;
}

/* Find-Your-Ideal-Accommodation-section */

.Experience-the-Essence-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--dark-green-shade);
}

.background-box {
  width: 100%;
  min-height: 520px;
  position: relative;
}

.main-img {
  object-fit: cover;
  object-position: center;
  width: 80%;
  height: 520px;
  display: block;
}

.another-img {
  width: 250px;
  height: 290px;
  object-fit: cover;
  object-position: center;
}

.another-img-box {
  position: absolute;
  bottom: 0px;
  right: 40px;
  width: 250px; /* Match .another-img */
  height: 290px;
  border: 20px solid var(--dark-green-shade);
}

.We-deliver-exceptional-parag {
  color: var(--green-light-shade);
  font-family: var(--lora-regular);
  font-size: clamp(12px, 4vw, 18px);
  padding-top: 20px;
}

.High-quality-para-box {
  display: flex;
  align-items: center;

  gap: 15px;
  padding-top: 20px;
}

.tick-icon {
  object-fit: cover;
  object-position: center;
  width: 26px;
  height: 26px;
}

.High-quality-para {
  color: var(--green-light-shade);
  font-family: var(--lora-regular);
  font-size: clamp(12px, 4vw, 18px);
  padding-top: 2px;
}

.High-quality-para-boxs {
  display: flex;
  gap: 15px;
  padding-top: 15px;
}

.arrow-up-img {
  object-fit: cover;
  object-position: center;
  width: 16px;
  height: 16px;
}

.discover-more-button-main-box {
  display: inline-block;
  margin-top: 40px;
}

.discover-more-button-box {
  background: var(--primary-color);
  display: flex;
  gap: 10px;
  padding-top: 15px;
  padding-bottom: 13px;
  padding-left: 20px;
  padding-right: 20px;
  align-items: baseline;
}

.discover-more-title{
  font-size: clamp(5px, 3vw, 16px) !important;
  font-family: var(--lora-regular);
  color: var(--white-shade);
}
/* col-lg-6 */

.Experience-the-Essence-of-Luxury-box {
  padding-top: 20px;
  padding-left: 80px;
}

.Experience-the-Essence-of-Luxury-topic {
  color: var(--white);
  font-family: var(--lora-mediu);
  font-size: clamp(16px, 6vw, 48px);
}

/* col-lg-6 */
/* Experience-the-Essence-section */

.Amenities-That-Elevate-Your-Stay-section {
  background: var(--darkest-green-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}

.Amenities-That-Elevate-Your-Stay {
  font-size: clamp(20px, 5vw, 38px);
  color: var(--white);
  font-family: var(--lora-regular);
  text-align: center;
  padding-bottom: 40px;
}

.facilities-img {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 500px;
}

.dim-light-box {
  width: 100%;
  height: 500px;

  position: absolute;
  background: rgba(16, 17, 17, 0.3);
  display: flex;
  align-items: flex-end;
}

.Fitness-Center-topic {
  color: var(--white);
  font-family: var(--lora-regular);
  font-size: 20px;
  padding-left: 20px;
  padding-bottom: 20px;

  position: absolute;
}

.Amenities-That-Elevate-box {
  position: relative;
}

.mySwiper-Amenities-That-Elevate-Your-Stay {
  height: 550px;
}

.Amenities-That-Elevate-box .swiper-button-next,
.Amenities-That-Elevate-box .swiper-button-prev {
  position: absolute;
  bottom: 10px; /* Adjust this to position them at the bottom */
  z-index: 10; /* Make sure buttons are above content */
  background-color: var(--pictures-box-color); /* Optional, for visibility */
  color: var(--white); /* Button color */

  width: 60px; /* Button size */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Amenities-That-Elevate-box .swiper-button-next {
  right: -60px; /* Position next button on the right */
}

.Amenities-That-Elevate-box .swiper-button-prev {
  left: -60px; /* Position prev button on the left */
}

.Amenities-That-Elevate-box .swiper-button-next::after {
  font-size: 20px;
}

.Amenities-That-Elevate-box .swiper-button-prev:after {
  font-size: 20px;
}

.mySwiper-Amenities-That-Elevate-Your-Stay .swiper-scrollbar {
  height: 5px; /* Adjust the height of the scrollbar */
  background: rgba(0, 132, 125, 0.2); /* Light gray background for the track */
}

.mySwiper-Amenities-That-Elevate-Your-Stay .swiper-scrollbar-drag {
  background-color: var(--primary-color); /* Blue color for the thumb */
  border-radius: 6px; /* Rounded corners for the thumb */
  opacity: 1;
  z-index: 255;
}

/* Amenities-That-Elevate-Your-Stay-section */

.A-Look-Back-at-Our-Events-section {
  background: var(--dark-green-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}

.mySwiper-A-Look-Back-at-Our-Events .swiper-wrapper {
  height: 660px;
}

.mySwiper-A-Look-Back-at-Our-Events .swiper-scrollbar {
  height: 5px; /* Adjust the height of the scrollbar */
  background: rgba(0, 132, 125, 0.2); /* Light gray background for the track */
}

.mySwiper-A-Look-Back-at-Our-Events .swiper-scrollbar-drag {
  background-color: var(--primary-color); /* Blue color for the thumb */
  border-radius: 6px; /* Rounded corners for the thumb */
  opacity: 1;
  z-index: 255;
}

.Grand-Wedding-topic {
  color: var(--white);
  font-family: var(--lora-regular);
  font-size: 20px;
  padding-left: 20px;
  padding-bottom: 50px;
  position: absolute;
}

.date-of-event {
  color: var(--gray);
  font-family: var(--lora-regular);
  font-size: 17px;
  padding-left: 20px;
  padding-bottom: 20px;
}

.Grand-Wedding-img {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 90%;
}

.dim-light-boxs {
  width: 100%;
  height: 90%;
  position: absolute;
  background: rgba(16, 17, 17, 0.3);
  display: flex;
  align-items: flex-end;
}

.mySwiper-A-Look-Back-at-Our-Events .swiper-scrollbar {
  width: 80%;
  position: absolute;

  left: 50%;
  transform: translate(-50%, 50%);
}

/* A-Look-Back-at-Our-Events-section */
.Exclusive-Offers-Showcase-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--darkest-green-shade);
}
/* Exclusive-Offers-Showcase-section */

.Guest-Experiences-and-Reviews-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--dark-green-shade);
}

.Guest-Experiences-and-Reviews {
  font-size: clamp(16px, 5vw, 38px);
  color: var(--white);
  font-family: var(--lora-regular);
  text-align: center;
  padding-bottom: 40px;
}

.guest-review-box-one {
  padding: 20px;
  background: var(--darkest-green-shade);
  display: flex;
  gap: 10px;
  height: 550px;
 
}

.img-of-guest-for-review {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 99%;
}

.star-rating {
  object-fit: cover;
  object-position: center;
  width: 20px;
  height: 20px;
}

.star-rating-box {
  display: flex;
  gap: 10px;
  padding-bottom: 30px;
}

.guest-rewiew-in-word {
  color: var(--gray);
  font-size: clamp(12px, 3vw, 18px);
  font-family: var(--lora-regular);
  padding-bottom: 40px;
}

.guest-rewiew-in-word-box-with-introduction {
  padding: 30px;
}

.guest-introduction {
  border-top: 1px solid #143d3b;
  padding-top: 30px;
}

.Kevin-Martin-names {
  color: var(--white);
  font-size: clamp(12px, 3vw, 18px);
  font-family: var(--lora-regular);
}

.baker-profession {
  color: var(--gray);
  font-size: clamp(12px, 2.5vw, 14px);
  font-family: var(--lora-regular);
}

.mySwiper-Guest-Experiences-and-Reviews {
  height: 600px;
}

.swipper-outer-part-button-guest {
  position: relative; /* Make the container a reference point */
}

/* Position the next and prev buttons */
.swipper-outer-part-button-guest .swiper-button-next,
.swipper-outer-part-button-guest .swiper-button-prev {
  position: absolute;

  z-index: 10; /* Make sure buttons are above content */
  background-color: var(--pictures-box-color); /* Optional, for visibility */
  color: var(--white); /* Button color */

  width: 50px; /* Button size */
  height: 50px;
  display: flex;
  align-items: center !important;
  justify-content: center;
}

.swipper-outer-part-button-guest .swiper-button-next {
  right: -60px; /* Position next button on the right */
}

.swipper-outer-part-button-guest .swiper-button-prev {
  left: -60px; /* Position prev button on the left */
}

.swipper-outer-part-button-guest .swiper-button-next::after {
  font-size: 15px;
}

.swipper-outer-part-button-guest .swiper-button-prev:after {
  font-size: 15px;
}

.swipper-outer-part-button-guest .swiper-scrollbar {
  height: 5px; /* Adjust the height of the scrollbar */
  background: rgba(0, 132, 125, 0.2); /* Light gray background for the track */
}

.swipper-outer-part-button-guest .swiper-scrollbar-drag {
  background-color: var(--primary-color); /* Blue color for the thumb */
  border-radius: 6px; /* Rounded corners for the thumb */
  opacity: 1;
  z-index: 255;
}
/* Guest-Experiences-and-Reviews-section */

.The-Only-Place-Find-Outside-the-Home-section {
  background: var(--darkest-green-shade);
  position: relative;
  height: 800px;
}

.The-Only-Place-Find-Outside-the-Home-img {
  position: absolute;
  top: 0;
  left: 50%;

  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 50%;
}

.The-Only-Place-topic {
  color: var(--white);
  font-size: clamp(20px, 5vw, 38px);
  font-family: var(--lora-regular);
  padding-top: 100px;
  padding-bottom: 20px;
}

.container-only-palce-find {
  position: relative;
}

.the-only-palace-contain {
  position: absolute;
  width: 100%;
}

.info-box {
  background-color: var(--pictures-box-color); /* Dark greenish-black */
  padding: 30px;
  height: 100%;
}

.Personalized-Service-topic {
  color: var(--white);
  font-size: clamp(14px, 4vw, 24px);
  font-family: var(--lora-regular);
  padding-bottom: 10px;
}

.Our-dedicated-staff {
  color: var(--gray);
  font-size: clamp(12px, 3vw, 18px);
  font-family: var(--lora-regular);
}

/* Image (Right Side) */
.image-container {
  width: 65%; /* Takes up remaining space */
  display: flex;
  justify-content: center; /* Moves image to the right */

  top: 10%;
}

.logo-frame {
  position: absolute;
  top: 55%;
  object-fit: cover;
  object-position: center;
}

/* The-Only-Place-Find-Outside-the-Home-section */

.Explore-Our-Gallery-Photos-section {
  background: var(--dark-green-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}

.Explore-Our-Gallery-Photos-topic {
  color: var(--white);
  font-size: clamp(16px, 5vw, 38px);
  font-family: var(--lora-regular);
  text-align: center;
  padding-bottom: 40px;
}

.gallery-photo-home-page-one {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 300px;

  padding-top: 25px;
}

.gallery-photo-home-page-third {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 600px;
}

/* Explore-Our-Gallery-Photos-section */

.get-off-offer-section {
  display: flex;
  position: relative;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 650px;
}

.shape-img {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.offer-box-tranparent {
  width: 100%;
  height: 100%;
  background-color: rgba(17, 16, 16, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  text-align: center;
}

.Weekend-Special {
  text-align: center;
  color: var(--white);
  font-family: var(--lucida-writing);
  font-size: clamp(16px, 5vw, 38px);
  font-weight: 600px;
  font-style: italic;

  margin-top: 135px;
  padding-bottom: 20px;
}

.Get-Up-To-offer {
  font-family: var(--lora-regular);
  font-size: clamp(20px, 6vw, 76px) !important;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  color: var(--white);
}

.book-now-box-offer {
  font-family: var(--lora-regular);

  font-style: normal;
  background: var(--primary-color);
  color: var(--white);

  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: clamp(12px, 3vw, 16px);
  display: inline-block;
  margin-top: 50px;
}

/* Get Up To 30% Off on Booking */

.footer-section {
  background: var(--dark-green-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}

/* footer-first-row */

.sign-up {
  color: var(--white);
  font-family: var(--lora-regular);
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  padding-bottom: 20px;
}

.form-floating {
  position: relative; /* Allows absolute positioning of the icon inside the container */
}

.form-control-sign-up {
  height: 65px !important;
  border-radius: 0;
  padding-right: 60px; /* Space for the icon */
}

.telegram-icon-box {
  background: var(--darkest-green-shade);
  color: var(--white);
  width: 55px;
  height: 55px;
  position: absolute;
  right: 10px; /* Position icon at the right */
  top: 50%; /* Center it vertically */
  transform: translateY(-50%); /* Fine-tune vertical alignment */
  display: flex;
  justify-content: center;
  align-items: center;
}

.telegram-icon-size {
  width: 19px;
  height: 19px;
}

.Enter-email-address {
  font-family: var(--lora-regular);
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  margin-top: 5px;
  margin-left: 10px;
  display: block;
  color: var(--gray);
}

.Copyright-comp {
  color: var(--gray);
  font-family: var(--lora-regular);
  font-size: 16px;
  opacity: 0.6;
}

.location-direction {
  color: var(--white);
  font-size: 18px;
  font-family: var(--lora-regular);
  padding-top: 40px;
  font-weight: 500;
}

/* border-line-cursor-for-location */

.get-direction-box {
  display: flex;
  gap: 10px;
  text-align: center;
  align-items: center;
  padding-top: 10px;
}

/*style get-direction-box */

.get-direction {
  color: var(--gray);
  font-size: 16px;
  font-family: var(--lora-regular);
  font-weight: 400;
}

/* style get-direction */

.arrow-left {
  color: var(--gray);
  font-size: 16px;
  margin-top: -10px;
}

/* style-arrow-left */

.border-get-direction {
  border: 1px solid var(--gray);
  width: 50%;
}

/* Sign up for Exclusive Offers */

.Quick-links {
  color: var(--white);
  font-family: var(--lora-regular);
  font-size: 18px;
  font-weight: 400px;
  font-style: normal;
  list-style: none;
  padding-bottom: 10px;
}

.Quick-links-col {
  list-style: none;
  margin-left: -30px;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.home-quicks-link {
  font-family: var(--lora-regular);
  font-size: 16px;
  font-weight: 400px;
  font-style: normal;
  list-style: none;

  color: var(--gray);
  line-height: 40px;
}

/* Quick-links-div */

.contents-vedio {
  margin-top: 40px;

  list-style: none;
}

.contents-vedio-list {
  margin-left: -30px;

  font-family: var(--lora-regular);
  font-size: 16px;
  font-weight: 400px;
  font-style: normal;
  list-style: none;
  color: var(--gray);
  line-height: 40px;
}

/* contents-vedio  */

.footer-logo {
  object-fit: cover;
  object-position: center;
  width: 180px;
  height: 100px;
}

.location-intro {
  display: flex;
  gap: 10px;
  color: var(--gray);
  padding-top: 40px;
  padding-left: 20px;
}

.company-email {
  display: flex;
  gap: 10px;
  color: var(--gray);
  padding-left: 20px;
}

.contact-number-footer {
  font-family: var(--lora-regular);
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 25px;
}
/* 
footer */
/* home-page-complete */


/* about-page  */

.background-image-of-service-page {
  width: 100%;
  height: 550px;
  background-position: center;
  background-size: cover;
  position: relative;
}

/* background-image-of-service-page */

.black-box {
  width: 100%;
  height: 100%;
  background: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: 200px;
  font-family: var(--lora-regular);
  font-weight: 500;
  font-size: clamp(18px, 6vw, 40px);
  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(--lora-regular);
  font-size: clamp(12px, 4vw, 18px);
  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(--lora-regular);
  font-size: clamp(12px, 4vw, 18px);
  font-style: normal;
  font-weight: 400;
}

/* who-we-are-word */




.Indulge-in-the-Luxury-You-Deserve-section {
  background: var(  --dark-green-shade);
  padding-top: 80px;
  padding-bottom: 40px;
}

.Indulge-in-the-Luxury-You-Deserve {
  color: var(--white);
  font-family: var(--lora-regular);
  font-size: clamp(18px, 5vw, 46px);
  font-weight: 400;
  font-style: normal;
}

.Indulge-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;

}

.Indulge-in-the-Luxury-1st-part {
  display: flex;
  margin-top: 40px;
  gap: 40px;
}

.Located-at-seaside {
  color: var(--gray);
  font-family: var(--lora-regular);
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 500;
  font-style: normal;
  padding-left: 20px;
}

.Indulge-in-the-Luxury-2nd-part {
  border-left: 5px solid var(--primary-color);

  height: 25%;
margin-top: 20px;
  padding-bottom: 10px;
  padding-top: 10px;
  width: 100%;
  
}

.A-place-that-offers {
  color: var(--gray);
  font-family: var(--lora-regular);
  font-size: clamp(12px, 4vw, 20px);
  font-style: normal;
  padding-left: 20px;
}

.Leonardo-P {
  padding-top: 20px;
  font-family: var(--lora-regular);
  font-weight: 600;
  font-style: normal;
  padding-left: 20px;
  font-size: 18px;
  color: var(--primary-color);
}

.Hotel-Manager {
  color: var(--gray);
  font-family: var(--lora-regular);
  font-weight: 500;
  font-style: normal;
  padding-left: 20px;
  font-size: 14px;
}

.couple-img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  object-position: center;

}

.your-top-priority-logo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: center;
  position: relative;
  margin-left: -50px;
  margin-top: -240px;
}
/* Indulge-in-the-Luxury-You-Deserve-section */


.Our-Purpose-and-Principles-section {
  background: var(--darkest-green-shade);
  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;

}

.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(--white);
  font-family: var(--lora-regular);
  font-size: clamp(18px, 5vw, 44px);
  font-weight: 500;
  font-style: normal;
  padding-bottom: 20px;
}

.Step-into {
  color: var(--gray);
  font-family: var(--lora-regular);
  font-size: clamp(12px, 3vw, 18px);
  font-style: normal;
}

.Book-Now-our-purpose {
  color: var(--white);
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: clamp(12px, 3vw, 16px);
  font-family: var(--lora-regular);
  font-style: normal;
  background: var(--primary-color);
  text-align: center;
  display: inline-block;
  margin-top: 20px;

}

/* Our Purpose and Principles section */


.Meet-Our-Leadership-Team-section {
  background: var(--dark-green-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}

.Meet-Our-Leadership-Team {
  color: var(--white);
  font-size: clamp(18px, 5vw, 44px);
  font-family: var(--lora-regular);
  text-align: center;
  font-weight: 500;
  font-style: normal;
  padding-bottom: 40px;
}


.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;

}

.Dianne-Russell {
  color: var(--white);
  font-family: var(--lora-regular);
  text-align: left;
  padding-left: 20px;
  font-style: normal;
  font-size: clamp(14px, 4vw, 24px);
  margin-top: 400px;
  position: relative;
  background-color: rgba(70, 68, 68, 0.2);
  display: inline-flex;
}

.ceo-word {
  color: var(--white);
  font-family: var(--lora-regular);
  text-align: left;
  font-weight: 400;
  font-style: normal;
  padding-left: 22px;
  font-size: clamp(12px, 3vw, 16px);
  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 */

.Guest-Experiences-and-Reviews-section-sbout-page{
  background: var(--darkest-green-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}


.guest-review-box-one-about-page{
  padding: 20px;
  background: var(--pictures-box-color);
  display: flex;
  gap: 10px;
  height:400px;


}



/*complete-about-page */

/* our-service-pagge */

.Make-Your-Stay-Memorable-section {
  background: var(--darkest-green-shade);
  padding-top: 80px;
  padding-bottom: 80px;
  background-position: center;
  background-size: cover;
}

.Make-Your-Stay-Memorable {
  font-family: var(--lora-regular);
  color: var(--white);
  font-weight: 500;
  font-style: normal;
  text-align: center;
  font-size: clamp(18px, 5vw, 44px);
  padding-bottom: 20px;
}

.wifi-col-background {
  background:var(--darkest-green-shade);
  padding: 40px;
  height: 320px;
  box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.1);
 
}

.router-img-box {
  display: flex;
  justify-content: center;
}

.router-icon {
  width: 100px;
  height: 100px;
  object-fit: cover;
  object-position: center;
  filter: invert(75%) sepia(6%) saturate(150%) hue-rotate(120deg);
}

.High-Speed-Wifi {
  color: var(--white);
  font-family: var(--lora-regular);
  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(--lora-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 */
/* our-service-page-complete */

/* room-and-suite-page-start */
.room-and-suite-page-section{
  background: var(--darkest-green-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}

/* room-and-suite-page-section */

/* room-page-complete */

/* restuarant-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: 640px;
 
}

.A-World-of-Flavors-Awaits {
  font-family: var(--lora-regular);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(20px, 4vw, 40px);
  color: var(--white);
  padding-bottom: 10px;


}

.A-World-of-Flavors-Awaits-para {
  color: var(--gray);
  font-family: var(--lora-regular);
  font-size: clamp(12px, 3vw, 18px);
  font-style: normal;

}

.Day-Hours {
  font-family: var(--lora-regular);
  font-size: clamp(14px, 4vw, 22px);
  font-weight: 500;
  font-style: normal;
  padding-top: 40px;
 
  color: var(--white);
}

.Breakfast-time {
  color: var(--gray);
  font-size: clamp(12px, 3vw, 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-top: 30px;
padding-bottom: 20px;
}
.time-of-lunch {
  display: flex;
  gap: 10px;

}

.time-of-dinner{
  display: flex;
  gap: 10px;
  padding-top: 20px;
}

.A-World-of-Flavors-Awaits-part {
 padding: 30px;
}

.read-more-a-world-of-Flavors {

  margin-top: 50px;
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-family: var(--lora-regular);
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 400;
  font-style: normal;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 30px;
  padding-right: 30px;

}

/* A-World-of-Flavors-Awaits-section */



.Restaurant-Menu-section {
  background: var(--darkest-green-shade);
  padding-top: 80px;
  padding-bottom: 30px;
}


.Restaurant-Menu {
  font-family: var(--lora-regular);
  font-size: clamp(18px, 5vw, 44px);
  font-weight: 500px;
  font-style: normal;
  color: var(--white);
  text-align: center;
}

.Breakfast-box {
  background: var(--pictures-box-color);
  height: 120px;
  width: 140px;
  padding: 20px;

}

.Breakfast-icon {
  width: 45px;
  height: 45px;
  object-fit: cover;
  object-position: center;
  margin-left: 25px;
  filter: brightness(0) invert(1); /* Turns black images to white */
}

.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(--primary-color);
  color: var(--white);
}

.Breakfast-box:hover .Breakfast {
  color: var(--white);
}

.Breakfast-box:hover .Breakfast-icon {
  color: var(--white);
}

.Breakfast-icon {
  filter: brightness(0) invert(1);
}


.Breakfast-box:hover .Breakfast-icon {
  filter: brightness(0) invert(1); /* Turns the icon white */
}
.Breakfast-box:hover .Breakfast {
  color: var(--white);
}
/* .Breakfast */




.Appetizers-box {
  background: var(--pictures-box-color);
  height: 120px;
  width: 140px;
  padding: 30px;
  
}

.Appetizers-icon {
font-size: 40px;
object-fit: cover;
object-position: center;
  padding-left: 25px;
  filter: brightness(0) invert(1);

}

.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(--primary-color);
}

.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(--pictures-box-color);
  height: 120px;
  width: 140px;
  padding: 30px;

}

.Burgers-icon {
  font-size: 30px;
  padding-left: 25px;
}

.Burgers-icon {
  filter: grayscale(100%);
}


.Burgers-box:hover {
  background-color: var(--primary-color);
  color: var(--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(--pictures-box-color);
  height: 120px;
  width: 140px;
  padding: 30px;

}

.Salads-icon {
  color: var(--gray);
  font-size: 30px;
  padding-left: 20px;
}

.Salads-box:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.Salads-icon {
  filter: grayscale(100%);
}



.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(--pictures-box-color);
  height: 120px;
  width: 140px;
  padding: 30px;

}

.Seafood-icon {
  padding-left: 20px;
}

.Seafood-box:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.Seafood-icon {
  filter: grayscale(100%);
}


.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(--pictures-box-color);
  height: 120px;
  width: 140px;
  padding: 30px;

}

.Mains-icon {
  padding-left: 22px;
}

.Mains-box:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.Mains-icon {
  filter: grayscale(100%);
}



.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(--primary-color);
}

.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(--primary-color);
}

.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(--primary-color);
}

.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(--primary-color);
}

.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(--primary-color);
}

.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(--primary-color);
}

.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(--white);
  font-family: var(--lora-regular);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(14px, 4vw, 20px);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.background-of-menu-list p {
  color: var(--gray);
  font-size: clamp(10px, 3vw, 14px);
  font-family: var(--lora-regular);
  margin: 5px 0 0;
}

.price-of-southern-fried-chicken {
  color: var(--white);
  font-family: var(--lora-regular);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(14px, 4vw, 20px);
}

.doted {
  flex-grow: 1;
  border-bottom: 1px dashed var(--gray);

}

.Restaurant-Menu-section-for-mobile {
  display: none;
}
/* Restaurant-Menu-section */






/* restuarant-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(--white);
  font-family: var(--lora-regular);
  font-size: clamp(18px, 5vw, 44px);
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

.Elegant-Event-Hall-para {
  font-size: clamp(14px, 4vw, 20px);
  color: var(--gray);
  padding-top: 10px;
  font-family: var(--lora-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;
 

  padding: 0 !important;
}

/* Thumbnail Slider */
.thumbnail-slider {
  height: 130px;
margin-top: 5px;
}

.small-slider-image {
  width: 140px;
  height: 115px;
  object-fit: cover;
  
  padding: 5px !important;
}

/* Custom styling for the arrows */
.custom-prev,
.custom-next {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  top: 40%;
  width: 50px;
  height: 50px;
  z-index: 10;
}
.custom-prev {
  left: 0px;
}
.custom-next {
  right: 0px;
}

/* Remove all transformations */
.small-slider-image {
  transform: none;
  opacity: 1;
}

.slick-list {
  padding: 0px !important;
  margin: 0;
}

.TOTAL-ACCOMMODATIONS {
  color: var(--gray);
  font-size: clamp(12px, 3.5vw, 17px);
  font-family: var(--lora-regular);
  word-spacing: 2px;
  font-weight: 400;
  font-style: normal;
}

.TOTAL-ACCOMMODATIONS-number {
  color: var(--primary-color);
  font-family: var(--lora-regular);
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 500px;
  font-style: normal;
  font-size: clamp(18px, 5vw, 42px);
}

.TOTAL-ACCOMMODATIONS-box {
  border-bottom: 1px solid var(--primary-color);
  width: 350px;
}

.border-padding {
  padding-top: 30px;
  padding-left: 60px;
}

.TOTAL-AMENITIES-box {
  padding-top: 30px;
  border-bottom: 1px solid var(--primary-color);
  width: 350px;
}

.TOTAL-CONFERENCE-box {
  padding-top: 30px;
}

.TOTAL-CONFERENCE-ROOMS-number {
  color: var(--primary-color);
  font-family: var(--lora-regular);

  padding-top: 10px;
  padding-bottom: 20px;
  font-weight: 600px;
  font-style: normal;
  font-size: clamp(18px, 5vw, 42px);
}

/* General Table Styles */

.table-responsive{
  padding: 0;
 
  
 
}

.custom-table {
  width: 100%;
  
   margin: 0;
}

.custom-table table {
  border-radius: 50px;
}

.custom-table th,
.custom-table td {
 
  border-right: 1px solid var(--gray);
  text-align: start;
  padding-left: 20px;
  padding-bottom: 15px;
}

.custom-table td {
background: var(--dark-green-shade);
font-family: var(--lora-regular);
font-size: clamp(12px, 3vw, 18px);
  color: var(--gray);
  padding-top: 20px;
   border: 1px solid var(--gray);
}

.custom-table th {
  font-family: var(--lora-mediu);
  font-size: clamp(12px, 3vw, 18px);
  color: var(--white);
background: var(--dark-green-shade);
  font-weight: 600;
  border: 1px solid var(--gray);
}

.custom-table th,
.custom-table td {
  padding-top: 20px;
}

.Amenities-That-Make-Every-Event-Remarkable-section {
  background: var(--darkest-green-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}

.Amenities-That-Make-Every-Event-Remarkable {
  color: var(--white);
  font-family: var(--lora-regular);
  font-size: clamp(18px, 5vw, 42px);
  text-align: center;
  font-weight: 500;
  font-style: normal;
}

.Perfecting-Your-Gatherings-with-para {
  font-family: var(--lora-regular);
  font-size: clamp(12px, 3vw, 18px);
  color: var(--gray);
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

.Stationery-box {
  background: var(--pictures-box-color);
  height: 120px;
  display: flex;
  color: var(--black);
  gap: 30px;
  padding-left: 40px;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-right: 40px;


}

.book-icon {
  object-fit: cover;
  object-position: center;
  width: 64px;
  height: 64px;
     filter: invert(100%) contrast(100%);
}

.Stationery {
  font-family: var(--lora-regular);
  font-size: clamp(16px, 3vw, 18px);
  padding-top: 25px;
color: var(--white);
  font-weight: 500;
  font-style: normal;
  text-align: center;
}

.Water-Bottles {
  font-family: var(--lora-regular);
  font-size: clamp(16px, 3vw, 18px);
  padding-top: 30px;
color: var(--white);
  font-weight: 500;
  font-style: normal;
  text-align: center;
}

/* hall page */



/* photo-page start here */
.photo-gallery-section {
  background: var(  --darkest-green-shade);
  padding-top: 80px;
}

.row-photo-topic {
  display: flex;
  gap: 10px;
}



.all-photogallery-word {
  font-family: var(--lora-regular);
  font-size: 14px;
  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(--gray);

}

.Interior-photogallery-click-button:hover {
  background: var(--primary-color);
  color: var(--white);
}

.photo-gallery-image-section {
   background: var(  --darkest-green-shade);
  padding-top: 40px;

  padding-bottom: 80px;
}

.all-photogallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;

}

.photo-gallery-section-mobile {
  display: none;
}

.photo-gallery-section-nest-hub {
  display: none;
}


.Interior-photogallery-click-button.active {
  background-color: var(--primary-color); /* Highlight color for active category */
  color: var(--white);
}



/* photo-gallery-section */


 /* vedio-page */

 .vedio-page-all-img {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 300px;


  display: flex;
  align-items: center;
  justify-content: center;
}



.play-vedio-icon {
  color: var(--white);
  font-size: 60px;
} 

/* vedio-gallery-page */


.Get-In-Touch-form-section {
 background: var(--darkest-green-shade);
  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;
  
}

.Get-In-Touch-topics-form-part {
  padding-top: 10px;
  padding-left: 50px;
}

.Get-In-Touch-topics-form {
  color:var(--white);
  font-family: var(--lora-regular);
  font-size: clamp(18px, 5vw, 42px);
  font-weight: 500;
  font-style: normal;
}

.Connect-with-Us-Anytime {
  color: var(--gray);
  font-family: var(--lora-regular);
  font-size: clamp(12px, 3vw, 18px);
  font-weight: 400;
  font-style: normal;
}


.fill-your-name-form input::placeholder{
  color: var(--gray);
}


.fill-your-name {
  border: 0;
  border-radius: 0;
  height: 55px;
  width: 100%;
  background-color: var( --pictures-box-color);

}


.fill-email-address-row input::placeholder{
  color: var(--gray);
}

.messege-form-box textarea::placeholder{
  color: var(--gray) !important;
}


.fill-your-number {
  border-radius: 0;
  height: 55px;
  width: 100%;
  border: 0;

  background: var( --pictures-box-color);
}

.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;
 
  background: var( --pictures-box-color);
}

.messege-form {
  height: 200px;
  border: 0;
  border-radius: 0;
  padding-top: 15px;
  padding-left: 15px;
  background: var( --pictures-box-color);


}

.messege-form-box {
  border: 0;
  padding-top: 12px;
}

.send-message-button {
  background:var(--primary-color);
  color: var(--white);
  font-family: var(--lugfa-regular);
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 30px;
  padding-right: 30px;
  margin-top: 20px;

}

/* 
Get-In-Touch-form-section */

.contact-page-information-section {
  background: var(--darkest-green-shade);
  padding-top: 60px;
  padding-bottom: 60px;
}

.location-information-box {
  background: var(--dark-green-shade);
  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(--pictures-box-color);
  display: inline-block;
  justify-content: center;
  padding-top: 10px;
}

.location-information-icon {
  font-size: 50px;
  color: var(--white);
}

.our-location-information {
  font-family: var(--lora-regular);
  text-align: center;
  font-style: normal;
  color: var(--white);
  font-size: clamp(14px, 4vw, 22px);
  padding-top: 30px;
}

.The-Queen-Walk-para {
  color: var(--gray);
  font-family: var(--lora-regular);
  font-size: clamp(12px, 3vw, 16px);
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding-top: 20px;
}

.The-Queen-Walk-para-other {
  color: var(--gray);
  font-family: var(--lora-regular);
  font-size: clamp(12px, 3vw, 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 */


.All-Insights-section {
  background: var(--darkest-green-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}



.Crafting-Exceptional-Guest-Experiences-bottom-part {
  background-color: var(--pictures-box-color);
 padding-bottom: 20px;
}

.Crafting-Exceptional-Guest-Experiences-padding {
  padding: 10px;
}

.Crafting-Exceptional-Guest-Experiences-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center center;
}

.Crafting-Exceptional-Guest-Experiences-date {
  color: var(--gray);
  font-family: var(--lora-regular);
  font-size: clamp(10px, 3vw, 14px);
  font-weight: 400;
  font-style: normal;
  padding-top: 20px;
  padding-left: 30px;
  display: flex;
  gap: 10px;

}

.Crafting-Exceptional-Guest-Experiences {
  font-family:var(--lora-regular);
  font-size: clamp(14px, 5vw, 20px);
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  padding-left: 30px;
  padding-top: 10px;
}

.read-more-button-Crafting {
  display: flex;
  color: var(--brand-color);
  gap: 10px;
  align-items: center;
  padding-left: 30px;
  font-family: "Lora", serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  padding-bottom: 30px;
  padding-top: 40px;
}


.clock-blog{
  object-fit: cover;
  object-position: center;
 width: 16px;
 height: 16px;


}

/* blog-page */

/* All-Insights-section */

/* blog-page-completed */
/* Exploring the Local Gems Around Our Hotel page started here */

.Content-without-backward-compatible-data-section {
  background: var( --dark-green-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}

.Content-without-backward-compatible-data-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}

.Content-without-backward-compatible-data-written-data {
  background: var( --darkest-green-shade);
  padding-top: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
}

.peacefulqode-box {
  font-family: var(--lora-regular);
  font-size: clamp(10px, 3vw, 14px);
  color: var(--gray);
  font-weight: 400;
  font-style: normal;
  display: flex;
  gap: 10px;
}

.peacefulqode-box h6{
  font-size: clamp(10px, 3vw, 14px);
}

.long-established-fact {
  font-family: var(--lora-regular);
  font-size: clamp(12px, 3vw, 18px);
  color: var(--gray);
  font-weight: 400;
  font-style: normal;
  padding-top: 20px;
}

.Content-without-backward-compatible-data {
  color: var(--white);
  font-family:var(--lora-regular);
  font-size: clamp(16px, 5vw, 24px);
  font-weight: 500;
  font-style: normal;
  padding-top: 40px;
}

.Michal-Smart {
  color: var(--primary-color);
  font-family: var(--lora-regular);
  font-size: clamp(14px, 4vw, 20px);
  font-weight: 400;
  font-style: normal;
  padding-top: 10px;
}

.Michal-Smart-infor {
  border-left:4px solid var(--primary-color);
  padding-left: 20px;
  background: var(--pictures-box-color);
  padding-top: 10px;
  padding-bottom: 10px;
}

.Economy-img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 305px;
}

.Lorem-ipsum-dolor-para {
  color: var(--gray);
  font-family: var(--lora-regular);
  font-size: clamp(12px, 3vw, 18px);
  font-weight: 400;
  font-style: normal;

}

.tick-mark {
 object-fit: cover;
 object-position: center;
width: 24px;
height: 24px;

}

.Lorem-ipsum-dolor-box {
  display: flex;
  gap: 20px;
  padding-top: 30px;
}

.Vivamus-eu-ligula {
  display: flex;
  gap: 20px;
  padding-top: 10px;
}

.All-Insights-section-other{
  background: var(--darkest-green-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}

.All-Insights-topics{
  color: var(--white);
  text-align: center;
  font-size: clamp(18px, 5vw, 44px);
  font-family: var(--lora-regular);
  padding-bottom: 40px;

}

/* Content-without-backward-compatible-data-section */

/* explore-blog-page-completed */



/* swimming-pool-page started-here */

.swimming-pool-page-second-section {
  background: var(--dark-green-shade);
  padding-top: 80px;
  padding-bottom: 80px;
  background-position: center;
  background-size: cover;
}

.children-swimming-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.Dive-into-relaxation {
  color: var(--gray);
  font-family: var(--lora-regular);
  font-size: clamp(12px, 3vw, 18px);
  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 {
object-fit: cover;
object-position: center;
width: 24px;
height: 24px;
  font-size: 25px;
}

.Spacious-Pool {
  color: var(--gray);
  font-family:var(--lora-regular);
  font-size: clamp(12px, 3vw, 18px);
  font-weight: 400;
  font-style: normal;

}

.Luxurious-Poolside-Amenities-box {
  display: flex;
  gap: 20px;
  padding-top: 10px;
}

.wifi-col-background-other{
  background: var(--pictures-box-color);
  padding: 40px;
  height: 320px;
  box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.1);
}

/* swimming-pool-page-second-section */


/* Deluxe Rooms-page-started here */

.room-picture-section {
  background: var(--dark-green-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}

.room-img-deluxe {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
}

.small-img-of-room-deluxe {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
}

.small-img-of-room-deluxe-sec {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  margin-top: 10px;
}

/* room-picture-section */

.About-Accommodation-section {
  background: var(--darkest-green-shade);
  padding-top: 60px;
  padding-bottom: 70px;
}

.About-Accommodation {
  color: var(--white);
  font-size: 24px;
  font-family:var(--lora-regular);

  font-weight: 400;
  font-style: normal;
}

.About-Accommodation-paragraph {
  font-size: 18px;
  color: var(--gray);
  font-family: var(--lora-regular);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding-top: 20px;
  padding-bottom: 20px;
}

.About-Accommodation-Facilities {
  color: var(--white);
  font-size: 24px;
  font-family:var(--lora-regular);

  font-weight: 400;
  font-style: normal;
  padding-top: 20px;
  padding-bottom: 10px;
}

.king-size-bed-facilities {
  font-size: 18px;
  color: var(--gray);
  font-family:var(--lora-regular);
 
  font-weight: 400;
  font-style: normal;
  padding: 13px;
  text-align: center;
}

.bed-icon-deluxe {
  object-fit: cover;
  object-position: center;
  color: var(--gray);
  width: 30px;
  height: 30px;
  
  margin-top: 10px;
}

.Coffee-icon{
   object-fit: cover;
  object-position: center;

  width: 30px;
  height: 30px;
  margin-top: 5px;
}


.truck-icon {
  color: var(--text-color-gray);
  font-size: 30px;
}

.facilities-bed-size-view {
  display: flex;

  width: 100%;
  height: 60px;

  padding-top: 5px;
  padding-left: 40px;

  border: 1px solid var(--gray);
}



    
.Reservation-part {
  background: var(--pictures-box-color);
  padding: 40px;
  height: 770px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1); /* Adds a soft shadow */
}

.Reservation-topic {
  font-size: clamp(18px, 5vw, 42px);
  color: var(--white);
   font-family:var(--lora-regular);
  font-weight: 400;
  font-style: normal;

  
  font-style: normal;
}

.dollar-three-two-zero {
  font-size: 42px;
  color: var(--white);
    font-family:var(--lora-regular);
 
  font-weight: 400;
  font-style: normal;
}

.per-night-reservation {
  color: var(--gray);
   font-family:var(--lora-regular);
  
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
margin-top: 20px;
}

.Reservation-book-now-button {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
   font-family:var(--lora-mediu);

  font-weight: 400;
  font-style: normal;

  font-weight: 14px;
 
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 20px;
 
}

/* Add your custom styles here if needed */


.rservbox {
   font-family:var(--lora-regular);
font-size: 18px;
  font-weight: 400;
  font-style: normal;
  display: flex;
  justify-content: space-between;
  border: 1px solid var( --gray);
  padding: 15px;
  margin: 20px 0;

 
  color: var(--gray);
}

.rservbox .rbox span {
  cursor: pointer;
}

.rservbox .rbox p {
  margin: 0;
}

.rservbox .rbox input {
  visibility: hidden;
  width: 0;
  height: 0;
}

.down-arrow {
  font-size: 15px;
  color: var(--gray);
}

/* reservbox */

.number-of-room-booking {
  font-family:var(--lora-regular);
font-size: 18px;
  font-weight: 400;
  font-style: normal;
  display: flex;
  justify-content: space-between;
  border: 1px solid var( --gray) !important;
  text-align: center;
  padding-left: 15px;
  padding-right: 5px;
  padding-top: 5px;
  margin: 5px 0;

 
  color: var(--gray);
}

.number-of-room {
  margin-top: 7px;
}

.quantity-input {
  display: inline-flex;
  align-items: center;
}

.quantity-input .qty {
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 19px;
  border: none;
  outline: none;
  color: var(--gray);
  font-family:var(--lora-regular);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.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(--gray);
}

.quantity-input button:focus {
  outline: none;
}

.qty {
  background: transparent;
}

 .quantity-input button, .minus-plus-person-box button {
            background: none;
            border: none;
            font-size: 20px;
            color: var(--gray);
            cursor: pointer;
            font-weight: bold;


        }

/* number-of-room-booking */

.Extra-Services {
  font-size: 24px;
  color: var(--white);
    font-family:var(--lora-regular);
 
  font-weight: 400;
  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(--gray);

  font-size: 22px;
  margin-top: 12px;
  
}



.minus-plus-person-box #qty-ziplining {
  text-align: center;
   color: var(--gray);
 
   font-size: 18px;
 
   padding-left: 10px;
   width: 50px;
   border: 0;
 }

 .minus-plus-person-box #qty-massage {
  text-align: center;
   color: var(--gray);
 
   font-size: 18px;
   border: 0;
   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: 4px;
  color: var(--gray);
  border: 1px solid var(--gray);
}

.well-quantity-input input {
  width: 30px;
  text-align: center;
 
  background-color: transparent;
  
}

.vr{
  width: 1px;
  background-color: var(--gray); /* or any color you want for the divider */
  height: 20px; /* adjust the height as needed */
  margin-left: 10px;
  
}

.controls {
  display: flex;
  align-items: center;
 
   font-family: var(--lora-regular);
 
  font-weight: 400;
  font-style: normal;
  color: var(--gray);
  font-size: 18px;
}

.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: 10px;
  height: 10px;
  background-color: transparent !important; /* Green color when checked */

  border: 1px solid var( --gray) !important;
}

.controls input[type="checkbox"]:checked {
  background-color: transparent !important; /* Green color when checked */

  border: 1px solid var( --gray);

}

.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(--primary-color);
  font-size: 8px;
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
}

.Wellness-Spa {
   font-family: var(--lora-regular);
  
  font-weight: 400;
  font-style: normal;
  color: var(--gray);
  font-size: 18px;
  margin-top: 10px;
 

}

.person-number-box {
  display: flex;
  align-items: baseline;
}

.per-person-resv {
  color: var(--gray);
  font-family:var(--lora-regular);
 
  font-weight: 400;
  font-style: normal;
  font-size: 14px;

  margin-left: -10px;
  
}

.complete-box-person-number {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-right: 10px;
margin-top: -5px;

}


.person-number {
  font-family: var(--lora-regular);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
 color:var(--white);
 font-size: clamp(14px, 5vw, 22px);
  border: 0;
  padding-right: 10px;
  padding-top: 20px;
}

.straight-line{
  margin-top: 10px;
  color: var(--check-in-border);

}

.vr-line{
  display: flex;
  justify-content: center;
  align-items:center ;
  margin-top: 15px;
 
}

.vr{
height: 30px;
}

.CONTINUE-book-now-button {
  background: var(--primary-color);
  color: var(--white);
  font-size: clamp(12px, 4vw, 16px);
  font-family: var(--lora-mediu);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: block;
  font-weight: 400;
  font-style: normal;

  margin-top: 15px;
 
}


/* About-Accommodation-section */









/* Make Your Reservation page */
.Reservation-detail-section {
  background: var(--darkest-green-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}

.Reservation-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.Reservation-Details {
  color: var(--white);
  font-family:var(--lora-regular);
  font-size: clamp(18px, 5vw, 42px);
  font-weight: 500;
  font-style: normal;
  padding-top: 10px;
  padding-bottom: 10px;
}

.padding-fprm-reservation-detail {
  padding-left: 40px;
  padding-right: 40px;
}

.padding-fprm-reservation-detail-age {
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 10px;
  padding-top: 10px;
}

.Extra-Services-resarvation {
  font-size: clamp(18px, 6vw, 30px);
  color: var(--white);
  font-family:var(--lora-regular);

  font-weight: 500;
  font-style: normal;
  padding-top: 30px;
  padding-bottom: 20px;
}

.room-type {
  font-family:var(--lora-regular);
 font-size: 18px;
  font-weight: 400;
  font-style: normal;
  background-color:transparent;
  border-radius: 0;
  border: 1px solid var(--gray);
  padding-top: 14px;
  padding-bottom: 14px;
  color: var(--gray);
}




.billing-section {
  background-color: var(--darkest-green-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}

.bill {
  background-color: var(--pictures-box-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;

}

.checkin-date-check {
  padding-top: 15px;

  color: var(--gray);
  font-size: 18px;
  font-family:var(--lora-regular);

  font-weight: 400;
  font-style: normal;
}

.checkin-date {
  color: var(--white);
  font-size: 24px;
  font-family:var(--lora-regular);

  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(--gray);
  font-family: var(--lora-regular);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
}

.cost-of-deluxe-room {
  color: var(--gray);
  font-family:var(--lora-regular);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
}

.line-of-total {
  border-bottom: 1px solid var(--primary-color);
  opacity: 0.3;
  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(--gray);
  font-family:var(--lora-regular);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
}

.total-cost {
  color: var(--white);
  font-size: 18px;

  font-family:var(--lora-regular);
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
}

.form-for-complete-reservation {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 40px;
}

.Fill-Your-Information {
  color: var(--white);
  font-size: 24px;
  font-family:var(--lora-regular);
  padding-bottom: 15px;
  font-weight: 400;
  font-style: normal;
}

.form-border-zero {
  height: 65px;
  border-radius: 0;
  border: 0;
  background: var(--pictures-box-color);
}

.form-border-zero::placeholder {
  color: var(--gray); /* Change to your desired color */
  opacity: 1; /* Ensure the color is fully visible */
}



.email-address-width {
  width: 100% !important;
  border-radius: 0;
  height: 65px;
  border: 0;
  background: var(--pictures-box-color); 
}

.email-address-width::placeholder {
  color: var(--gray); /* Change to your desired color */
  opacity: 1; /* Ensure the color is fully visible */
}


.Choose-Payment-Method {
  color: var(--white);
  font-size: 24px;
  font-family:var(--white);

  font-weight: 400;
  font-style: normal;
  padding-top: 40px;
}

.changein-form-for-padding {
  margin-left: 15px;
  padding-top: 10px;
}

.Office-Payment {
  color: var(--gray);
  font-family: var(--lora-regular);
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  margin-top: 2px;
  padding-left: 10px;
}

.change-in-form-check-input {
  border: 1px solid var(--gray) !important;
  width: 22px;
  height: 22px;
  background-color: transparent;
}

.change-in-form-check-input:checked {
  background: var(--primary-color) !important;
}

.agreed-check {
  color: var(--gray);
  font-family: "Lora", serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
}

.terms-and-conditon {
  color: var(--primary-color);
  font-family: var(--lora-regular);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
}

.for-check-agred-padding {
  padding-left: 30px;
  padding-top: 10px;
}

.border-of-form-check {
  border: 1px solid var(--gray);
  border-radius: 0px !important;
  width: 19px;
  height: 19px;
  background-color: transparent;
}

.padding-for-agred-phase {
  display: flex;
  padding-left: 10px;
  margin-top: 2px;
}

.COMPLETE-BOOKING {
  color: var(--white);
  font-family:var(--lora-mediu);
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  background: var(--primary-color);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 50px;
}



/* billing-section */

.change-in-form-check-input:checked {
  background: var(--primary-color) !important; /* Background color when checked */
  border: 1px solid var(--gray) !important;
  outline: 1px solid var(--gray) !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;
}


.testiomials-page-section{
  background: var(--darkest-green-shade);
  padding-top: 80px;
  padding-bottom: 80px;
}




@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: -130px;
  }

  /* <!-- header-section --> */

  .resitration-section {
    display: none;
  }
  /* resitration-section */
  /* index-page */
  .for-mobile-home {
    display: block;
    margin-top: -20px;
  }
  
  .home-page-header-slide-img{
    height: 600px !important;
  }

  .resitration-container-for-mobile {
    background: var(--primary-color);
    padding-top: 40px;
    padding-bottom: 110px;
  }

  .CHECKIN-form {
    padding: 20px;
  }

  .CHECKIN-form-label {
    font-size: 16px;
    display: block;
    text-align: center;
    font-family: var(--lora-regular);
    color: var(--white);

    font-optical-sizing: auto;

    font-style: normal;
  }

  .form-control-checkin-form {
    height: 50px;
    border-radius: 0;
  }

  .guest-font {
    font-family: var(--lora-regular);
    font-optical-sizing: auto;
    font-size: 16px;
    color: var(--white);
    font-style: normal;
  }

  .bord {
    border: 1px solid var(--white);
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .plus-padding {
    padding-right: 20px;
  }

  .icon-mbolile-resgitration {
    font-size: 25px;
    color: var(--white);
  }

  .book-noW-MOBILE {
    border: 1px solid var(--white);
    color: var(--white);
    font-size: var(--lora-regular);
    font-size: 16px;
    margin-top: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  /* registration-form */

  /* col-lg-4 1 satrt */
  .border-box {
    margin-top: -80px;
    margin-left: -10px;
  }

  /* col-lg-4 1 end */

  /* col-lg-4 2 satrt */

  .Creative-Solutions {
    margin-top: 80px;
    padding-left: 20px;
  }
  /* col-lg-4 2 end */

  /* col-lg-4 3 satrt */

  .We-create-unforgettable {
    margin-top: 20px;
    
    
  }

  /* col-lg-4 3 end */
  /* years-of-experience-section */

  .swipper-outer-part-button {
    display: none;
  }

  .mySwiper-find-your-ideal-mobile {
    display: block;
  }

  .mySwiper-find-your-ideal-mobile {
    height: 600px;
    margin-top: 20px;
  }

  .mySwiper-find-your-ideal-mobile .swiper-button-next,
  .mySwiper-find-your-ideal-mobile .swiper-button-prev {
    bottom: 10px; /* Adjust this to position them at the bottom */
    z-index: 10; /* Make sure buttons are above content */
    background-color: black; /* Optional, for visibility */
    color: var(--white); /* Button color */

    width: 60px; /* Button size */
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 40%;
  }

  .mySwiper-find-your-ideal-mobile .swiper-scrollbar {
    height: 5px; /* Adjust the height of the scrollbar */
    background: rgba(
      0,
      132,
      125,
      0.2
    ); /* Light gray background for the track */
  }

  .mySwiper-find-your-ideal-mobile .swiper-scrollbar-drag {
    background-color: var(--primary-color); /* Blue color for the thumb */
    border-radius: 6px; /* Rounded corners for the thumb */
    opacity: 1;
    z-index: 255;
  }

  .mySwiper-find-your-ideal-mobile .swiper-button-next::after {
    font-size: 20px;
  }

  .mySwiper-find-your-ideal-mobile .swiper-button-next {
    right: 0px;
  }

  .mySwiper-find-your-ideal-mobile .swiper-button-prev {
    left: 0;
  }

  .mySwiper-find-your-ideal-mobile .swiper-button-prev::after {
    font-size: 20px;
  }

  /* Find-Your-Ideal-Accommodation-section */

  .Experience-the-Essence-of-Luxury-box {
  
    padding-left: 0;

  }

  .Experience-the-Essence-of-Luxury-topic {
    padding-top: 20px;
  }

  .High-quality-para{
    padding-top: 5px;
  }
  .arrow-up-img{
    width: 12px;
    height: 12px;
  }

  .Amenities-That-Elevate-box {
    display: none;
  }

  /* Amenities-That-Elevate-Your-Stay-section */

  .mySwiper-A-Look-Back-at-Our-Events {
    display: none;
  }

  .mySwiper-A-Look-Back-at-Our-Events-mobile {
    display: block;
  }

  .mySwiper-A-Look-Back-at-Our-Events-mobile {
    width: 100%;
    height: 600px;
  }

  .mySwiper-A-Look-Back-at-Our-Events-mobile .swiper-scrollbar {
    height: 5px; /* Adjust the height of the scrollbar */
    background: rgba(
      0,
      132,
      125,
      0.2
    ); /* Light gray background for the track */
  }

  .mySwiper-A-Look-Back-at-Our-Events-mobile .swiper-scrollbar-drag {
    background-color: var(--primary-color); /* Blue color for the thumb */
    border-radius: 6px; /* Rounded corners for the thumb */
    opacity: 1;
    z-index: 255;
  }

  /* A-Look-Back-at-Our-Events-section */

  .swipper-outer-part-button-guest .swiper-button-next,
  .swipper-outer-part-button-guest .swiper-button-prev {
    display: none;
  }

  .mySwiper-Guest-Experiences-and-Reviews {
    display: none;
  }

  .guest-review-box-one {
    height: 450px;
  }

  .img-of-guest-for-review {
    height: 100%;
  }

  .mySwiper-find-your-ideal-mobile{
height: 550px;
  }

  /* Guest-Experiences-and-Reviews-section */

  .The-Only-Place-Find-Outside-the-Home-img {
    display: none;
  }

  .image-container {
    display: none;
  }

  .the-only-palace-contain {
    position: static; /* Removes absolute positioning */
    transform: none; /* Resets transform */
    margin: 0 auto; /* Centers horizontally if needed */
  }

  .The-Only-Place-Find-Outside-the-Home-section {
    position: static;
    height: 1000px;
  }

  .margin-mobile {
    margin-top: 20px;
  }

  .get-off-offer-section{
    height: 540px;
  }

  
  .Indulge-in-the-Luxury-2nd-part{
 height: 18%;
  }

  /* The-Only-Place-Find-Outside-the-Home-section */

  .Get-Up-To-offer {
    font-size: 50px;
  }

  .company-email {
    padding: 0;
  }

  .location-intro {
    padding-left: 0;
  }

/* about-page */
.Located-at-seaside-box-res{
padding-top: 20px;
}

.Located-at-seaside{
  padding-left: 0;
}

.your-top-priority-logo {
  display: none;
}

.Our-Purpose-and-Principles-img {
  height: 400px;
}

.Our-Purpose-and-Principles-box{
  padding-left: 0;
}


 /* resturant-page */
 .A-World-of-Flavors-Awaits{
padding-top: 20px;
 }

 .Restaurant-Menu-section {
  display: none;
}

.A-World-of-Flavors-Awaits-part{
  padding: 0;
}

.mySwiper-restuarant-desk{
display: none;
}


.Restaurant-Menu-section-for-mobile{
  display: block;
  background: var(--darkest-green-shade);
}

.Restaurant-Menu{
  padding-top: 20px;
}

.clock-icon{
width: 16px;
height: 16px;
}

.Breakfast-menu-box {
  padding-bottom: 5px;
  background: var(--pictures-box-color);
}

.Breakfast-menu-icon {
  color: var(--gray);
  font-size: 10px;
  text-align: center;
margin-left: 20px;
  padding-top: 10px;
}

.Breakfast-menu-box:hover {
  background: var(--primary-color);
}

.Breakfast{
  font-family: var(--lora-regular);
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  padding-top: 10px;
  text-align: center;

  color: var(--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(--pictures-box-color);

}

.Appetizers-menu-icon {
  filter: grayscale(100%);
  text-align: center;
  padding-left: 25px;
  padding-top: 10px;
}

.Appetizers-menu-box:hover {
  background: var(--primary-color);
}

.Appetizers-menu-box:hover .breakfast {
  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 */
}

.TOTAL-ACCOMMODATIONS-box-whole-part{
  padding-left: 0;
}



.Breakfast-menu-box.active {
  background-color: var(--primary-color);
}

.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(--primary-color);
}

.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 */
}


.TOTAL-ACCOMMODATIONS-box{
  padding-top: 10px;
}

/* photo-page */

.photo-gallery-section{
  display: none;
}

.photo-gallery-section-mobile{
  display: block;
  background: var(  --darkest-green-shade);
  padding-bottom: 80px;
  
}

.all-photogallery-click-button-mobile{
  background: var(--primary-color);
  display: inline-block;
  text-align: center;

  width: 80px;
  height: 40px;
  padding-top: 10px;

  color: var(--white);
}

.all-photogallery-word-mobile{
  font-family: var(--lora-regular);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
}

.Interior-photogallery-click-button-mobile{
  display: inline-block;
  text-align: center;

  width: 80px;
  height: 40px;
  padding-top: 10px;

  color: var(--gray);
  border: 1px solid var(--gray);
}

.all-photogallery-word-mobile-repre{
  font-family: var(--lora-regular);
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
}

.Interior-photogallery-click-button-mobile:hover{
  background: var(--primary-color);
  color: var(--white);
}

.Interior-photogallery-click-button-mobile.active {
  background-color: var(--primary-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-page */

.Get-In-Touch-topics-form-part{
  padding-left: 0;
}

.Get-In-Touch-topics-form{
  padding-top: 20px;
}

.Connect-with-Us-Anytime{
  padding-top: 10px;
}
/* contact-page */

.children-swimming-written{
  padding-left: 0;
}

.Reservation-part{
height: 800px;
}


.Reservation-part .quantity-wrapper{
  margin-left: -30px;
}

.Wellness-Spa{
font-size: 12px;
}

.Reservation-topic{
font-size: 25px;
}

.dollar-three-two-zero{
  font-size: 25px;
}

.per-night-reservation{
  font-size: 18px;
  margin-top: 5px;
}


.small-img-of-room-deluxe{
  margin-top:10px ;
}

/* deluxe-room */

.guest-review-box-one-about-page{
  height: 100%;
  width: 100%;
}


.padding-mobile-for-from{
  margin-top: 20px;
}

/* testimonial-page */

.form-for-complete-reservation{
  padding-left: 0;
}

/* complete-reservation-section */

}

@media screen and (max-width: 1024) {
  /* tab */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  a {
    text-decoration: none;
  }

  .years-of-experience-section {
    margin-top: -105px;
  }

  /* Experience-the-Essence-section */
}

@media screen and (max-width: 1280px) {
  /* mobile */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  a {
    text-decoration: none;
  }

  /* Experience-the-Essence-section */
  .guest-review-box-one-about-page{
    height: 100%;
  }


}
