/* Font Setup */
:root {
    --color-heading: #1A1A1A;
    --color-subheading: #3A3A3A;
    --color-body: #5A5A5A;
    --color-accent: #8C6B4D;

    --color-primary: #804300;
    --color-secondary: #2c1a1c;
    --color-third: #a55a00;
  
    --font-heading: 'Playfair Display', serif;
    --font-subheading: 'Lora', serif;
    --font-body: 'Poppins', sans-serif;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
  }
  
  body, p, span, li, a {
    font-family: var(--font-body);
  }


body {
  font-family: 'Poppins', sans-serif;
  color: #5a5a5a;
  background-color: #fff;
  min-width: 300px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #1a1a1a;
}
/*
h2, h3 {
  font-family: 'Lora', serif;
  color: #3a3a3a;
}*/

.section-h2 {
  font-size: 2.3rem;
  font-weight: 600;
}

.section-subheading {
    font-size: 1rem;
    font-weight: 300;
}

@media (max-width: 768px) {
  .section-h2 {
    font-size: 2.2rem;
  }
  
  .section-subheading {
    font-size: 0.9rem;
  }
}

@media (max-width: 487px) {
  .section-h2 {
    font-size: 2rem;
  }

  .section-subheading {
    font-size: 0.85rem;
  }
}

@media (max-width: 400px) {
  .section-h2 {
    font-size: 1.7rem;
  }
}

