:root {
  --pure-white: #ffffff;
  --pure-black: #000000;

  --primary-color: #B19D68;

  --primary-hover-color: #DDBC83;
  --light-primary-color: #FDFAF5;
  --davy-grey: #575757;
  --reddish-brown: #563F2E;
  --platinum: #E5E5E5;
}



.form-control, .form-select {
  color: #172434;
  border: 1px solid #E5E5E5;
  border-radius: 7px;
}
.contact-form .form-control {
  border-radius: 0;
}

.form-control::placeholder {
  color: #BEBEBE;
}

.facus_active .form-control:focus, .facus_active .form-select:focus {
  border-color: #3A9492;
}

/* ========================================== 
HEADER
========================================== */
header.main_header {
  /* padding-bottom: 15px; */
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
  background-color: #172434;
  transition: all 0.5s ease-in-out;
}

header.main_header .brand-logo img {
  transition: all 0.5s;
}

.navbar_nav {
  padding: 0;
  margin: 0;
  display: flex;
  list-style: none;
  gap: 70px;
}

.nav_link {
  font-weight: 600;
  color: var(--pure-black);
  transition: all 0.9s;
  text-transform: uppercase;
}

.nav_link.active, .nav_link:hover {
  color: var(--primary-color);
}


.header_top {
  padding-top: 23px;
  padding-bottom: 23px;
  margin-bottom: -79px;
  border-bottom: 1px solid rgba(171, 132, 94, 0.58);
  position: relative;
  z-index: 1;
}

.header_top a, .header_top a img {
  color: var(--davy-grey);
  transition: all 0.5s;
}

.header_top a:hover {
  color: var(--primary-color);
}

.header_top a:hover img {
  transform: scale(1.2);
}

.social-book ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lang-list a {
  text-transform: uppercase;
  /* margin: 0px 5px; */
}

.lang-list a.active {
  color: var(--primary-color);
  font-weight: 600;
}

.lang-list li {
  display: inline;
  list-style-type: none;
  margin-left: 0;
}

/* .lang-list li:before {
  content: "/";
  padding-right: 3px;
}

.lang-list li:first-child:before {
  content: "";
  padding-right: 0;
} */

.brand-logo {
  position: relative;
  z-index: 1;
     transition: all 0.5s ease-in-out
}

.social-book ul+button {
  padding-top: 8px;
  padding-bottom: 8px;
}


/* ========================================== 
DROP DAWNMENU
========================================== */
.dropdown-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  z-index: 1;
  padding: 10px 20px;
  background-color: var(--light-primary-color);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  transform: translateY(20px);
  min-width: 200px;
}

.arrow-dawn {
  vertical-align: middle;
  line-height: 0;
}

.subnav_link {
  color: var(--pure-black);
  transition: all 0.9s;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.mobile_menu {
  margin-top: 116px;
}
.mobile_menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile_menu ul ul {
  padding-left: 15px;
}

.mobile_menu a {
  color: var(--pure-white);
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  display: block;
  /* text-align: end; */
}
.mobile_menu .active-nav {
  color: #B19D68;
}
.mobile_menu .btn {
  text-align: center;
  background-color: #B19D68;
  display: flex;
}

.show .mobile-nav {
  height: auto;
}

.desktop-lang {
  position: absolute;
  top: 8px;
  right: 5px;
  z-index: 9;
  transition: all 0.5s;
}
.fixed-header .desktop-lang {
  opacity: 0;
  visibility: hidden;
}


.mobile-nav .dropdown+ul {
  background-color: rgba(55, 55, 55, 0.5);
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  gap: 10px;
}

.mobile-nav .dd-show+ul {
  height: auto;
}

.mobile_menu ul li {
  position: relative;
}

.mobile_menu a.active {
  color: var(--primary-color);
}

.mobile_menu ul+button, .mobile_menu ul+a {
  margin-top: 26px;
  width: 100%;
  min-height: 48px;
}

.mobile-nav .dropdown+ul li a {
  text-transform: capitalize;
  font-weight: normal;
  padding-top: 5px;
  display: inline-block;
}

.icon-plus-mins {
  position: absolute;
  width: 16px;
  height: 2px;
  background: var(--primary-color);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.icon-plus-mins::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 16px;
  background: var(--primary-color);
  top: -7px;
  left: 0;
  right: 0;
  margin: 0px auto;
  transition: all 0.9s;
}

.dropdown.dd-show .icon-plus-mins::before {
  opacity: 0;
  transform: rotate(90deg);
}


/* ========================================== 
SIDE MENU
========================================== */
.Hamburger {
  cursor: pointer;
}

.sidenav {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 560px;
  transition: all 0.5s;
  transform: translateX(100%);
  background-color: #172434;
}



.SideMenuScroll {
  height: 100vh;
  overflow-y: auto;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  color: var(--pure-white);
}

.sidenav.open {
  transform: translate(0, 0);
}

.fixed-header .sidenav.open {
  transform: translate(0, 54px);

}

.sidenav-header {
  border-bottom: 1px solid rgba(171, 132, 94, 0.58);
}

.closebtn {
  cursor: pointer;
  line-height: 0;
}

.SideContent {
  padding: 0px 5%;
  position: relative;
}
.SideContent:last-child {
  padding-bottom: 50px;
}

/* .SideContent::after {
  position: absolute;
  content: "";
  width: calc(100% - 84px);
  height: 1px;
  left: 0;
  right: 0;
  margin: 0px auto;
  bottom: 0;
  background: var(--pure-white);
} */
.SideContent p {
  font-size: 24px;
  font-weight: 600;
  font-family: "Jost";
}

.nav-social {
  margin: 0px;
  padding: 0;
  list-style: none;
  display: flex;
  margin-top: 20px;
  gap: 20px;
}

.social_link img {
  filter: brightness(10);
  transition: all 0.9s;
}

.social_link img:hover {
  filter: brightness(0) saturate(100%) invert(95%) sepia(58%) saturate(2611%) hue-rotate(315deg) brightness(93%) contrast(88%);
}

.SideContent h6 {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pe-link {
  font-weight: 600;
}

.pe-link a {
  color: var(--pure-white);
  font-weight: 400;
}

.body-no-scroll .sidenav-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.58);
  transition: all 0.9s;
  z-index: 11;
}

.sidenav-overlay {
  position: absolute;
}

.sidenav-header .lang-list {
  margin: 0;
  padding: 0;
}

.sidenav-header .lang-list a {
  color: var(--pure-white);
}

.sidenav-header .logo img {
  background-color: transparent;
}

.SideFooter .policy-links a {
  color: var(--pure-white);
}

.contact-us-sidenav {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 30px;
}

.contact-us-sidenav li {
  border-bottom: 1px solid var(--davy-grey);
  padding-bottom: 17px;
}

.icon-site {
  vertical-align: middle;
  line-height: 0;
}

.contact-us-sidenav li a {
  color: var(--pure-white);
  display: flex;
  grid-template-columns: 1fr;
  gap: 7px;
  line-break: anywhere;
}


/* ========================================== 
HOME HERO BANNER
========================================== */
.home_hero-banner {
  /* background-image: url('../images/home-hero-banner.webp'); */
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  height: 650px;
  overflow: hidden;
}

.HeroBanner::before {
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--pure-black);
  opacity: 0.2;
}
.home_hero-banner::before {
  opacity: 0.25;
}

.hero-content {
  /* max-width: 1240px; */
  /* margin-left: 0px; */
  /* margin-bottom: 30px; */
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--pure-white);
  /* gap: 0px; */
}

.hero-content .btn-secondary {
  color: var(--pure-white);
  border-color: var(--pure-white);
}

.hero-content .btn-secondary:hover {
  border-color: var(--primary-color);
}

.hero-content .btn-secondary .arrow-right {
  filter: brightness(10);
}

@media screen and (max-width: 575px) {
  .home_hero-banner {
    background-image: url('../images/mobile2.jpg');
	  height: 400px;
	  padding-bottom: 0 !important;
  }
}

/* ========================================== 
FILTER bY
========================================== */
.filtercard {
  background-color: var(--pure-white);
  box-shadow: 0px 0px 20px 0px #0000001F;
  /* border-radius: 15px; */
  /* border: 1px solid #555555; */
  /* padding: 31px 15px; */
  padding: 50px;
}
.filtercard .col-md-2:has(.filter-btn) {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.filtercard .d-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.filtercard label {
  font-family: "MarcellusSC";
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #555555;
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.card-filter {
  background-color: #D9D9D942;
  color: #172434;
  /* border: 1px solid var(--platinum); */
  border-radius: 7px;
  display: flex;
  align-items: center;
  padding: 10px ;
  justify-content: space-between;
  min-height: 56px;
}

.card-filter .form-select, .card-filter .form-control {
  background-color: transparent;
  box-shadow: none;
  border: none;
  color: #555555;
  /* text-align: right; */
  font-family: "Inter";
  font-weight: 300;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;

}

.card-filter .form-select:focus {
  box-shadow: none;
}

.filter-btn button {
  /* border-radius: 10px; */
  /* padding: 15px 16px; */
  min-height: 56px;
  width: 100%;
}

/* .card-filter label { flex: 0 0 90px; } */
.card-filter {
  position: relative;
}

.card-filter label {
  /* flex: 0 0 130px;  */
  position: absolute;
}

.card-filter .form-select {
  text-align: end;
  cursor: pointer;
  /* width: auto;  */
}


/* ========================================== 
FEATURE TEXT IMAGE
========================================== */
.FeatureText h6 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.FeatureText p {
  line-height: 32px;
  color: var(--davy-grey);
  margin: 50px 0px;
}

/* ========================================== 
FEATURE ICON TEXT
========================================== */
.FeatureIconInfo p {
  margin: 0;
  color: var(--davy-grey);
  line-height: 32px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 96px;
}

/* ========================================== 
FEATURE PRODUCTS CARD
========================================== */
.ProductCard {
  border: 1px solid var(--platinum);
  border-radius: 10px;
  padding: 12px;
}

.product-image {
  line-height: 0;
  overflow: hidden;
  border-radius: 8px;
  height: 300px;
}

@media screen and (max-width: 1700px) {
  .product-image {
    height: 270px;
  }
}

@media screen and (max-width: 575px) {
  .product-image {
    height: 220px;
  }
}

.pricetag {
  position: absolute;
  top: 20px;
  padding: 26px 18px;
  background-color: var(--primary-color);
  color: var(--pure-white);
  left: 20px;
  font-size: 20px;
  font-weight: 500;
}

.product-info p {
  line-height: 32px;
  color: var(--davy-grey);
  margin-bottom: 0px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.white-text * {
  color: #fff !important;
}


/* ========================================== 
VIDEO WITH POPUP
========================================== */
.VideoWithPopup {
  /* line-height: 0px; */
  width: 100%;
  height: 65vh;
  min-height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #000;
  opacity: 0.2;
}

.VideoWithPopup video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;

}

/* .VideoWithPopup svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  cursor: pointer;
} */

.video-text {
  position: relative;
  z-index: 2;
  width: 100%;
} 
.video-text .page-width {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
}

#video_play {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

#video_play.hidden {
  opacity: 0;
  pointer-events: none;
}

@media screen and (max-width: 1200px) {
  .VideoWithPopup {
    max-height: 500px;
  }
}

@media screen and (max-width: 575px) {
  .VideoWithPopup {
    height: 45vh;
  }

  .VideoWithPopup svg {
    max-width: 100px;
    max-height: 100px;
  }
}

/* .VideoWithPopup .img-fluid {aspect-ratio: 16 / 5.5;} */
.video-pop-btn {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}


/* ========================================== 
WHY CHOOSE HI
========================================== */
.WhyChooseHI::before {
  position: absolute;
  content: "";
  width: 100%;
  background-color: #F3F3F0;
  height: 60%;
  top: 0;
  left: 0;
  right: 0;
}

.why-about-info h4 {
  margin-bottom: 0;
  height: 57.6px;
}

.why-about-info p {
  margin-bottom: 0;
  color: var(--davy-grey);
  max-width: 380px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.WhyChooseBox .swiper-button {
  width: calc(var(--swiper-navigation-size) / 44* 50);
  height: calc(var(--swiper-navigation-size) / 44* 50);
  transform: translateY(-110%);
}

.WhyChooseHiRoom::before {
  display: none;
}

.why-choose-img {
  height: 550px;
}

@media screen and (max-width: 1700px) {
  .why-choose-img {
    height: 450px;
  }
}

@media screen and (max-width: 575px) {
  .why-choose-img {
    height: 350px;
  }

  .why-about-info h4 {
    height: fit-content;
  }
}

/* ========================================== 
CUSTOMER REVIEWS
========================================== */
.CustomerReview {
  background-image: url(../images/reivew-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.CustomerReview::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(270deg, rgba(171, 132, 94, 0.95) 50.1%, rgba(69, 53, 38, 0.05) 100%);
}

.ReviewBox, .ReviewBox .section_content h6 {
  color: var(--pure-white);
}

.quate-box {
  text-align: right;
  line-height: 0;
}

.testimonial-content p {
  color: var(--platinum);
  font-weight: 500;
  line-height: 28px;
  max-width: 750px
}

.customer-info {
  display: flex;
  align-items: end;
  gap: 54px;
}

.review-star {
  line-height: 0;
}

.customer-name {
  color: var(--pure-white);
  font-size: 18px;
  font-weight: 600;
}

.testimonial .slider__controls {
  margin-top: -20px;
  display: flex;
  justify-content: end;
  gap: 10px;
  position: absolute;
  right: 0;
}

.testimonial .slider__controls .swiper-button {
  position: relative;
  transform: none;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.testimonial .slider__controls .swiper-button-disabled {
  background-color: transparent;
  opacity: 1;
  border-color: var(--platinum);
}

.testimonial .slider__controls .swiper-button-disabled svg path {
  stroke: var(--platinum);
}

.testimonial .swiper-container {
  max-width: 750px;
  margin: 0px;
  position: initial;
}


/* ========================================== 
SEND A REQUEST
========================================== */
.dots-bg {
  background-image: url(../images/dots.bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.requestCard {
  padding: 48px 54px;
  background-color: #FAFAFA;
  position: relative;
  top: 3rem;
  left: 7.5rem;
  min-width: 555px
}

.requestfrom .input-group-text {
  line-height: 0;
  background: var(--pure-white);
  border-left: none;
}

.requestfrom .form-control {
  border-right-color: transparent;
}

.requestfrom textarea.form-control {
  border-right-color: var(--platinum);
}

.form-control:focus, .form-select:focus {
  box-shadow: none;
  outline: none;
  border-color: var(--platinum);
}

/* ========================================== 
AVAILABILITY CHECK
========================================== */
.CheckAvailability {
  margin-top: 12rem;
  margin-bottom: 50px;
}

.Availability-check {
  background-image: url(../images/hica.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--pure-white);
}

.AvailabilityOverlay {
  background-color: rgba(25, 37, 59, 0.7);
  padding: 7.2rem 14rem 7.2rem 21rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

.Availability-check .section_content p, .Availability-check .section_content h6 {
  color: var(--pure-white);
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 0;
}

.call-icon-text {
  display: flex;
  align-items: center;
  gap: 27px;
}

.calltoction-ck {
  position: relative;
}

/* ========================================== 
ROOMS HERO BANNER
========================================== */
.rooms_hero-banner {
  /* background-image: url('../images/rooms-cover.webp'); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.rooms_hero-banner::before {
  opacity: 0.3 !important;
}


/* ========================================== 
ROOMS IMAGES WITH SLIDER
========================================== */
.ImageSliderWith p {
  /* line-height: 32px; */
  line-height: 180%;
  color: #575757;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.rooms-imaegs {
  line-height: 0;
  position: relative;
}

.OfferTag {
  position: absolute;
  width: 109px;
  height: 109px;
  background-color: var(--pure-black);
  border-radius: 100px;
  text-align: center;
  color: var(--primary-color);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 31px;
  text-transform: uppercase;
  margin: 20px;
}

.RoomImageBlockSlider .swiper-button {
  background-color: rgba(255, 255, 255, 0.6);
}

.percentag {
  font-size: 24px;
}

.off-text {
  font-size: 28px;
}


/* ========================================== 
HOTEL FACILITIES
========================================== */
.FacilitiesList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 30px;
}

.FacilitiesIcon h5 {
  font-size: 1.125rem;
}

/* ========================================== 
ROOM DETAILS
========================================== */
.RoomFullDetails h2 {
  font-weight: normal;
}

.roomcontent p {
  line-height: 32px;
  color: #575757;
}

.rooms-photos, .r-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 6px;
  position: relative;
}

.seeallphoto {
  position: absolute;
  left: 50%;
  /* right: 0; */
  transform: translateX(-50%);
  bottom: -17px;
  margin: 0px auto;
}

.seeallphoto .btn-primary {
  background-color: #3A9492;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  min-height: 48px;
}

.RoomFullDetails h2, .reserver-room h2 {
  font-size: 24px;
  letter-spacing: 0;
}

.AmenitiesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.amenitiescard {
  background-color: #3A94921A;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  /* border-radius: 5px; */
}

.AmenitiesList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: center;
}

.AmenitiesList li {
  position: relative;
  padding-left: 45px;
}

.AmenitiesList li::before {
  background-image: url(../images/icon-check-square.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.IncludedAmenitiesList {
  gap: 15px;
  grid-template-columns: 1fr;
  display: grid;
  color: var(--davy-grey);
}

.HousRulesGrid {
  border: 1px solid var(--platinum);
  padding: 0px 20px;
}

.HouseRulesCard {
  border-bottom: 1px solid var(--platinum);
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
}

.HouseRulesCard p {
  margin-bottom: 0;
  color: var(--davy-grey);
  line-height: 32px;
}

.hr-icon-lable {
  display: flex;
  gap: 10px;
  font-weight: 600;
  align-items: center;
}

.HouseRulesCard:last-child {
  border-bottom: none;
}

.hr-icons {
  line-height: 0;
}

.payment-icons img {
  border: 1px solid #E5E5E5;
  max-width: 56px;
  height: auto;
}

.payment-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.ourpolicy {
  border: 1px solid var(--platinum);
  padding: 10px;
  margin-bottom: 15px;
  margin-top: 15px;
  display: grid;
  gap: 10px;
}

.ourcard {
  border-bottom: 1px solid var(--platinum);
  padding-bottom: 10px;
}

.ourcard:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ourcard span+span {
  color: #00BF1D;
  font-weight: 600;
}

.ourcard {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.Accordions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.title_tab {
  position: relative;
  background-color: #F5F5F5;
  padding: 20px;
  padding-right: 50px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #575757;
  font-family: "Jost";
  transition: all 0.9s;
}

.inner_content p {
  margin: 0;
  padding: 28px 0px 0px 20px;
  line-height: 30px;
  color: #575757;
  font-size: 14px;
}

.r-form-header h5 {
  font-family: "Inter";
  font-weight: 500; 
}

.title_tab.active {
  background-color: #172434;
  color: var(--pure-white);
}

.inner_content {
  display: none;
}

.title_tab::before, .title_tab::after {
  position: absolute;
  content: "";
  background-color: #575757;
  right: 20px;
  top: 50%;
  width: 16px;
  height: 3px;
  border-radius: 50px;
  transition: all 0.9s;
}

.title_tab::after {
  transform: rotate(90deg);
}

.title_tab.active::after {
  transform: rotate(0);
  background-color: var(--pure-white);
}

/* ========================================== 
RESERVE
========================================== */
.reserver-room {
  /* box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25); */
  box-shadow: 0px 3px 11.25px 0px #00000040;
  border-radius: 11px;
  padding: 30px;
}

.reserver-room h2 {
  font-weight: 500;
}

.roomcost, .rprice span {
  color: var(--davy-grey);
}

.rprice {
  font-size: 24px;
  font-weight: 500;
  color: var(--pure-black);
}

.alert-text {
  color: #FF0303;
}

.select-option label.alert-text {
  flex: 1;
}

.form-sub-text h3 {
  font-weight: 400;
  margin: 0;
}

.input-checkbox {
  min-height: 55.6px;
}

.input-checkbox.checked {
  opacity: 0.5;
}

.input-checkbox .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.input-checkbox .form-group label {
  position: relative;
  cursor: pointer;
}

.input-checkbox .form-group label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 2px solid var(--davy-grey);
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 3px;
}

.input-checkbox .form-group input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 10px;
  width: 6px;
  height: 14px;
  border: solid var(--davy-grey);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkboxvalue-text select.form-select {
  border: 1px solid var(--platinum);
  border-radius: 0;
  width: 59px;
  height: 34px;
  background-position: right 10px center;
  padding: .375rem 2.25rem .375rem .75rem;
}

.tc_link, .tc_link:hover {
  color: #172434;
  font-size: 14px;
}


span.info-icon {
  line-height: 0;
}


/* ========================================== 
TERMS & CONDITIONS POPUP
========================================== */
.teams-content {
  max-width: 1270px;
}

.teams-content h4 {
  color: var(--davy-grey);
  margin-bottom: 0px;
}

.team-box {
  color: var(--davy-grey);
  line-height: 32px;
  height: 340px;
  margin-bottom: 30px;
  padding-right: 6px;
}

.agreelink label {
  color: var(--primary-color);
  font-weight: 600;
}

.agreelink .form-group label:before {
  border-color: var(--primary-color);
}

.agreelink.input-checkbox {
  min-height: 100%;
}

.agreelink .form-group input:checked+label:after {
  border-color: var(--primary-color);
  left: 9px;
}

.teams-content .fancybox-close-small {
  top: 0 !important;
  right: 0 !important;
}

.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
  display: none;
}

.mCSB_scrollTools .mCSB_draggerContainer {
  background-color: #D9D9D9;
  width: 2px;
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: #E0A551 !important;
}

.mCSB_scrollTools .mCSB_dragger {
  left: -1px;
}

.fancybox-slide--html .fancybox-close-small {
  color: #3A9492;
  opacity: 1;
  border: 2px solid;
  border-radius: 100px;
  right: 14px;
  top: 14px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fancybox-button svg {
  height: 28px;
  width: 28px;
}
.fancybox-button svg path {
  fill: #3A9492;
}
.fancybox-content * {
  margin: 20px 0;
}
.fancybox-content button {margin: 0;}
.fancybox-content *:first-child {margin-top: 0;}
.fancybox-content *:last-child {margin-bottom: 0;}
@media screen and (max-width: 575px) {
.fancybox-content * {
  margin: 10px 0;
}
}
/* ========================================== 
CHECKOUT
========================================== */
.checkout_hero-banner {
  background-image: url('../images/reserve-bg.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.checkout_hero-banner::before {
  opacity: 0.2; 
}

.iti {
  display: block !important;
}

.ReservationG {
  border: 1px solid var(--platinum);
  padding: 30px;
  border-radius: 10px;
}

.form-note {
  color: var(--davy-grey);
}

.input-with-icon .input-group-text {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 11;
  background-color: transparent;
  border: none;
}

.input-with-icon input.form-control {
  border-radius: 10px !important;
}

.global-form .form-group label.h2 {
  color: var(--pure-black);
}

/* ========================================== 
BOOKING SUMMARY
========================================== */
.summary-card {
  border-bottom: 1px solid var(--platinum);
  padding-bottom: 18px;
  gap: 10px;
}

.summary-info {
  flex: 1;
}

.summary-card h5, .summary-card p {
  margin: 0;
}

.summary-card p {
  color: var(--davy-grey);
}

.summary-card p strong, .room-price p {
  color: var(--pure-black);
}

.border-b-1 {
  border-bottom: 1px solid var(--platinum);
  padding-bottom: 18px;
}

span.small-dots {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 100px;
  background-color: var(--davy-grey);
  margin-right: 0px;
}

.confrim-info p.h4 {
  color: #3A9492;
}

.booking-details {
  gap: 30px;
}
.booking-details span { 
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.bd-info {
  border-right: 1px dashed #BEBEBE;
  padding-right: 47px;
}

.bd-info:last-child {
  padding-right: 0;
  border-right: none;
}

span.icon-chevron-left {
  vertical-align: -6px;
  line-height: 0;
}

.address-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  /* color: var(--davy-grey); */
}

.customer-address {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
}

.address-card p {
  margin-bottom: 0;
}

.address-card img {
  vertical-align: -6px;
  margin-right: 10px;
}

.address-card p span+span {
  margin-left: 16px;
}

.table-header {
  border: 1px solid var(--platinum);
  border-radius: 10px;
  padding: 14px 21px;
}

.table-body {
  border: 1px solid var(--platinum);
  border-radius: 10px;
  padding: 31px 21px;
}

.table-content h5, .table-content p {
  margin-bottom: 0;
}

.td .text-decoration-line-through {
  color: #BEBEBE;
}

.table-total {
  font-size: 32px;
  font-weight: 600;
}

.table-footer.border-line-top {
  padding-top: 1rem;
}

.border-line-top::before {
  position: absolute;
  content: "";
  width: 24%;
  height: 1px;
  background-color: #3A9492;
  top: 0;
  right: 0;
}

.table-footer .h4 {
  margin-bottom: 0;
}


/* ========================================== 
SPECIAL OFFER
========================================== */
.Specialoffers_hero-banner::before {
  display: none;
}

.Specialoffers_hero-banner .hero-content {
  max-width: 100%;
  color: var(--pure-black);
}

.Specialoffers_hero-banner .hero-content h6 {
  color: var(--primary-color);
  margin-bottom: 0;
}

.page-lg-width {
  max-width: 1150px;
}

.icon-text-box p, .icon-text-box li {
  color: var(--davy-grey);
  line-height: 32px;
  margin-bottom: 0;
}


/* ========================================== 
SPECIAL DETIALS
========================================== */
.pricewithbooking {
  margin-top: -85px;
  position: relative;
}

.SpecialDetials_hero-banner {
  background-image: url(../images/SD-hero-banner.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.SpecialDetials_hero-banner::before {
  opacity: 0.2;
}

.page-sm-width {
  max-width: 828px;
}

.pr-card {
  padding: 23px 10px;
  color: var(--pure-white);
  text-align: center;
}

.pr-card.pr-price {
  background: var(--primary-color);
}

.pr-booking {
  background-color: #AB845E;
}

.pr-booking-btn {
  border: 1px solid var(--pure-white);
  height: 100%;
  padding: 0px 30px;
}

.pr-booking-btn a {
  color: var(--pure-white);
}


/* ========================================== 
ADDITIONAL SERVICES
========================================== */
.AdditionalServices_hero-banner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.services_icon-text_card {
  border: 1px solid var(--platinum);
  height: 100%;
  padding: 30px;
  border-radius: 10px;
  transition: all 0.9s;
  cursor: pointer;
}

.services_icon-text_card:hover, .active-services {
  background-color: #F5F5F5;
  border-color: transparent;
}

.services_icon-text-box h4 {
  margin-bottom: 1rem;
  color: #000;
}

.services_icon-text-box p {
  margin-bottom: 0;
  color: var(--davy-grey);
  line-height: 32px;
}

.services_icon-text_card:hover .btn-secondary, .active-services .btn-secondary {
  color: var(--pure-white);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.services_icon-text_card:hover .btn-secondary .arrow-right, .active-services .btn-secondary .arrow-right {
  filter: brightness(10);
}

.RequestPopup-content {
  width: 1100px;
}


/* ========================================== 
HOTEL FACILITIES & DETAILS
========================================== */
.HotelFacilities_hero-banner {
  background-image: url(../images/HF-hero-banner.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.HotelFacilities_hero-banner::before {
  opacity: 0.1;
}

.HotelFacilitiesD_hero-banner {
  background-image: url(../images/SD-hero-banner.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.HotelFacilitiesD_hero-banner::before {
  opacity: 0.2;
}

.HotelFacilitiesD_hero-banner .hero-content {
  max-width: 100%;
}

.ColumnImage {
  line-height: 0;
  margin-bottom: 36px;
}

.TextColumn p {
  line-height: 32px;
  color: var(--davy-grey);
  margin-top: 1rem;
}

.tct-points {
  margin: 0;
  padding: 0;
  list-style: inside;
  color: var(--davy-grey);
  margin-top: 1.5rem;
  line-height: 32px;
}

/* ========================================== 
BLOG LIST
========================================== */
.BlogList_hero-banner {
  /* background-image: url(../images/contact-hero-banner.webp); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.BlogList_hero-banner::before {
  opacity: 0.2;
}

.ArticalDate {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 96px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.56);
  border-radius: 5px;
  font-weight: 500;
}

.add-text {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.MonthName {
  font-size: 24px;
  line-height: 31px;
}

.DayText {
  font-size: 39px;
  line-height: 38px;
}

.article-content p {
  line-height: 32px;
  color: var(--davy-grey);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.pagination {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.pagination li {
  flex: 0 0 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagicard {
  border: 1px solid #D2D2C7;
  border-radius: 100px;
}

.pagicard a {
  color: #808080;
  font-size: 14px;
  letter-spacing: 1px;
}

.pagicard.active, .pagicard:hover {
  background-color: #E0A551;
  border-color: #E0A551;
}

.pagicard.active a, .pagicard:hover a {
  color: var(--pure-white);
}

.pagi-next .pagination-arrow {
  transform: rotate(-180deg);
}

.pagi-disable {
  opacity: 0.5;
  pointer-events: none;
}

.pagination-arrow {
  line-height: 0;
}


/* ========================================== 
BLOG DETAILS
========================================== */
.PopularPosts {
  border: 1px solid var(--platinum);
  padding: 30px 20px;
  margin-bottom: 30px;
}

.PopularPosts h4 {
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 500;
}

.blog-full-details p {
  line-height: 32px;
  color: #575757;
}
.blog-full-details h1, .blog-full-details h2 {
  font-weight: 600;
  letter-spacing: 0;
  margin: 40px 0;
}
.blog-full-details h1 {
  font-size: 34px;
}
.blog-full-details h2 {
  font-size: 32px;
}
.blog-full-details *:first-child {margin-top: 0;}
.blog-full-details *:last-child {margin-bottom: 0;}


.blog-full-details blockquote {
  font-size: 22px;
  line-height: 40px;
  font-style: italic;
  font-weight: 300;
  color: var(--davy-grey);
}

.icon-quate-gray {
  line-height: 0;
  flex: 0 0 70px;
}

.more-blog-images {
  grid-template-columns: 1fr 1fr;
}

.popuplar-grid-item {
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
}

.popluar-heading h5 {
  font-weight: 500;
}

.popuplar-img img {
  height: 116px;
}

.YouMayAlsoLike {
  margin-bottom: -3rem;
}

.YouMaylImage {
  line-height: 0;
  margin-bottom: 36px;
}

.TextYouMay p {
  line-height: 32px;
  color: var(--davy-grey);
  margin-top: 1rem;
}


/* ========================================== 
GALLERY
========================================== */
.Gallery_hero-banner {
  /* background-image: url(../images/contact-hero-banner.webp); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* .Gallery_hero-banner::before {
  background: linear-gradient(180deg, #0e0905 0%, rgba(120, 95, 69, 0.03) 100%);
} */

.GalleryOverlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(224, 165, 81, 0.6);
  margin: 30px;
  transition: all 0.9s;
  transform: scale(0);
}

.GalleryCard:hover .GalleryOverlay {
  transform: scale(1);
}

.GalleryOverlay h4 {
  color: var(--pure-white);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.GalleryOverlay .btn-primary {
  border-color: var(--pure-white);
}

.contact-img-text {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-img {
  line-height: 0;
  border-radius: 100px;
  overflow: hidden;
  flex: 0 0 144px;
  height: 144px;
}

.contact-info p {
  margin-bottom: 0px;
  line-height: 28px;
  color: var(--davy-grey);
}

/* ========================================== 
CONTACT US
========================================== */
.ContactUs_hero-banner {
  /* background-image: url(../images/contact-hero-banner.webp); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* .ContactUs_hero-banner::before {
  background: linear-gradient(180deg, #0e0905 0%, rgba(120, 95, 69, 0.03) 100%);
} */

.contact-card {
  border: 1px solid var(--platinum);
  border-radius: 10px;
  padding: 30px 20px;
}

.contact-address a {
  color: var(--davy-grey);
}

.getintouch {
  border-top: 1px solid var(--platinum);
  margin-top: 50px;
  padding-top: 50px;
}

.contact-form {
  padding: 50px;
  background-color: #FFFFFFB2;
  backdrop-filter: blur(7px);

  /* border-radius: 10px; */
}

.contact-form-bg {
  background-image: url('../images/formbc.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px;
}


/* ========================================== 
CMS
========================================== */
.CMS_hero-banner {
  /* background-image: url(../images/contact-hero-banner.webp); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* .CMS_hero-banner::before {
  background: linear-gradient(180deg, #0e0905 0%, rgba(120, 95, 69, 0.03) 100%);
} */

.cms-page-content {
  color: var(--davy-grey);
  line-height: 32px;
}

.cms-page-content h4 {
  font-weight: 500;
  margin-bottom: 18px;
  color: #383838;
}


/* ========================================== 
FOOTER
========================================== */


.main_footer {
  
  color: var(--pure-white);
  font-weight: 500;
}

.main_footer a {
  color: var(--pure-white);
  word-break: break-word;
}

.footer-text_link {
  padding: 60px 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.border-right {
  border-right: 1px solid var(--pure-white);
}

.remove-br {
  border-right: none;
}

.footer_social-media {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 0px;
  padding: 0px;
}

.footer_social-media img {
  filter: brightness(10);
}

.footer-bottom {
  padding: 40px 0px;
  border-top: 1px solid var(--pure-white);
  font-weight: 400;
}

.small-seprate {
  display: inline-block;
  width: 1px;
  height: 11px;
  background: var(--pure-white);
  margin: 0px 5px;
}


.global-form .form-control, .global-form .form-select, .global-form .btn {
  padding: 15px 16px;
  resize: none;
}

.full-link {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}

.blog-details-gallery {
  height: 410px;
  grid-auto-rows: 410px;
  overflow: hidden;
}

.roomcontent h1 {
  font-size: 32px;
  font-weight: 600;
}

.r-photos-grid a {
  height: 100%;
}

@media screen and (max-width: 1399px) {
  .blog-details-gallery {
    height: 340px;
    grid-auto-rows: 340px;
  }

  .roomcontent h1 {
    font-size: 30px;
  }
}

@media screen and (max-width: 1199px) {
  .blog-details-gallery {
    height: 230px;
    grid-auto-rows: 230px;
  }

  .roomcontent h1 {
    font-size: 28px;
  }
}

@media screen and (max-width: 992px) {
  .roomcontent h1 {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 769px) {
  .blog-details-gallery {
    height: 470px;
    grid-auto-rows: 230px;
    gap: 10px !important;
  }

  .copy-row {
    flex-direction: column-reverse;
  }

  .copyright-text {
    font-size: 12px;
    margin-top: 5px;
  }

  .roomcontent h1 {
    font-size: 26px;
  }
}

.privacy-cookies * {
  border: none !important;
  color: #172434;
}

.privacy-cookies a {
  color: #3A9492;
  transition: all 0.5s;
}

.GalleryCard, .GalleryPhoto {
  height: 100%;
}

.GalleryPhoto .arrow-right {
  display: flex;
  width: 24px;
  height: 24px;
  background-image: url('../images/arrow-right.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.GalleryPhoto .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.RoomImageBlockSlider .swiper-container {
  height: 400px;
}

.RoomImageBlockSlider .swiper-container .rooms-imaegs {
  height: 100%;
}

.RoomImageBlockSlider .swiper-container .rooms-imaegs img {
  object-position: center;
}

@media screen and (max-width: 575px) {
  .RoomImageBlockSlider .swiper-container {
    height: 250px;
  }

  .feature-content * {
    text-align: center;
  }
}

.gallery-text * {
  text-align: center;
}

body {
  padding-top: 125px;
}

/* fade za overlay */
.opening-wrap {
    animation: fadeInOverlay 0.4s ease;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* mali “pop” efekt za popup */
.opening-container {
    animation: popupIn 0.35s ease;
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


.opening-wrap {
  position: fixed;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opening-container {
  max-width: 720px;
  max-height: 100%;
  background-color: #fff;
  position: relative;
}

.opening-container img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
}

.opening-text {
  padding: 40px 50px;
}

.opening-text * {
  text-align: center;
}

.opening-text span, .opening-text a {
  color: #E0A551;
}

.opening-text span {
  display: block;
}

.opening-text a {
  font-weight: 800;
}

.opening-text p {
  color: rgba(25, 37, 59, 0.7);
  font-size: 12px;
  font-weight: 300;
}

.opening-text p:first-of-type{
  font-size: 14px;
}

.opening-text h2 {
  color: #19253B;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 32px;
  margin: 10px 0 30px;
}

.close-opening {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 25px;
  height: 25px;
  z-index: 3;
  background-image: url('../images/close-white.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.ContactUs-map {
  height: 65vh;
  width: 100%;
}


.Yourdetails .input-group input {
  background-color: #fff;
  background-image: url('../images/icon-clock.svg');
  background-repeat: no-repeat;
  background-position: calc(100% - 16px);
}

.back-to-home a {
  display: flex;
  align-items: center;
}

select.form-select {
  width: fit-content;
  /* margin-left: auto; */
  width: 100%;
}

@media screen and (max-width: 1600px) {
  .opening-container img {
    height: 300px;
  }
}

@media screen and (min-width: 1200px) {
  .fixed-header {
    /* transform: translateY(-54px); */
    /* padding-bottom: 0; */
    transition: all 0.5s ease-in-out;
  }

  .fixed-header .brand-logo img {
    width: 100px;
    object-fit: contain;
    object-position: bottom;
  }

  .fixed-header .sidenav {
    /* height: calc(100vh + 93px); */
    height: 100vh;
  }

  /* .fixed-header .navbar-new {
    margin-bottom: -15px;
  } */

}

@media screen and (max-width: 1200px) {
  body {
    padding-top: 64px;
  }

  .opening-container {
    overflow-y: scroll;
  }

  .ContactUs-map {
    max-height: 400px;
  }

  .sidenav.open {
    transform: translate(0, 0);
    height: 100svh;
  }
}

.toggle-button, .mobile-book-btn {
  display: none;
}

@media screen and (max-width: 768px) {
  body {
    padding-top: 60px;
  }

  .opening-text {
    padding: 30px 20px;
  }

  .opening-container img {
    height: 200px;
  }

  .min-none {
    display: none;
  }

  .PhotoGallary .row>* {
    margin-top: 5px;
  }

  .GalleryCard {
    height: 210px;
  }

  .GalleryCard .GalleryOverlay {
    transform: scale(1);
    background-color: transparent;
    background-color: rgba(0, 0, 0, 0.2);
  }

  .GalleryPhoto .btn-primary {
    font-size: 14px;
    padding: 7px 14px;
  }

  .GalleryPhoto .arrow-right {
    width: 15px;
    height: 20px;
  }

  .ContactUs-map {
    height: 35vh;
  }

  /* .home_hero-banner {
    background-image: url('../images/mobile2.jpg');
  } */

  .roomcontent p {
    line-height: 28px;
  }

  .room-description {
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* max-height: calc(1.2em * 5); */
    /* padding-bottom: 2em;  */
  }

  .room-description.expanded {
    -webkit-line-clamp: unset;
    max-height: none;
    overflow: visible;
    padding-bottom: 0;
  }

  .toggle-button {
    display: inline-block;
    position: absolute;
    bottom: 5px;
    right: 0;
    background: linear-gradient(to right, transparent, #fff 40%);
    padding: 0 6px;
    font-size: 1em;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    font-weight: 600;
  }

  .room-description.expanded .toggle-button {
    position: static;
    background: none;
    padding-left: 0;
    margin-top: 0.5em;
  }

  .mobile-book-btn {
    display: inline-block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    width: fit-content;
  }
}

@media screen and (max-width: 576px) {
  .AmenitiesGrid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .amenitiescard {
    padding: 10px !important;
  }

  .amenitie-icon {
    width: 42px;
    height: 42px;
  }

  .amenitie-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .amenitiescard span {
    font-size: 14px;
  }

  .input-checkbox .form-group label {
    font-size: 12px;
  }

  .checkboxvalue-text span {
    font-size: 12px;
    margin-left: 5px;
    text-align: end;
  }

  .input-checkbox{
    padding: 10px;
  }

  .summary-card h5 {
    font-size: 1rem;
  }

  .total-sub-total .davy-grey {
    font-size: 12px;
  }

  .form-next-step-btn span.info-icon img {
    width: 17px;
    height: 17px;
  }

  .checkboxvalue-text select.form-select {
    width: 50px;
    background-position: right 7px center;
    padding: .375rem 1.9rem .375rem .55rem;
  }
}

.form-next-step-btn .btn-primary {
  text-transform: none;
  min-height: 45px;
  font-family: "Inter";
  font-weight: 600;
  background-color: #3A9492;
}

.disabledbtn {
  opacity: 0.6;
  cursor: auto;
}

.disabledbtn:hover {
  background-color: var(--primary-color);
}


/* New Header Styles - Based on Figma Design */

.header-new .header_top {
  background-color: #fff;
  border-bottom: 1px solid rgba(221, 188, 131, 0.2);
  padding: 15px 0;
  margin-bottom: 0 !important;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.header-new .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-new .header-wrapper .left-header {
  width: 100%;
}

.header-new .header_top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-new .header_top-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-new .header-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.header-new .header-contact-item img {
  opacity: 0.6;
}

.header-new .header-contact-item a {
  color: rgba(25, 37, 59, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 12px;

}

.header-new .header-contact-item a:hover {
  color: var(--primary-color, #B8935A);
}

.header-new .header_top-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-new .top_nav-social {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-new .top_social_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #333;
  transition: color 0.3s ease;
}

.header-new .top_social_link:hover {
  color: var(--primary-color, #B8935A);
}

.header-new .top_social_link img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.header-new .lang-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-new .lang-list li a {
  padding: 5px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
  transition: color 0.3s ease;
}
.header-new .lang-list.desktop-lang li a {
  border-top: 2px solid transparent;
  padding: 10px 5px;
}
.header-new .lang-list.desktop-lang li a.active {
  border-color: #fff;
  font-weight: 700;
}

/* .header-new .lang-list li a:hover,
.header-new .lang-list li a.active {
  color: #19253B;
  font-weight: 600;
} */



.header-new .navbar-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  position: relative;
}

.header-new .brand-logo {
  flex-shrink: 0;
  width: 100%;
  max-width: 222px;
  height: 96px;
}

.header-new .brand-logo .navbar-brand {
  display: block;
	width:100%;
	height:100%;
}

.header-new .brand-logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.header-new .nav_main {
  flex: 1;
  display: flex;
  justify-content: space-between;

}
.mobile-logo {
  display: none;
}

.header-new .navbar_nav {
  display: flex;
  align-items: center;
  gap: 35px !important;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  justify-content: space-between;
  /* margin-right: 250px; */
}

.header-new .nav_item {
  position: relative;
}

.header-new .nav_link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.header-new .nav_link:hover {
  color: #B19D68;
}

.header-new .nav_link.active-nav {
  color: #B19D68;
}


.header-new .hamburger-menu {
  cursor: pointer;
  padding: 5px;
  display: none;
  align-items: center;
  justify-content: center;
}

.header-new .hamburger-menu:hover {
  opacity: 0.7;
}

.header-new .mobile-lang {
  display: none;
}

.card-filter details summary::-webkit-details-marker {
        display: none;
      }



@media (max-width: 1199px) {
  .header-new .header_top {
    padding: 8px 0;
  }

  .header-new .header_top-left {
    gap: 15px;
  }

  .header-new .header-contact-item {
    font-size: 12px;
  }

  .header-new .header-contact-item img {
    width: 14px;
    height: 14px;
  }

  .header-new .header_top-right {
    gap: 15px;
  }

  .header-new .top_nav-social {
    gap: 10px;
  }

  .header-new .navbar-new {
    padding: 12px 0;
  }

  .header-new .brand-logo img {
    height: 50px;
  }

  .header-new .nav_main {
    display: none !important;
  }
  .mobile-logo {
    display: flex;
    width: fit-content !important;
  }

  .header-new .header-wrapper .left-header {
    display: flex;
    justify-content: flex-end;
  }

  .header-new .brand-logo {
    height: 50px;
  }

  .header-new .hamburger-menu {
    display: flex;
  }

}

@media (max-width: 768px) {
  .header-new .header_top-inner {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .header-new .header_top-left,
  .header-new .header_top-right {
    width: 100%;
    justify-content: space-between;
  }

  .header-new .header_top-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .header-new .navbar-new {
    padding: 10px 0;
  }
	
	.header-new .brand-logo .navbar-brand{
		height:100%;
	}

  .header-new .brand-logo img {
    height: 100%;
  }

  .header-new .top_nav-social {
    gap: 8px;
  }

  .header-new .top_social_link img {
    width: 16px;
    height: 16px;
  }
}

/* .fixed-header.header-new .header-wrapper {
  align-items: flex-end;
} */

.fixed-header.header-new .brand-logo {
  max-width: 222px;
    height: 50px;
    transition: all 0.5s ease-in-out
} 

.centered-hero-content{
  margin: 0px auto;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.privacy-cookies h2, .privacy-cookies h3, .privacy-cookies h4 {
  font-size: 18px;
  font-weight: 500;
  margin: 30px 0;
}


.about-page-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  .about-page-wrapper {
    flex-direction: column;
  }
}
.about-page-wrapper .top-part {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 48%;
}
@media screen and (max-width: 1199px) {
  .about-page-wrapper .top-part {
    width: 100%;
  }
}
.about-page-wrapper .top-part .about-first-text {
  padding: 0;
  width: 100%;
}
/* .about-page-wrapper .top-part .about-first-text h2 {
  margin-bottom: 20px;
} */
@media screen and (max-width: 767px) {
  .about-page-wrapper .top-part .about-first-text h2 {
    font-size: 27px;
  }
}
.about-page-wrapper .top-part .about-first-text p {
  margin-bottom: 15px;
  line-height: 28px;
}
.about-page-wrapper .top-part .left-about-image {
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .about-page-wrapper .top-part .left-about-image {
    display: none;
  }
}
.about-page-wrapper .top-part .left-about-image img {
  width: 100%;
  height: 540px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.about-page-wrapper .bottom-part {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.inner_hero-banner{
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1199px) {
  .about-page-wrapper .bottom-part {
    width: 100%;
  }
}
.about-page-wrapper .bottom-part .about-first-img {
  padding: 0;
  align-items: stretch;
  width: 100%;
}
.about-page-wrapper .bottom-part .about-first-img img {
  width: 100%;
  height: 540px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 1199px) {
  .about-page-wrapper .bottom-part .about-first-img img {
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .about-page-wrapper .bottom-part .about-first-img img {
    height: 300px;
  }
}
.about-page-wrapper .bottom-part .second-about-paragraph p {
  margin-bottom: 15px;
  line-height: 28px;
}

.ProductCard .product-info h4{
min-height: 58px;
}

.coupon-form {
    width: 100%;
    margin: 30px 0;
        width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.coupon-form form {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.coupon-form .coupon-input {
    border: none;
   background-color: #fff;
    border-bottom: 2px solid #DDBC83;
    padding: 10px 20px 7px 20px;
    width: 70%;
    text-align: left;
    color: #19253B;
 
}

.coupon-form .coupon-input:focus{
  outline: none;
}

.coupon-form .coupon-button {
    width: 30%;
    background-color: #DDBC83;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    border: none;
    padding: 10px;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.cupon-form  {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(217, 217, 217, 0.26);
    border-radius: 10px;
    padding: 9px 16px;
}

.cupon-form input{
      width: 100%;
      border: none;
      background-color: transparent;
}

.cupon-form input:focus{
  outline: none;
}

.cupon-form button{
    font-family: "Inter";
    display: inline-block;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
appearance: none;
    padding: 10.45px 20px;
    font-size: 12px;
    /* border-radius: 10px; */
    border:none;
  
}

.coupon-message {
    margin-top: 10px;
    font-size: 14px;
    color: #d9534f;
    position: absolute;
    bottom: -20px;
}

.coupon-form .copy-wrapper{
  display: flex;
}

.coupon-banner-wrapper {
    position: fixed;
    bottom: 0;
    /* left: 100px; */
    left: 10px;
    width: 100%;
    max-width: 300px;
    background-color: #fff;
    z-index: 8;
}

.coupon-banner-wrapper .accordion {
    background: #19253B url(../images/arr-down-acc.svg) no-repeat;
    background-position: calc(100% - 10px);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #fff;
}

.coupon-banner-wrapper .coupon-banner-text {
    padding: 0px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.coupon-banner-wrapper .accordion.active + .coupon-banner-text {
    max-height: 140px;
    padding: 10px;
}

.coupon-banner-wrapper .coupon-banner-text p {
    font-weight: 400;
    font-size: 12px;
    color: var(--popup);
    letter-spacing: 1px;
    text-align: center;
}

.coupon-banner-wrapper .coupon-banner-text p span {
    font-weight: 800;
}

.coupon-banner-wrapper .copy-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.coupon-banner-wrapper .copy-wrapper .coupon-input {
     border: none;
   background-color: #fff;
    border-bottom: 2px solid #DDBC83;
    padding: 10px 20px 9.5px 20px;
    width: 65%;
    text-align: left;
    color: #19253B;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;

}

.coupon-banner-wrapper .copy-wrapper .coupon-button {
    width: 35%;
    background: #DDBC83 url(../images/copy-image.png) no-repeat;
    background-position: calc(100% - 10px);
    font-family: "Poppins", sans-serif;
    display: inline-block;
    line-height: 1.5;
    color: #fff;
    text-align: left;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
appearance: none;
 padding: 10px;
    font-size: 14px;
    font-weight: 400;
    border:none;

}

.coupon-banner-wrapper .copy-wrapper .coupon-button.copied-opacity{
  opacity: 0.7;
}

.global-form .form-select.contact-select {
  width: 100%;
  text-align: left;
  appearance: none;
}

.contact-img img{
  object-fit: cover;
  object-position: center;
}

footer{
  background-color: #172434;
}

footer .footer-text {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 2px;
    background-color: #3A9492;
    padding: 20px 0;
}
footer .footer-text .page-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer-text a {
  font-size: 16px;
  letter-spacing: 0.35px;
  color: #fff;
}

footer .Copyright{
  background-color: #3A9492;
}
footer .footer-logo {
    width: 100%;
    max-width: 254px;
    height: 224px;
    padding-bottom: 24px;
    border-bottom: 1px solid #FFFFFF33;
}

footer .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* footer .phone.first-phone{
  padding-top: 20px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
} */
footer .phone {
  margin-top: 20px;
}
footer .phone a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.35px;
    transition: all 0.5s;
}
footer .phone a:hover {
  color: #B19D68;
}

footer h3 {
    font-size: 24px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.5px;
}

footer .navigation{
  list-style: none;
    padding-left: 0px;
}

footer .navigation li{
  margin-bottom: 15px;

}

footer .navigation li a{
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  display: flex;
  align-items: center;
  letter-spacing: 0.35px;
   transition: all 0.5s ease-in-out;
}

footer .navigation li a::before{
  content: "";
  display: block;
  height: 1px;
  width: 0px;
  background-color: #C7AA7C;
  opacity: 0;
   transition: all 0.5s ease-in-out;
}

footer .navigation li a:hover{
  font-weight: 500;
     transition: all 0.5s ease-in-out;
}

footer .navigation li a:hover::before{
  width: 15px;
  opacity: 1;
  margin-right: 2px;
  transition: all 0.5s ease-in-out;
}

footer .copyright-text {
  color: #fff;
  font-size: 14px;
  /* font-weight: 300; */
}

.foot-title {
  font-family: "Jost";
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.5px;
  color: #fff;
}

footer .copyright-text a{
    color: #fff;
  font-size: 14px;
  /* font-weight: 300; */
}

footer .nav-social{
  justify-content: center;
  gap: 40px;
  margin-top: 0;
}

footer .nav-social li a svg path{
transition: all 0.5s ease-in-out;
}

footer .nav-social li a:hover svg path{
fill: #DDBC83;
transition: all 0.5s ease-in-out;
}

footer .first-col{
  width: 25%;
}
footer .second-col{
  width: 15%;
}
footer .third-col{
  width: 30%;
}
footer .fourth-col{
  width: 15%;
}

.justify-space-between {
    justify-content: space-between;

}

.global-form .form-select.left-select{
  margin-left: 0;
  /* width: 100px; */
  width: 100%;
}


.feature-image-home img{
  height: 700px;
}



.card-filter details{
  width: 100%;
  position: relative;
  height: 36px;
  display: flex;
    align-items: center;
    justify-content: flex-end;
}

.card-filter details summary {
  list-style: none;
  appearance: none;
  /* text-align: end; */
  width: 100%;
  padding-right: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: 100%;
    background-size: 12px 10px;
    font-family: "Inter";
  font-weight: 300;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #555555;
  cursor: pointer;
}

.pb-6 {
    padding-bottom: 4rem;
}

.card-filter details .dropdown-list{
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  z-index: 3;
      background-color: #F5F5F5;
    color: #555555;
    border: 1px solid rgba(85, 85, 85, 0.2);
    /* border-radius: 10px; */
    display: flex;
  flex-direction: column;
    padding: 5px 10px;
    list-style: none;
    max-height: 250px; 
    overflow-y: auto;
  
}

.card-filter details[open] .dropdown-list {
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(.23, 1, .32, 1);
    animation: fpFadeInDown 300ms cubic-bezier(.23, 1, .32, 1);
}

.card-filter details .dropdown-list li {
  cursor: pointer;
  font-family: "Inter";
  font-weight: 300;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
    color: #555555;
    margin: 8px 0;

}
/* .card-filter details .dropdown-list li + li {
  margin-top: 10px;
} */



.feature-image-home.mobile-feature-image-home{
  display: none;
}

.form-select2{
  text-align: left;
  appearance: none;
}

.gallery-wrapper{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-box {
  position: relative;
  height: 260px;
}
.gallery-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.gallery-box .gallery-text {
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  background-color: #17243480;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s;
}
.gallery-box:hover .gallery-text {
  opacity: 1;
}
.gallery-box .gallery-text h2 {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.gallery-box .gallery-text span {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  background-color: #3A9492;
  border: 1px solid #E5E5E5;
  padding: 10px 20px;
  text-align: center;
}
.gallery-box .gallery-text a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* .gallery-wrapper a {
  width: 100%;
  height: 260px;
}

.gallery-wrapper a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
} */


.no-rooms-available{
  margin-bottom: -5rem;
}

footer .first-col h4 {
  color: #fff;
}



@media only screen and (max-width: 1199px) {
.header-new .lang-list li a {

  color: #fff;
 
}
.gallery-box .gallery-text {opacity: 1;}
/* .header-new .lang-list li a:hover, */
.header-new .lang-list li a.active {
  /* color: #B19D68; */
  font-weight: 700;
}

.header-new .lang-list li a {
  padding: 4px 0;
}

footer .first-col{
  width: 45%;
}
footer .second-col{
  width: 45%;
}
footer .third-col{
  width: 45%;
}
footer .fourth-col{
  width: 45%;
}

.feature-image-home img{
  height: 400px;
}

.fixed-header .sidenav.open {
  transform: translate(0, 0px);

}
	
	.fixed-header.header-new .header-wrapper{
		align-items: center;
	}

}

@media only screen and (max-width: 991px) {
.CheckAvailability {
  margin-bottom: 0;
}

.no-rooms-available{
  margin-bottom: 0rem;
}

}

@media only screen and (max-width: 767px) {
  .feature-image-home{
    display: none;
  }
	.col-md-6:has(.feature-image-home){
	margin:0 !important;
	}
	
	
.feature-image-home.mobile-feature-image-home{
  display: block;
  margin-bottom: 20px;
}

.card-filter .form-control {
  padding-left: 0;
}

.filtercard{
  /* background-color: rgba(255, 255, 255, 0.7); */
  padding: 40px 20px;
}

/* .card-filter {
  background-color: #fff;
} */

.gallery-wrapper{

  grid-template-columns: repeat(2, 1fr);
 
}

}

@media only screen and (max-width: 576px) {
    .popup-wrapper .popup-image {
        aspect-ratio: 16 / 9;
    }

    .opening-text h2 {
      font-size: 27px;
    }

    .opening-text span {
      font-size: 14px;
    }

    .opening-text p {
      font-size: 10px;
    }

   .opening-text p:first-of-type {
    font-size: 12px;
   }

    .popup-details-cont .agree-text p {
        font-size: 10px;
    }

    .coupon-form {
      width: 100%;
    }

     .coupon-banner-wrapper {
        left: 20px;
        max-width: 180px;
        transition: max-width 0.3s ease;
        overflow: hidden;
    }

    .coupon-banner-wrapper .accordion {
        font-size: 14px;
    }

    .coupon-banner-wrapper .coupon-banner-text {
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    .coupon-banner-wrapper .copy-wrapper .coupon-input {
        padding: 10px;
        font-size: 10px;
    }

    .coupon-banner-wrapper .copy-wrapper .coupon-button {
      background-image: none;
    }

    footer .first-col{
  width: 100%;
  margin-top: 1rem !important;
}
footer .second-col{
  width: 100%;
   /* margin-top: 1rem !important; */
   margin-top: 30px !important;
   padding-top: 30px;

   border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);;
        /* padding-top: 10px; */
}
footer .third-col{
  width: 100%;
   /* margin-top: 1rem !important; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);;
    /* padding-bottom: 10px; */
    margin-top: 0 !important;
   padding-top: 30px;
}
footer .fourth-col{
  width: 100%;
   /* margin-top: 1rem !important; */
   margin-top: 0 !important;
   padding-top: 30px;
}

footer .footer-logo {
  max-width: 100%;
    height: 200px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.hero-content{
  align-items: center;
}

.table-content h5, .table-content p{
  font-size: 16px;
}

.BlogDetails{
  margin-top: 0 !important;
}

.gallery-wrapper {
  gap: 10px;
  grid-template-columns: 1fr;
}

/* .gallery-wrapper a{
  height: 200px;
} */

.opening-container {
  max-width: 350px;
}
}

.home-search {
  position: relative;
  z-index: 10;
  margin-top: -95px;
}
.title-span {
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 1px;
  color: #3A9492;
  text-transform: uppercase;
}
.hero-content .title-span {
  color: #fff;
  margin-bottom: 10px;
}
.hero-content h1 + * {
  margin-top: 30px;
}
.ImageSliderWithText h2 {
  font-size: 34px;
  letter-spacing: 0;
  margin-bottom: 40px;
  color: #172434;
}
.service-icon-text {
  align-items: center;
}
.service-icon-text + .service-icon-text {
  margin-left: 25px;
}
.proicon {
  margin: 25px 0;

}
.similar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 25px;
}
.similar .similar-img {
  position: relative;
  height: 300px;
}
.similar .similar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.similar .similar-img .similar-price {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  background-color: #fff;
  font-family: "Jost";
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.5px;
  text-align: center;
  color: #172434;
  padding: 5px 20px;
}
.similar .similar-img .similar-price span {
  font-size: 16px;
  letter-spacing: 0.35px;
}
.similar .similar-info * {color: #172434;}
.similar .similar-info h3 {
  margin-top: 20px;
}
.similar:hover .similar-info h3 {
  text-decoration: underline;
  text-decoration-color: #3A9492;
}
.similar .similar-info .proicon {
  margin: 20px 0;
}
.similar .similar-info .similar-desc {
  display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}

.Yourdetails h2 {
  font-size: 34px;
}

.page-padding {
  padding: 70px 0;
}

.addser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 40px;
  column-gap: 90px;
  max-width: 840px;
  margin: 70px auto 0;

}
.add-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 40px;
  transition: all 0.5s;
}
.add-service:hover {
  background-color: #F5F5F5;
  border-color: #F5F5F5;
}
.add-service h3 {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0;
  margin: 25px 0 15px;
}
.add-service p {
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0;

}

.text * + p {
  margin-top: 20px;
}
.text ul {
  margin: 20px 0;
}
.text h2 {
  margin: 50px 0;
  font-size: 32px;
}
.text-p p {
  margin-top: 20px;
}
.text *:first-child, .text-p *:first-child {margin-top: 0;}
.text *:last-child, .text-p *:last-child {margin-bottom: 0;}

.services-photos .r-photos-grid {
  grid-auto-rows: 200px;
}
.services-photos .r-photo-iteam {
  height: 406px;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 40px;
  column-gap: 20px;
}
.blog-post .blog-img {
  position: relative;
  height: 485px;
}
.blog-post .blog-img img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.blog-post .blog-img .blog-date {
  font-weight: 300;
  font-size: 14px;
  line-height: 100%;
  color: #172434;
  background-color: #F5F5F5;
  position: absolute;
  z-index: 2;
  bottom: 5px;
  left: -10px;
  padding: 15px 35px; 
}
.blog-post .blog-info h2, .blog-post .blog-info p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-post .blog-info h2 {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.5px;
  color: #172434;
  margin: 20px 0;
  -webkit-line-clamp: 2;
  min-height: 64px;
}
.blog-post .blog-info p {
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0;
  color: #222222B2;
  -webkit-line-clamp: 3;

}
.small-h2 {
  font-size: 32px;
  letter-spacing: 0;
}

.blog-feature-image {
  height: 400px;
  margin-bottom: 50px;
}

.contact-links-wrap {
  display: flex;
  align-items: center;
  justify-content: center; 
}
.contact-link + .contact-link {
  margin-left: 55px;
}
.contact-link {
  display: flex;
  align-items: center;
  background-color: #F5F5F5;
  padding: 20px 30px;
  min-width: 420px;
}
.contact-link .contact-icon {
  width: 86px;
  height: 86px;
  background-color: #3A9492;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.contact-link p, .contact-link span {
  color: #172434;
}
.contact-link p {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.35px;
  margin-bottom: 10px;
}
.contact-link span {
  font-size: 16px;
  letter-spacing: 0.25px;
  transition: all 0.5s;
}
.contact-link:hover span {
  color: #3A9492;
}

.file-link {
  display: flex;
  align-items: center;
  width: fit-content;
  font-family: "Jost";
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.35px;
  color: #172434;
  margin: 20px 0;
}
.file-link:hover {
  text-decoration: underline;
  color: #172434;
}
.file-link svg {
  margin-right: 10px;
}

.home1 {
  padding-left: calc(50% - 720px);
  padding-right: calc(50% + 50px);
  position: relative;
}
.home1 img {
  width: 30%;
  height: 75%;
  object-fit: cover;
  object-position: center;
  position: absolute;

}
.home1 .home1-img1 {
  bottom: 0;
  right: 20%;
  z-index: 1;
}
.home1 .home1-img2 {
  top: 0;
  right: 0;
  z-index: 0; 
}
.line-title-wrap {
  overflow: hidden; 
}
.left-line-title span, .right-line-title span {
  position: relative;
}
.left-line-title span {
  padding-left: 30px;
}
.right-line-title span {
  padding-right: 30px;
}
.left-line-title span::before, .right-line-title span::before {
  position: absolute;
  width: 100vw;
  height: 1px;
  background-color: #3A9492;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
}

.left-line-title span::before {
  right: calc(100% - 25px);
}
.right-line-title span::before {
  left: calc(100% - 25px);
}

.home-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-flex div {
  width: 45%;
}
/* .home-flex div:has(h2) {
  width: 39%;
} */
.home-flex-right h2, .home-flex-right span {
  text-align: right;
}
.home-flex-right h2 {
  /* max-width: 450px; */
  margin-left: auto;
}
.home-flex-left p {
  text-align: right;
}

.btn-home {
  min-height: 60px;
  min-width: 225px;
  color: #C7AA7C;
  position: relative;
}

.btn-home::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #3A9492;
  display: block;
  content: "";
  left: 0;
  bottom: -7px; 
}

.homeRoomsSwiperWrap {
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
}
.homeFacilitiesSwiperWrap {
  position: relative;
  margin-top: 50px;
}
.pearl-swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 1px solid #17243459;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s;
}
.pearl-swiper-btn svg path {
  fill: #172434;
  fill-opacity: 0.35;
  transition: all 0.5s;
}
.pearl-swiper-btn:hover {
  border-color: #172434;
  background-color: #172434;
}
.pearl-swiper-btn:hover svg path {
  fill: #3A9492;
  fill-opacity: 1;
}
.homeRooms-next, .homeFacilities-next {
  right: -70px;
}
.homeRooms-prev, .homeFacilities-prev {
  left: -70px;
}
.center-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.homeFacilitiesSwiper .similar .similar-img {
  height: 500px;
}
.homeFacilitiesSwiper .similar .similar-info h3 {
  margin: 20px 0;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.75px;
}
.homeFacilitiesSwiper .similar .similar-info .similar-desc {
  -webkit-line-clamp: 4;
}
.homeFacilitiesSwiper .similar .similar-info .similar-desc p {
  color: #222222CC;
}
.home3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.home3 .home3-image {
  position: relative;
}
.home3 .home3-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home3 .home3-text {
  background-color: #fff;
  padding: 50px;
}
.home3 .home3-text h3 {
font-weight: 600;
font-size: 32px;
letter-spacing: 0.75px;
margin: 20px 0;
}
.home3 .home3-text p {
  font-weight: 300;
  letter-spacing: 0.35px;
}

.homeReviewsWrap {
  padding-left: 50%;
  padding-right: calc(50% - 720px);
  position: relative;
  background-color: #FAFAFA;
}
.homeReviewsWrap > img {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}
.review-content {
  padding: 160px 0 160px 60px;
}
.review, .review p {
  margin-top: 30px;
}
.review p {
  font-weight: 700;
  padding-right: 100px;
}
.review div {
  font-weight: 300;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.35px;
}
.review-next, .review-prev {
  bottom: 0;
  z-index: 2;
  top: unset;
  transform: none;
  border-color: #172434;
}
.review-next svg path, .review-prev svg path {
  fill: #172434;
  fill-opacity: 1;
}
.review-prev {
  right: 55px;
}
.review-next {
  right: 0;
}

.main-popup-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #17243480;
  z-index: 100;
  /* display: flex; */
  align-items: center;
  justify-content: center;

  display: none; /* Sprečava blokiranje klikova dok je sakriven */
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.main-popup-wrap.show {
    display: flex; 
    opacity: 1;
}
.main-popup {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 80%;
  max-height: 570px;

}
.main-popup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}
.close-main-popup {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  position: absolute;
  right: 0;
  top: -65px;
  padding: 0;
}
@media screen and (max-width: 1500px) {
.homeRooms-next, .homeFacilities-next {
  right: -45px;
}
.homeRooms-prev, .homeFacilities-prev {
  left: -45px;
}
}
@media screen and (max-width: 1600px) {
  .home1 {
    padding-left: 5%; 
  }
  .homeReviewsWrap {
    padding-right: 5%;
  }
}

@media screen and (max-width: 1199px) {
  .similar-grid, .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-post .blog-img {
    height: 400px;
  }
  .home1 {
    padding-right: 5%;
  }
  .home1 img {
    display: none; 
    
  }
}

@media screen and (max-width: 992px) {
.homeReviewsWrap > img {
  display: none;
}
.homeReviewsWrap {
  padding: 0;
}
.review-content {
  padding: 70px 5%;
}
/* .review-next, .review-prev {
  bottom: -55px;
} */
.homeRooms-next, .homeRooms-prev, .homeFacilities-next, .homeFacilities-prev {
  display: none;
}
.home3 {
  grid-template-columns: 1fr;
}
.home3 .home3-image {
  height: 300px;
}
.home3 .line-title-wrap:nth-child(3) {
  order: 4;
}
.home3 .home3-image:nth-child(4) {
  order: 3;
}
.addser-grid {
  grid-template-columns: 1fr;
  max-width: 375px;
  margin: 50px auto 0;
}
.home-flex {
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.home-flex div {
  width: 100% !important;
}

.home-flex-right {
  flex-direction: column-reverse;
}
.home-flex-right h2, .home-flex-right span {
  text-align: left;
}
.home-flex-left p {
  text-align: left;
}
.right-line-title span {
  padding-right: 0;
  padding-left: 30px;
}
.right-line-title span::before {
  left: unset;
  right: calc(100% - 25px); 

}
  .blog-post .blog-img {
    height: 350px;
  }
  .contact-links-wrap {
    flex-direction: column;
  }
  .contact-link {
    width: 100%;
    min-width: unset;
  }
  .contact-link + .contact-link {
    margin-left: 0;
    margin-top: 20px;
  }
}

@media screen and (max-width: 795px) {
  .similar-grid {
    grid-template-columns: 1fr; 
    gap: 40px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-post .blog-info h2 {
    min-height: unset;
  }
}

@media screen and (max-width: 575px) {
  .review-content {
    padding: 50px 5%;
  }
  .contact-link {
    padding: 15px;
  }
  .contact-link .contact-icon {
    width: 100%;
  max-width: 56px;
  height: 56px;
  margin-right: 20px;
}
.btn-home {
  min-height: 50px;
  min-width: 225px;
  width: 100%;
}
.contact-link p {
  margin-bottom: 0;
}
.contact-link span {
  word-break: break-all;
}
.ImageSliderWithText h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.service-icon-text + .service-icon-text {
  margin-left: 15px;
}
.ImageSliderWith {
  padding: 20px 0 !important;
}
.service-icon-text {
  gap: 5px !important;
}
.similar .similar-img {
  height: 250px;
}
.Yourdetails h2 {
  font-size: 28px;
}
.page-padding {
  padding: 50px 0;
}
.text h2 {
  margin: 35px 0;
  font-size: 26px;
}
.services-photos .r-photo-iteam {
  height: 300px;
}
.blog-post .blog-img {
    height: 270px;
  }
.blog-post .blog-info h2 {
  font-size: 18px;
  line-height: 26px;
  
}  
.small-h2 {
  font-size: 24px;
}
.blog-full-details h1, .blog-full-details h2 {
  margin: 20px 0; 
  
}
.blog-full-details h1 {
  font-size: 26px;
}
.blog-full-details h2 {
  font-size: 24px;
}
.blog-feature-image {
  height: 250px;
  margin-top: 50px;
}
.homeFacilitiesSwiper .similar .similar-img {
  height: 350px;
}
.homeFacilitiesSwiper .similar .similar-info h3, .home3 .home3-text h3 {
  font-size: 24px;
  letter-spacing: 0.5px;
}
.home3 .home3-text {
  padding: 40px 20px;
}
.home3 .home3-image {
    height: 240px;
}
.home3 .home3-text h3 {
  margin: 10px 0;
}
}
.about-hero-banner::before {
  opacity: 0.35;
}
.addservices-hero-banner::before, .AdditionalServices_hero-banner::before {
  opacity: 0.2;
}
.title span {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #3A9492;
  display: block;
}
.center-text * {
  text-align: center;
}
.h2-marg h2 {
  margin: 30px 0;
}
.torqoise-btn {
  background-color: #3A9492;
  border-radius: 8px;
  text-transform: none;
  font-weight: 600;
}
.room-wraper {
  overflow: hidden; 
}
.room-wraper:last-of-type:not(.light-grayish-yellow) {
  margin-bottom: 50px; 
}
.avail_p {
  margin-bottom: 20px !important;
}
.avail_p span {
  font-weight: 700;
}