.btn-lux, .btn-norm {
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-family: 'Lora', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-norm:hover {
  color: white;
  background-color: var(--color-secondary);
}

.btn-lux:hover {
  background-color: #a55a00; /* Slightly lighter tone for hover */
  color: white;
}

.section-desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Navbar */
/* Navbar Styling */
.custom-navbar {
  background: transparent;
  z-index: 1000;
  font-size: 1rem;
  padding-top: 45px;
  padding-bottom: 45px;
  width: 100%;
}

.navbar-inner-wrapper {
  min-width: 300px;
  width: 100%;
  position: relative;
  padding-left: 3rem;
  padding-right: 3rem;
}

.nav-left {
  gap: 2.2rem;
}

/* Nav Links */
.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link:active,
.nav-link:focus,
.nav-link.show,
.nav-link.active  {
  color: #d87700 !important;
  background-color: transparent !important; 
  outline: none;                
  box-shadow: none;  
}

.nav-link:active {
  
}

/* Logo */
.logo-wrapper {
  
  transform: translateX(-50%) translateY(-50%);
}

.navbar-logo {
  height: auto; /* Adjust as needed */
  width: 140px;
  transition: width 0.4s ease;
}

.bg-prime {
  background-color: var(--color-primary);
}

.bg-second {
  background-color: var(--color-secondary);
}

.bg-third {
  background-color: var(--color-third);
}

.tcolor-prime {
  color: var(--color-primary);
}

.tcolor-second {
  color: var(--color-secondary);
}

.font-prime {
  font-family: var(--font-heading);
}

.font-second {
  font-family: var(--font-subheading);
}

.font-third {
  font-family: var(--font-body);
}

/* Contact */
.contact {
  color: white;
  font-weight: 500;
  font-size: 1rem;
}

.custom-navbar {
  transition: all 0.4s ease, transform 0.4s ease;
}

.custom-navbar.sticky-nav {
  position: fixed !important;
  background-color: #242424 !important;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: all 0.4s ease;
  transform: translateY(0);
}

.navbar-hidden {
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

/* Smaller logo for sticky navbar */
.custom-navbar.sticky-nav .navbar-logo {
  width: 100px;
  transition: width 0.4s ease;
  padding-top: 5px;
  padding-bottom: 5px;
}

.custom-navbar.sticky-nav .top-cta {
  background-color: #a55a00;
}

@media(max-width: 768px) {
  .custom-navbar.sticky-nav .navbar-logo {
    width:70px;
  }
}

/* Hamburger Icon */
/*
.mobilemenu-btn {
  display: none;
  position: absolute;
  top: 40px;
  left: 30px;
  z-index: 1050;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
 
}*/

.mobilemenu-btn {
  display: none;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1050;
  margin-left: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.mobilemenu-btn .bar {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
}

.mobilemenu-btn.hidden {
  display: none !important;
}

/* Slide-out Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #0d1c1c;
  color: white;
  z-index: 1040;
  padding: 30px 25px;
  transition: left 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 15px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
}

.mobile-menu .close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

/* Mobile Contact Section */
.mobile-contact {
  margin-top: 30px;
  font-size: 0.95rem;
}

.mobile-contact i {
  margin-right: 10px;
  color: var(--color-third);
}

/**submenu **/


/* Desktop Submenu */
.nav-item-with-submenu {
  position: relative;
}

.submenu-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.submenu-arrow {
  transition: transform 0.3s ease;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #242424;
  min-width: 180px;
  display: none;
  flex-direction: column;
  z-index: 1000;
  padding: 10px 0;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.submenu a {
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.2s ease;
  display: block;
}

.submenu a:hover {
  background: rgba(255,255,255,0.1);
}
/*
.nav-item-with-submenu.open .submenu {
  display: flex;
}

.nav-item-with-submenu.open .submenu-arrow {
  transform: rotate(180deg);
}*/

/* Mobile submenu */
.mobile-submenu-item {
  /*margin-top: 15px;*/
}

.mobile-submenu-toggle {
  width: 100%;
  background: none;
  border: none;
  color: white;
  font-size: 1.1rem;
  padding: 15px 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  padding-left: 15px;
  animation: slideDown 0.3s ease forwards;
}

.mobile-submenu a {
  color: white;
  padding: 10px 0;
  text-decoration: none;
  font-size: 1rem;
}

.mobile-submenu-item.open .mobile-submenu {
  display: flex;
}

.mobile-submenu-item.open .submenu-arrow {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1101px) {
  .nav-item-with-submenu:hover .submenu {
    display: flex;
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.3s ease;
  }

  .nav-item-with-submenu:hover .submenu-toggle .fa-angle-down {
    transform: rotate(180deg);
  }
}

@media (max-width: 1400px) {
  .navbar-logo {
    width: 120px;
  }
}

@media (max-width: 1200px) {
  .nav-left {
    gap: 1.5rem;
  }

}

/* Responsive Rules */
@media (max-width: 1100px) {
  .nav-left,
  .nav-right {
    display: none !important;
  }

  .logo-wrapper {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  .mobilemenu-btn {
    display: flex;
  }

  .navbar-logo {
    padding-top: 12x;
  }

  .wide-padding {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 768px) {
  
}

@media (max-width: 576px) {
  .custom-navbar {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .navbar-logo {
    width: 100px;
  }
  .wide-padding {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }
}

@media (max-width: 400px) {
 /* .mobilemenu-btn {
    left: 20px;
  }*/

  .navbar-inner-wrapper{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar-logo {
    width: 100px;
  }

}


/* Primary Button */
.btn-primary {
  background-color: #804300;
  border-color: #804300;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #663300;
  border-color: #663300;
}

/* Hero Section */
.hero-section {  
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-section::before, .dx-title-section::before, .cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(45, 27, 27, 0.4) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(45, 27, 27, 0.4) 100%);
  z-index: 2;
  pointer-events: none;
}


.hero-slider {
  position: relative;
}

.hero-section,
.hero-slider,
.hero-slide {
  height: 850px;
  /*-height: 100vh;*/
}

@media (max-width: 1380px) {
   .hero-section,
    .hero-slider,
    .hero-slide {
      height: 750px;
    }
}

@media (max-width: 992px) {
   .hero-section,
    .hero-slider,
    .hero-slide {
      height: 650px;
    }
}

@media (max-width: 576px) {
   .hero-section,
    .hero-slider,
    .hero-slide {
      height: 550px;
    }
}

.hero-slide {
  background-size: cover;  
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center center;
  background-size: cover;
}



.hero-slide::before, .dx-title-section .container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay */
  z-index: 1;
}

.hero-slider,
.hero-section .swiper-wrapper,
.hero-section .swiper-slide {
  width: 100%;
}

.hero-content {
  padding-top: 30px;
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
}

.hero-content {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease forwards;
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  animation-delay: 0.6s;
}
.hero-content p {
  animation-delay: 0.8s;
}
.hero-content .btn {
  animation-delay: 1s;
}

.hero-title {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 65px;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  line-height: 1.3;
}

@media (max-width: 1380px) {
  .hero-title {
    font-size: 50px;
  }
}
.hero-subtitle {
  font-family: 'Poppins', serif;
  font-weight: 400;
  font-size: 1.1rem;  
  color: #ddd;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-content .btn-lux {
  background-color: #fff;
  color: #000;
}

.hero-content .btn-lux:hover {
  background-color: #a55a00;
  color: white;
}

/* Swiper arrows */
.hero-section .swiper-button-next,
.hero-section .swiper-button-prev {
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}

.hero-section .swiper-button-prev {
  left: 30px;
}

.hero-section .swiper-button-next {
  right: 30px;
}

.hero-section .swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

/* Swiper pagination */
.hero-section .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  bottom: 20px !important;
  z-index: 5;
  position: absolute;
}

.hero-section .swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: inline-block;
  vertical-align: middle;
  
}

.hero-section .swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  opacity: 1;
  background: var(--color-primary);
  vertical-align: middle;
}

.hero-section .swiper-pagination-bullet,
.hero-section .swiper-pagination-bullet-active {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    padding: 0 20px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .hero-content .btn-lux {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    margin-top: 60px; /* Adjust based on nav height */
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 32px;
    letter-spacing: 0.5px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .hero-content {
    padding: 0 15px;
  }
  
}


/* quick highlights */

.quick-highlights {
  /* background-color: #231615; Match your design */
  padding: 4rem 0;
  text-align: center;
  overflow: hidden;
}

.highlights-swiper .swiper-slide {
  width: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  margin-right: 30px;
  color: #fff;
}

.highlights-swiper .swiper-slide img {
  width: 40px;
  height: 40px;
  margin-bottom: 0.8rem;
  object-fit: contain;
  filter: brightness(1000%); /* make white icon visible if needed */
}

.highlights-swiper .swiper-slide span {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  font-family: var(--font-heading);
}

/* Desktop: show as row, not carousel */
@media (min-width: 992px) {
  
  .highlights-swiper {
    display: flex;
    justify-content: center;
  }

  .highlights-swiper .swiper-wrapper {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: nowrap;
  }

  .highlights-swiper .swiper-slide {
    margin-right: 0;
  }
}

@media (max-width: 992px) {
  .quick-highlights{
    padding: 3.5rem 0;
  }
}

@media (max-width: 992px) {
  .quick-highlights{
    padding: 3rem 0;
  }
}

/** about section **/

.about-section {
  padding: 6.2rem 0 3.5rem;
}

.about-section .col-text {
  width: 45%;
  flex: 0 0 auto;
}

.about-section .col-image {
  width: 55%;
  flex: 0 0 auto;
}

.about-images {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.about-section .container .col-text {
  margin-top: -30px;
}

.about-section .about-text {
  flex: 1;
  padding-right: 25px;
}

.about-text h5 {
  font-size: 14px;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.about-text h2 {
  font-size: 2.1rem;
  font-weight: bold;
  color: #111;
  margin-bottom: 1rem;
}

.about-section .col-text .about-text p  {
  
  margin-top: 25px;
  margin-bottom: 45px;
}

.about-section .section-desc {
  font-size: 1rem;  
  margin-top: 35px;
}

@media (max-width: 992px) {
  .about-text h2 {
    font-size: 2rem;
   }
}
@media (max-width: 992px) and (min-width: 567px) {
   

  .about-section .section-desc {
    padding-left: 5%;
    padding-right: 5%;    
  }
  
}

@media (max-width: 487px) {
  .about-section .section-desc {
    font-size: 0.95rem;
  }
}

.about-text .read-more-btn {  
  background-color: #7b3f00;
  color: #fff;
  padding: 0.75rem 2rem;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background-color: #5e2f00;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 700px;
}

.back-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 75%;  
  object-fit: cover;
  /*border-radius: 6px;*/
  z-index: 1;
  aspect-ratio: 9/10;
}

/* Front image overlaps from LEFT now */

.front-img-wrapper {
  position: absolute;
  top: 237px;
  right: 307.1px;
  height: 50%;
}

.front-image {  
  height: 100%;
  object-fit: cover;
  /*border-radius: 8px;*/
  aspect-ratio: 9.7/10;    
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 26px;
  color: #000;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.3);
}


@media (max-width: 1400px) {
  .image-wrapper {
    height: 650px;
  }

  .front-img-wrapper {
    top: 219.38px;
    right: 285.19px;
  }
}

@media (max-width: 1200px) {
  .image-wrapper {
    height: 550px;
  }

  .front-img-wrapper {
    top: 185.625px;
    right: 241.31px;
  }
}

@media (max-width: 992px) {

  .about-section {
    padding-bottom: 6rem;
    /**/
    margin-top: 100px;
  }

  .about-section .container .row{
    display: flex;
    flex-direction: column-reverse;
  }

  .about-section .col-text, .about-section .col-image  {
    width: 100%;    
  }

  .about-section .col-text .about-text {
    margin-top: 40px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .about-section .col-text .about-text p {
    text-align: justify;    
  }

  .about-section .col-text {
    text-align: center;
  }

  .col-image .image-wrapper {
    height: 550px;
  }
  

  .about-section .col-image .image-wrapper{
    width: 70%;
    margin: 0 auto;
    height: auto;
    aspect-ratio: 100/87;
  }

  .back-image {
    /*width: 60%;*/
    top: -25%;
    height: auto;
    /*aspect-ratio: 1;*/
    width: 70%;
    aspect-ratio: 9/10;
  }

  .front-img-wrapper {
    /*width: 60%;*/
    width: 55%;
    height: auto;
    aspect-ratio: 1;
    top: 27%;
    left: 0;
  }

  .front-image {
    width: 100%;   
    aspect-ratio: 1;;    
  }
}

@media (max-width: 768px) {
  .about-section {
    margin-top: 60px;
  }
}

@media(max-width: 567px) {
  .about-section {
    padding-top: 5.5rem;
    
  }
}

@media (max-width: 487px) {
  .about-section .col-image .image-wrapper{
    width: 80%;
  }

  .about-text h2 {
    font-size: 1.7rem;;
  }

  .play-btn {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
}

@media (max-width: 400px) {
  .about-text h2 {
    font-size: 1.5rem;;
  }
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.video-modal .modal-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  height: 450px;
  background: #000;
}

.video-modal .close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  z-index: 1001;
}


/** rooms **/
.rooms-section {
  padding-bottom: 6.5rem;
}

.rooms-section .section-title {  
  font-weight: 700;
}

.rooms-section .section-subtitle {
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.rooms-section .room-list {
  margin-top: 50px;
}

.rooms-section .room-card {
  text-align: left;
  padding: 0 17px;
}

.rooms-section .room-card img {
  aspect-ratio: 1;
  object-fit: cover;
}

.rooms-section .room-card .room-text {
  padding-left: 3px;
  padding-right: 5px;
}

.rooms-section .room-card .room-title {
  margin-top: 10px;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 6px;
}


.rooms-section .room-card .room-desc {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #555;
}

.rooms-section .rooms-swiper {
  padding-bottom: 0;
  margin-top: 50px;
}

.rooms-section .rooms-swiper .swiper-pagination-bullet-active {
  background: #1e1e1e;;
}

@media (max-width: 1200px) {
  .rooms-section .room-card .room-title {
    font-size: 1.1rem;
  }

  .rooms-section .room-card .room-desc {
    font-size: 0.75rem;
  }
}


@media (max-width: 989px) {
  .rooms-section .section-subtitle {
    padding: 0 35px;
    
  }
}

@media (max-width: 768px) {
  .rooms-section .rooms-swiper {
    padding-bottom: 30px;
    margin-top: 45px;
  }
}

/* Keep swiper layout for mobile only */
@media (min-width: 768px) {

  

  .rooms-swiper .swiper-wrapper {
    display: flex !important;
    flex-wrap: wrap;
  }

  .rooms-swiper .swiper-slide {
    width: 33.3333% !important; /* 3 columns */
    /*flex: 0 0 auto;*/
    margin-right: 0px !important;
  }

  .rooms-swiper .swiper-pagination {
    display: none;
  }
}


@media (max-width: 500px) {
  .rooms-section .section-subtitle {
    padding: 0 20px;
  }
}


/** facilities **/

.facilities-section {
  background-color: #242424;
  padding: 90px 0;
}

.facilities-section .section-subheading {
  font-weight: 200;
}

.fac-title-section {
  padding-left: 35px;
  margin-bottom: 50px;
}

.fac-item-col {
  border: 0.5px solid rgba(255, 255, 255, 0.3);
}

.facility-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.facility-item:hover {
  transform: translateY(-8px);
}

.facility-icon {
  width: 60px;
  height: 60px;
  filter: brightness(0) saturate(100%) invert(47%) sepia(79%) saturate(1389%) hue-rotate(12deg) brightness(97%) contrast(97%);
  transition: filter 0.3s ease, transform 0.3s ease;

}

.facility-item:hover .facility-icon {
  /*filter: brightness(0) saturate(100%) invert(47%) sepia(79%) 
          saturate(1389%) hue-rotate(12deg) brightness(97%) contrast(97%)
          drop-shadow(0 0 1.5px #e08a1e);*/
  transform: scale(1.03);
}

.facility-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 5px;
}

.facility-desc {
  font-size: 0.8rem;
  color: #ccc;
  width: 75%;
  margin: 4px auto 0;
  line-height: 1.8;
  font-weight: 200;
}

@media (max-width: 992px) {
  .facility-desc {
    width: 82%;
  }

  .fac-title-section {
    padding-right: 30px;
  }

  .facility-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 500px) {
  .facility-desc {
    width: 87%;
    font-size: 0.7rem;
  }

  .facility-item {
    text-align: center;
    padding: 15px;
  }

  .facility-title {
    font-size: 1.1rem;
  }

  .fac-title-section {
    padding-left: 15px;
  }
}

@media (max-width: 400px) {
  .facilities-section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .facility-desc {
    width: 100%;
  }

  .facility-title {
    font-size: 0.9rem;
  }

  .facility-item {
    padding: 10px;
  }

  .facility-icon {
    width: 45px;
    height: 45px;
  }

  .facility-desc {
    display: none;
  }
}


/** sections dining and attractions */
.attractions-section {
  padding-top: 120px;
  padding-bottom: 75px;
}

.attractions-section .dining .section-desc {
  margin-top: 20px;
  padding-right: 50px;
}

.attractions-section .attracitons .section-desc {
  margin-top: 25px;
}

.attractions-section .dining img {
  aspect-ratio: 10/7;
  object-fit: cover;
}

.dining .dining-content {
  padding: 10px 50px 0 40px;  
}

.dining .dining-content .btn-lux {
 margin-top: 25px;
}

.attracitons .attr-content {
  padding-right: 25px;
  padding-top: 10px;
}

.attracitons .attr-image {
  padding-left: 25px;
}

@media (max-width: 992px) {
  .attractions-section .dining .section-desc {
    padding-right: 5px;
  }

  .dining .dining-content {
    padding: 5px 10px 0 20px;
  }

  .attracitons .attr-content {
    padding-right: 5px;;
  }
}


@media (max-width: 768px) {
  .attracitons .attr-content, .dining .dining-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .attracitons .attr-image {
    padding-left: 12px;
  }

}

@media (max-width: 576px) {
  .attractions-section {
    padding-top: 80px;
    padding-bottom: 75px;
    padding: 80px 20px;
  }

  .accordion-item {
    padding: 15px 8px;
  }

}

.accordion {
  overflow: hidden;
  transition: height 0.4s ease;
}

.accordion-item {
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #797979;
  cursor: pointer;
  padding: 15px 10px;
}

/**override bs **/
.accordion-item:last-of-type {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.accordion-header {
  font-weight: 600;
  display: flex;
  justify-content: space-between;

  align-items: center;
  font-family: 'Georgia', serif;
  font-size: 1rem;
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #444;
  font-size: 0.9rem;
  line-height: 1.6;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  opacity: 0;
  transform: translateY(-5px);
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
  
}

.accordion-item.active .accordion-body {
  max-height: 500px; /* Adjust based on expected content height */
  opacity: 1;
  padding-top: 15px;
  padding-bottom: 16px;
  transform: translateY(0);
}

.accordion-header i {
  transition: transform 0.3s ease;
  font-size: 0.85rem;
}

/* Rotate the icon when active */
.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

#accordion-image {
  aspect-ratio: 10/7;
  object-fit: cover;
}

/* Fade image on change */
.fade-img {
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}
.fade-img.fade-out {
  opacity: 0;
}
.fade-img.fade-in {
  opacity: 1;
}

.read-more-btn {
  background-color: #6b3e00;
  color: #fff;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
}

@media (max-width: 1200px) {
 .dining .dining-content {
    padding-right: 20px;
 }
}

/** CTA section **/

.cta-section {
  position: relative;
  padding: 100px 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
}

.cta-section::before {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 50%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 50%),
    linear-gradient(to left, rgba(0, 0, 0, 0.4), transparent 50%),
    linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent 50%);
}

.cta-background {
  
  /*background: rgba(0, 0, 0, 0.4);*/
  opacity: 0.75;
  z-index: 1;
}

.cta-background::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background: linear-gradient(to bottom, rgba(45, 27, 27, 0.4) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(45, 27, 27, 0.4) 100%);*/
  
  
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;

  
  pointer-events: none;
}

.cta-section .container {
  z-index: 4;
}

.cta-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
}

.cta-subtitle {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.cta-video-link {
  font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }
}


/** Testimonials **/

.testimonials-section {
  background: #fff;
  color: #1d1d1f;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.testimonial-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: #888;
}

.testimonial-title {

  margin-bottom: 1.5rem;
}

.quote-icon {
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
  color: #111;
}

.testimonials-swiper {
  margin-top: 65px;
}

.testimonial-text {
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.9;
}

.testimonial-author {
  font-weight: 500;
  font-size: 0.95rem;
  color: #555;
  margin-top: 45px;
}

/* Swiper controls */
.testimonial-swiper-button-prev,
.testimonial-swiper-button-next {
  color: #333;
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}

.testimonial-swiper-button-prev {
  left: 0;
}

.testimonial-swiper-button-next {
  right: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-text {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .testimonial-swiper-button-prev,
  .testimonial-swiper-button-next {
    font-size: 1.2rem;
    top: 50%;
  }

  .testimonials-swiper {
    margin-top: 55px;
  }
}

@media (max-width: 567px) {
  .testimonials-section{
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .testimonials-swiper {
    margin-top: 40px;
  }
}

/** gallery **/
.gallery-section {
  padding: 0 10px 0 30px;
}

.gallery-section .section-title {
  font-weight: 700;
  font-size: 2rem;
}

.gallery-section .btn {
  margin-right: 20px; /** slide margin */
}

.gallery-swiper {
  overflow: hidden;
}

.gallery-swiper .swiper-slide {  
  width: calc(20% - 20px);
  margin-right: 20px;
}

.gallery-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  /*border-radius: 12px;*/
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-swiper .swiper-slide img{
  aspect-ratio: 1;
  object-fit: cover;  
}

.gallery-image-box .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.gallery-image-box .zoom-icon {
  font-size: 2rem;
  color: #fff;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-image-box:hover .overlay {
  opacity: 1;
}

.gallery-image-box:hover .zoom-icon {
  transform: scale(1);
}

@media (max-width: 992px) {
  .gallery-swiper .swiper-slide {  
    width: calc(30% - 20px);
    margin-right: 20px;
  }

  .gallery-section {
    padding: 0 15px;
  }

  .gallery-section .btn {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .gallery-swiper .swiper-slide {  
    width: calc(40% - 20px);
    margin-right: 20px;
  }

  .gallery-section {
    padding: 0 10px;
  }

   .gallery-section .section-h2 {
    font-size: 2rem;
   }
}


@media (max-width: 567px) {
  .gallery-swiper .swiper-slide {
    width: calc(42% - 10px);
    margin-right: 10px;
  }

  .gallery-section {
    padding: 0 6px;
    margin-top: 20px;
    margin-bottom: 45px;
  }

  .gallery-section .section-h2 {
    font-size: 1.6rem;
   }

   
  .gallery-section .btn-lux {
    
    padding: 0.5rem 1.3rem;  
    font-size: 0.65rem;
    margin-top: 4px;
  }
}


/** room page list **/
.room-list-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.room-list-section .rooms-section {
  padding-bottom: 0;
  margin-bottom: 90px;
  text-align: left;
}

.room-list-subtitle {
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.room-list-title {
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
  font-family: 'Playfair Display', serif;
}

.room-list-amenities {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #444;
  font-family: 'Poppins', serif;
}

.room-list-amenities i {
  margin-right: 4px;
  color: #6e3b0c;
  
}

.room-list-img {
  aspect-ratio: 7/5;
  object-fit: cover;
}

.room-list-desc {
  font-size: 1rem;
  color: #313131;
  margin-top: 25px;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-family: 'Poppins', serif;
  font-weight: 300
}

.discover-link {
  font-weight: 500;
  text-decoration: none;
  color: #6e3b0c;
  border-bottom: 1px solid transparent;
  transition: border 0.3s ease;
}

.discover-link:hover {
  border-color: #6e3b0c;
}

@media (max-width: 992px) {
  .room-list-title {
    font-size: 1.5rem;
  }

  .room-list-section .rooms-section {
    margin-bottom: 70px;
  }

  .room-list-desc {
    font-size: 0.87rem;
  }

  .room-list-amenities {
    font-size: 0.75rem;
  }
}

@media (max-width: 567px) {
  .room-list-section {
    padding-top: 75px;
  }

  .room-list-title {
    font-size: 1.25rem;
  }
  .room-list-section .row {
    padding-left: 8px;
    padding-right: 8px;
  }

  .room-list-section .rooms-section {
    margin-bottom: 60px;
  }

  .room-list-desc {
    text-align: justify;
  }
}



/** page title section **/

.dx-title-section {
  background: url('./hero.jpg');
  height: 600px;
  background-size: cover;  
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center center;
}

.dx-title-section, .dx-title-content {
  z-index: 10;
  position: relative;
  text-align: center;
}

.dx-title-section .section-subtitle {
  max-width: 800px;
  margin: 75px auto 0;
}

.dx-title-content {
  margin-top: 30px;
}

@media (max-width: 1380px) {
   .dx-title-section {
      height: 500px;
    }
}

@media (max-width: 992px) {
   .dx-title-section {
      height: 450px;
    }
}

@media (max-width: 576px) {
   .dx-title-section {
      height: 350px;
    }
  
    .dx-title-section .dx-title-content .hero-title {
      font-size: 28px;;
    }
}

.breadcrumb-nav {
  margin-top: 20px;
}

.breadcrumb {
  list-style: none;
  padding: 0;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #fff;
  z-index: 10;
  position: relative;
  font-weight: 300;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: #fff;
  opacity: 0.9;
}

.breadcrumb li::after {
  content: "/";
  margin: 0 8px;
  color: #ccc;
}

.breadcrumb li:last-child::after {
  content: "";
  margin: 0;
}

.breadcrumb li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb li a:hover {
  color: #d87700;;
}

.breadcrumb li.active {
  color: #d87700;
  font-weight: 600;
}


.hero-slide {
  background-size: cover;  
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center center;
 
}

/** footer contact section **/

.contact-info-section {
  background-color: #2d1b1b; /* Dark background */
  padding: 95px 0;
  color: #fff;
}

.contact-info-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.contact-info-box {
  flex: 1 1 300px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.contact-info-box:hover {
  transform: translateY(-8px);
}

.contact-info-box .icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.contact-info-box:hover .contact-info-box .icon img {
  transform: scale(1.03);
}


.contact-info-box .info-heading {
  font-family: var(--font-subheading);
  font-weight: 500;
  font-size: 25px;
  margin: 0 0 10px;
  color: #fff;
}

.contact-info-box .info-link {
  color: var(--color-third);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.contact-info-box .info-link:hover {
  color: #d5a56e;
}

.contact-info-box .info-subtext {
  font-size: 14px;
  color: #ccc;
  margin-top: 5px;
}


/** footer **/

.site-footer {
  background-color: #1e1e1e;
  color: #fff;
  text-align: center;
  padding: 75px 20px 20px;
  position: relative;
}

.footer-logo img {
  width: 150px;
  margin-bottom: 30px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-nav a {
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--color-third);;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.mobile-social.footer-social {
  margin-top: 25px;
  justify-content: start;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #fff;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--color-third);
  border-color: var(--color-third);
}

.footer-bottom {
  font-size: 14px;
  color: #ccc;
  margin-top: 20px;
}

.footer-bottom hr {
  border-color: rgba(255, 255, 255, 0.1);
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #151515;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
  z-index: 1000;
}

.scroll-top:hover {
  background: #c09053;
}

@media (max-width: 768px) {
  .contact-info-box {   
    flex-basis: 100%;
    justify-content: flex-start;
    padding: 5px 10%;
  }
}

@media (max-width: 489px) {
  .contact-info-box {      
    padding: 5px 6%;
  }

  .contact-info-box .info-heading {
    font-size: 20px;;
  }

  .footer-logo img {
    width: 120px;
  }
}


/** About page **/

.about-intro .rooms-section{
  padding-bottom: 2rem;
}

.about-intro .rooms-section .section-subtitle {
  max-width: 1100px;
  line-height: 1.7;
  margin-top: 45px;
}


.dx-about-swiper {
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
}

.dx-about-swiper.swiper-wrapper {
  overflow: visible !important;
}

.dx-about-slide {
  position: relative;
  width: 800px;
  /*aspect-ratio: 10/7;*/
  height: 550px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}



.dx-about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dx-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 16px;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  color: #fff;
}

.dx-slide-overlay h3 {
  font-size: 1.1rem;
  margin: 0 0 4px;
}

.dx-slide-overlay p {
  font-size: 0.9rem;
  margin: 0;
}



.attractions-section.about-twocols {
  max-width:1280px;
  margin: 0 auto;
  padding-top: 90px;
}

.attractions-section.about-twocols .section-desc {
  font-weight: 300;
}

.about-twocols .dining .dining-content, .about-twocols .attracitons .attr-content {
  padding-right: 40px;
}

.attractions-section.about-twocols .dining .section-desc {
  padding-right: 0px;
}

.facilities-section.about-facilities {
  background-color: #fff;
  padding: 60px 0;
}

.about-facilities .facility-title {
  color: #1e1e1e;
}




/** contact page **/

.contact-info-section.contact-page {
  background: #fff;
  padding-bottom: 50px;
}

.contact-info-section.contact-page .info-heading {
  color: #1e1e1e;
}

.contact-info-section.contact-page .section-h2 {
  font-weight: 500;
  margin-bottom: 70px;
  color: #1e1e1e
}



.contact-info-section.contact-page .contact-info-box {
  justify-content: flex-start;
  padding-left: 30px;
}

.contact-form-section {
  padding: 45px 0 80px;
}
.contact-form-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.contact-form-box {
  padding: 40px 80px;
}
.contact-form-heading {
  font-size: 2.5rem;
  font-weight: 500;
  font-family: 'Georgia', serif;
}
.contact-form-subtitle {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  color: #a7865a;
}

.contact-form-box .contact-form-desc {
  line-height: 1.9;
}

.contact-form-section .form-control {
  border-radius: 0;
}

.contact-form-section form input {
  padding-top: 12px;
  padding-bottom: 12px;
  margin-bottom: 18px;
}

.contact-map-section {
  margin-bottom: 100px;
}

/**gallery page **/

    .gallery-section {
      padding: 60px 0;
    }

    .gallery-heading {
      font-size: 2.5rem;
      font-family: 'Georgia', serif;
      font-weight: 500;
      text-align: center;
      margin-bottom: 40px;
    }

    .gallery-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 6px;
    }

    .gallery-img {
      width: 100%;
      aspect-ratio: 5/4;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      opacity: 0;
      transition: opacity 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
    }

    .gallery-wrapper:hover .gallery-img {
      transform: scale(1.05);
    }

    .gallery-wrapper:hover .gallery-overlay {
      opacity: 1;
    }


@media (max-width: 1400px) {
  .dx-about-slide {
    width: 600px;
    height: 412px;
  }

  .contact-form-box {
  padding: 40px 50px;
}
}

@media (max-width: 992px) {
  .dx-about-slide {
    width: 440px;
    height: 302px;
  }

  .attractions-section.about-twocols {
    padding-top: 50px;
  }

  .contact-form-section .contact-form-box {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .dx-about-slide {
    width: 340px;
    height: 234px;
  }

  .contact-info-section.contact-page .section-h2 {
    margin-bottom: 50px;
  }

  .contact-form-section .contact-form-heading {
    font-size: 2.1rem;
   }

}

@media (max-width: 567px) {
  .dx-about-slide {
    width: 300px;
    height: 206px;
  }

  .attractions-section.about-twocols {
    padding-top: 10px;
    padding-bottom: 50px;
  }

  .attractions-section.rooms-section .section-subtitle{
    padding: 0 10px;
  }

  .contact-form-section {
    padding: 30px 0 60px;
  }

  .contact-form-section .contact-form-box {
    padding: 40px 25px;
  }

   .contact-form-section .contact-form-heading {
    font-size: 1.9rem;
   }
}

@media (max-width: 460px) {
  .dx-about-slide {
    width: 250px;
    height: 171px;
  }
}

@media (max-width: 400px) {
  .contact-form-section .contact-form-box {
    padding: 40px 15px;
  }
}

@media (max-width: 360px) {
  .dx-about-slide {
    width: 210px;
    height: 145px;
  }
}



/* Swiper arrow styles */
.rp-swiper-button {
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.rp-swiper:hover .rp-swiper-button {
  opacity: 1;
}

.rp-swiper-button::after {
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border-radius: 50%;
}

/* Pagination Dots */
.rp-swiper-pagination {
  text-align: center;
  bottom: 10px !important;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #6e3b0c;
}



/** attractions **/

.attraction-item img {
  width: 100%;
  aspect-ratio: 10/7;
  object-fit: cover;
  
}

@media (min-width: 768px) {
  .attraction-item .col-md-5 {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .attraction-item .col-md-7 {
    flex: 0 0 60%;
    max-width: 60%;
  }
}


/** recaptcha notice**/
.recaptcha-notice {
  font-size: 12px;
  color: #777;
  text-align: center;
  margin-top: 15px;
}

/** recaptcha badge hide **/
.grecaptcha-badge { 
    visibility: hidden; 
}

/** whatsapp button **/
.qlwapp__container.qlwapp__container--bottom-right {
    right: 48px !important;
}

/** aos disable on mbile **/
@media screen and (max-width: 768px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/** fresco
.fresco .fresco-content,
.fresco .fresco-inner,
.fresco .fresco-image,
.fresco .fresco-image img {
  max-width: 1280px !important;
  margin: 0 auto !important;
}

.fr-window .fr-content .fr-content-element{
  max-width: 1280px !important;
  margin: 0 auto !important;
}**/