@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #222222;
}

.font-forum {
  font-family: "Forum", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-heading {
  font-family: "Forum", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: rgb(198, 185, 185);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 34px 0;
  z-index: 9;
}
header .navbar-brand {
  position: absolute;
  left: 50%;
  top: -36px;
  transform: translateX(-50%);
}
header .navbar-brand img {
  border-radius: 250px;
  background-color: #fff;
  transition: all 0.3s;
  max-width: 100px;
}
header .menu-btn {
  display: flex;
  align-items: center;
  gap: 19px;
}
header .menu-btn .text {
  text-align: unset;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}
header .menu-btn:hover .qodef-m-line.qodef--2 {
  width: 31px;
}
header .menu-btn:hover .qodef-m-line.qodef--1 {
  width: 19px;
}
header .qodef-m-lines {
  position: relative;
  display: block;
  width: 31px;
  height: 10px;
}
header .qodef-m-lines .qodef-m-line.qodef--1 {
  width: 31px;
  height: 1px;
  transition: all 0.3s;
  display: flex;
  background-color: #fff;
}
header .qodef-m-lines .qodef-m-line.qodef--2 {
  width: 19px;
  transition: all 0.3s;
  height: 1px;
  margin-top: 8px;
  display: flex;
  background-color: #fff;
}
header .right-menu {
  display: flex;
  gap: 15px;
  align-items: center;
}
header .right-menu .socila-media ul {
  margin: 0;
  padding: 0;
}
header .right-menu .socila-media ul li {
  display: inline;
  list-style: none;
}
header .right-menu .socila-media ul li a {
  width: 35px;
  height: 35px;
  background-color: rgba(12, 24, 57, 0.3294117647);
  color: #fff;
  display: inline-flex;
  transition: all 0.3s;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
header .right-menu .socila-media ul li a:hover {
  background-color: #0c1839;
  color: #fff;
}
header .right-menu .socila-media ul li:nth-child(1) a {
  background-color: #1877F2;
}
header .right-menu .socila-media ul li:nth-child(2) a {
  font-weight: bold;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  background-size: 300% 300%;
  transition: background-position 0.5s;
}
header .right-menu .socila-media ul li:nth-child(3) a {
  background-color: #000;
}
header .right-menu .socila-media ul li:nth-child(4) a {
  background-color: red;
}
header .right-menu .call-icons a {
  background-color: #102145;
  color: #ffffff;
  border: none;
  width: 100%;
  padding: 7px 17px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  margin-top: 2rem;
  text-decoration: none;
}
header.sticky {
  background-color: #0c1839;
  box-shadow: 0 0 24px -8px #000;
}
header.sticky .navbar-brand img {
  max-width: 100px;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: #c78550;
}

.toggle-menu {
  display: none;
  padding: 0;
  width: 100%;
  height: 100vh;
  top: 0;
  position: fixed;
  left: 0;
  overflow: hidden;
}
.toggle-menu .overlay {
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.34);
  height: 100%;
  width: 100%;
  content: "";
  top: 0;
  left: 0;
  position: fixed;
}
.toggle-menu > ul {
  padding-left: 0;
  width: 400px;
  background-color: #272727;
  height: 100%;
  padding-top: 40px;
  position: relative;
  z-index: 2;
  padding-left: 29px;
}
.toggle-menu > ul li {
  list-style: none;
  margin-bottom: 15px;
}
.toggle-menu > ul li a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 31px !important;
}
.toggle-menu > ul li a:hover {
  color: #c7a47e !important;
}

.menu-close-btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-self: center;
  background-color: #fff;
  color: #000;
  font-size: 25px;
  /* color: var(--accent-color); */
  text-align: center;
  position: fixed;
  right: 15px;
  cursor: pointer;
  top: 14px;
  border-radius: 40px;
}
.menu-close-btn i {
  margin-right: auto;
  margin-left: auto;
  color: #272727;
}

.accent-line {
  width: 60px;
  height: 2px;
  background-color: #c7a47e;
  margin: 0 auto 2rem auto;
}

.main-title {
  font-family: "Forum", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 7rem;
  font-weight: 400;
}

.paragraph-text {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: #666;
}

.dark-bg {
  background-color: #0c1839;
  color: #ffffff;
}

.bg-light-gray {
  background-color: #f8f8f8;
}

.home-video {
  position: relative;
}
.home-video:before {
  background-image: linear-gradient(0deg, rgba(29, 40, 92, 0.7607843137), rgba(0, 0, 0, 0) 66%);
  width: 100%;
  height: 100vh;
  left: 0;
  content: "";
  top: 0;
  display: flex;
  position: absolute;
}
.home-video video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100vh;
}

.booking-bar {
  background-color: rgba(16, 33, 69, 0.5490196078);
  position: absolute;
  bottom: 18px;
  width: 100%;
}
.booking-bar .form-label {
  color: #ffffff;
  opacity: 0.7;
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}
.booking-bar .form-control,
.booking-bar .form-select {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding-left: 0;
  border-bottom: 1px solid #fff;
  color: #ffffff;
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}
.booking-bar .form-control:focus,
.booking-bar .form-select:focus {
  background-color: transparent;
  color: #ffffff;
  border-color: #c7a47e;
  box-shadow: none;
}
.booking-bar .form-select {
  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='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-position: right 0rem center;
  padding-right: 1.5rem;
}
.booking-bar .form-select option {
  background: #0c1839;
  color: #ffffff;
}
.booking-bar .booking-col {
  padding: 1.25rem 1.5rem;
}
.booking-bar .btn-book-now {
  background-color: #c7a47e;
  color: #ffffff;
  border: none;
  width: 100%;
  padding: 1.25rem 2.5rem;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  margin-top: 2rem;
}
.booking-bar .btn-book-now:hover {
  background-color: #c7a47e;
  color: #0c1839;
}
@media (max-width: 991.98px) {
  .booking-bar .booking-col {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .booking-bar .btn-book-now {
    padding-top: 1rem;
    padding-bottom: 1rem;
    width: 100%;
  }
}

.section-padding-large {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
@media (max-width: 991.98px) {
  .section-padding-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.about-section {
  background-image: linear-gradient(90deg, #f8f8f8 0%, #f8f8f8 30%, #F3F1F1 30%, #F3F1F1 70%, #f8f8f8 70%);
  background-position: center;
}
.about-section img {
  width: 100%;
}
.about-section .middle-about-us {
  position: relative;
}
.about-section .accent-line {
  width: 60px;
  height: 2px;
  background-color: #c7a47e;
  margin: 0 auto 2rem auto;
}
.about-section .est-subheading {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1.5rem;
}
.about-section .btn-link-styled {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #222222;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 2px solid #c7a47e;
  transition: all 0.3s ease;
  margin-top: 1rem;
  display: inline-block;
}
.about-section .btn-link-styled:hover {
  color: #c7a47e;
  border-bottom-color: #0c1839;
}

.text-primary {
  color: #0c1839 !important;
}

.features-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.features-section .feature-item {
  position: relative;
}
.features-section .feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) skewX(-15deg);
  font-family: "Forum", serif;
  font-size: 5rem;
  color: #cec9c4;
  opacity: 1;
  height: 192px;
  background-color: #c6b9b9;
  width: 1px;
}
@media (max-width: 991.98px) {
  .features-section .feature-item {
    margin-bottom: 2.5rem;
  }
  .features-section .feature-item:not(:last-child)::after {
    content: none;
  }
}
@media (max-width: 767.98px) {
  .features-section .feature-item {
    margin-bottom: 2rem;
  }
}
.features-section .feature-icon img {
  max-height: 52px;
}
.features-section .feature-title {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-weight: 400;
  font-size: 23px;
  font-family: "Forum", serif;
  color: #212121;
  margin-bottom: 0rem;
}
.features-section .feature-stat {
  font-family: "Forum", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 30px;
  color: #c6b9b9;
  font-weight: 400;
  line-height: 1.1;
}
@media (max-width: 991.98px) {
  .features-section .feature-stat {
    font-size: 4rem;
  }
}

/* --- Add this new code to the end of your style.scss file --- */
.suite-slide-image {
  min-height: 400px;
  height: 100%;
  background-size: cover;
  background-position: center;
}
@media (min-width: 992px) {
  .suite-slide-image {
    min-height: 526px;
  }
}

.suite-slide-content {
  position: relative;
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 3rem 2rem 4rem;
}
@media (min-width: 992px) {
  .suite-slide-content {
    padding: 2rem;
  }
}

.suite-content-wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 1200px) {
  .suite-content-wrapper {
    margin-right: auto;
  }
}

.suite-vertical-title {
  font-family: "Forum", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 3.5rem;
  line-height: 1;
  color: rgb(94, 103, 146);
  margin-bottom: 1.5rem;
}
.suite-vertical-title span {
  display: block;
  display: block;
  color: rgb(198, 185, 185);
}
@media (max-width: 1200px) {
  .suite-vertical-title {
    font-size: 5rem;
  }
}
@media (max-width: 991.98px) {
  .suite-vertical-title {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .suite-vertical-title span {
    transform: translateX(0);
  }
}

.suite-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-label {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: #c7a47e;
}

.stat-value {
  font-family: "Forum", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 2.5rem;
  color: #ffffff;
  line-height: 1;
  margin-top: 0.5rem;
}
.stat-value sup {
  font-size: 1.5rem;
}

.suite-details-list {
  margin-bottom: 2.5rem;
}

.detail-item {
  margin-bottom: 1rem;
}
.detail-item .detail-label {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: #c7a47e;
  font-weight: 600;
}
.detail-item .detail-value {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  font-size: 1rem;
}

.btn-book-now-outline {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  border: 1px solid #fff;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: 20px;
}
.btn-book-now-outline:hover {
  background-color: #c7a47e;
  color: #0c1839;
}

#suite-slider {
  position: relative;
  padding-top: 7rem;
  /* Custom Navigation Arrows */
}
#suite-slider .accent-line {
  margin-left: auto;
  margin-right: auto;
}
#suite-slider .owl-nav button {
  font-size: 2em !important;
  background: transparent !important;
  color: #0c1839 !important;
  transition: color 0.3s;
  margin: 0 5px;
  padding: 0 10px !important;
  position: absolute;
  top: 40%;
  transform: translateY(0%);
  z-index: 8;
  padding-bottom: 8px !important;
  line-height: 1;
}
#suite-slider .owl-nav button img {
  max-width: 150px;
  filter: invert(1) drop-shadow(0px 2px 9px black);
}
#suite-slider .owl-nav button:hover {
  color: #0056b3 !important;
}
#suite-slider .owl-nav .owl-prev {
  left: 0px;
}
#suite-slider .owl-nav .owl-next {
  right: 0px;
}
#suite-slider h2 {
  margin-bottom: 1rem;
}
#suite-slider .suite-slide-item ul img {
  max-width: 18px;
  margin-right: 5px;
  display: inline;
}

.site-footer {
  padding-top: 3rem;
  color: #ffffff;
}
.site-footer .footer-logo {
  text-align: center;
}
.site-footer .footer-logo img {
  background-color: #fff;
  border-radius: 172px;
  max-height: 172px;
}
@media (max-width: 991.98px) {
  .site-footer {
    padding-top: 4rem;
  }
}
.site-footer .footer-socila-media {
  margin-top: 25px;
}
.site-footer .footer-socila-media ul {
  margin: 0;
  padding: 0;
}
.site-footer .footer-socila-media ul li {
  display: inline;
  list-style: none;
}
.site-footer .footer-socila-media ul li a {
  width: 35px;
  height: 35px;
  background-color: rgba(12, 24, 57, 0.3294117647);
  color: #fff;
  display: inline-flex;
  transition: all 0.3s;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.site-footer .footer-socila-media ul li a:hover {
  background-color: #0c1839;
  color: #fff;
}
.site-footer .footer-socila-media ul li:nth-child(1) a {
  background-color: #1877F2;
}
.site-footer .footer-socila-media ul li:nth-child(2) a {
  font-weight: bold;
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  background-size: 300% 300%;
  transition: background-position 0.5s;
}
.site-footer .footer-socila-media ul li:nth-child(3) a {
  background-color: red;
}

.footer-links-section {
  padding-bottom: 0rem;
}
@media (max-width: 991.98px) {
  .footer-links-section {
    padding-bottom: 3rem;
  }
}

.footer-logo {
  margin-bottom: 2rem;
}
.footer-logo .logo-name {
  font-size: 1.5rem;
  letter-spacing: 3px;
  line-height: 1;
  color: #ffffff;
}
.footer-logo .logo-subtext {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c7a47e;
  font-weight: 300;
  margin-top: 0.5rem;
}

.footer-heading {
  font-family: "Forum", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.1rem;
  color: #c7a47e;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav-list li {
  margin-bottom: 0.5rem;
}
.footer-nav-list li a {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-nav-list li a:hover {
  color: #c7a47e;
}

.footer-bottom-bar {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}
.footer-bottom-bar .copyright-text,
.footer-bottom-bar .terms-text {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.85rem;
  margin: 0;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
}

.payment-icons i {
  font-size: 1.5rem;
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.gallery {
  /* Custom Navigation Arrows */
}
.gallery .accent-line {
  margin-right: unset;
  margin-left: unset;
}
.gallery .owl-theme .owl-nav button {
  font-size: 2em !important;
  background: transparent !important;
  color: #0c1839 !important;
  transition: color 0.3s;
  margin: 0 5px;
  padding: 0 10px !important;
  position: absolute;
  top: 30%;
  transform: translateY(0%);
  z-index: 8;
  padding-bottom: 8px !important;
  line-height: 1;
}
.gallery .owl-theme .owl-nav button img {
  filter: invert(1) drop-shadow(0px 2px 9px black);
  max-width: 150px;
}
.gallery .owl-theme .owl-nav button:hover {
  color: #0056b3 !important;
}
.gallery .owl-theme .owl-nav .owl-prev {
  left: 0px;
}
.gallery .owl-theme .owl-nav .owl-next {
  right: 0px;
}
.gallery .img-wrapper img {
  height: 310px;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery.gal-page .img-wrapper {
  margin-bottom: 15px;
}
.gallery-content p {
  text-align: justify;
}
.gallery-content h2, .gallery-content h3, .gallery-content h4, .gallery-content h5 {
  color: #c7a47e;
}

.blog-section {
  background: #fff;
}
.blog-section .blog-title {
  font-size: 70px;
  line-height: 1;
  color: #b6aaa5;
}
.blog-section .blog-description {
  font-family: "Jost", sans-serif;
  color: #333;
  max-width: 400px;
  margin-left: auto;
}
.blog-section .see-more-link {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0c1839;
  text-decoration: none;
  border-bottom: 1px solid #0c1839;
  padding-bottom: 3px;
  transition: all 0.3s ease;
}
.blog-section .see-more-link:hover {
  color: #c7a47e;
  border-bottom-color: #c7a47e;
}
.blog-section .blog-card {
  position: relative;
  overflow: hidden;
}
.blog-section .blog-card .blog-img img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-section .blog-card:hover img {
  transform: scale(1.05);
}
.blog-section .blog-card .blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}
.blog-section .blog-card .blog-meta {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 8px;
}
.blog-section .blog-card .blog-heading {
  font-family: "Forum", serif;
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 400;
}

.indigo-deluxe {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}
.indigo-deluxe:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-image: linear-gradient(180deg, rgba(12, 24, 57, 0.8901960784), transparent);
  height: 100%;
}
.indigo-deluxe .img-wrapper img {
  height: 88vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.indigo-deluxe .indi-row-wrapper {
  display: flex;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  flex-direction: row;
  justify-content: space-between;
  padding: 90px 150px;
}
.indigo-deluxe .indi-row-wrapper .indi-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.indigo-deluxe .indi-row-wrapper .indi-box h4 {
  display: inline-flex;
  font-family: Jost, sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 18px;
  color: #989daf;
}
.indigo-deluxe .indi-row-wrapper .indi-box h2 {
  display: flex;
  justify-content: center;
  width: 100%;
  font-family: "Forum", serif;
  color: #fff;
  font-size: 42px;
  text-transform: uppercase;
  text-align: center;
  padding: 0 5%;
  margin: 0;
  white-space: nowrap;
  color: #fff;
}
.indigo-deluxe .indi-row-wrapper .indi-box h3 {
  color: #fff;
  font-family: "Forum", serif;
  font-weight: 300;
}

.trip-adviser {
  position: relative;
}
.trip-adviser p {
  margin-top: 20px;
}
.trip-adviser .main--img img {
  height: 46vh;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  filter: brightness(0.4);
  -o-object-position: 35% 37%;
     object-position: 35% 37%;
}
.trip-adviser .trip-logo img {
  max-height: 94px;
}
.trip-adviser .overlay-text {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  flex-direction: column;
  display: flex;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  align-items: center;
  justify-self: center;
}
.trip-adviser .overlay-text h2 {
  font-size: 43px;
  font-family: "Forum", sans-serif;
  font-weight: 500;
  color: #fff;
  margin-top: 1.5rem;
  text-transform: uppercase;
}
.trip-adviser .overlay-text p {
  font-size: 18px;
  color: #fff;
}
.trip-adviser .common-btn {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  border: 1px solid #fff;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  transition: all 0.3s ease;
  margin-left: 10px;
}
.trip-adviser .common-btn:hover {
  border-color: transparent;
  background-color: #0c1839;
}

#restaurent h4 {
  color: #0d1a33;
  position: relative;
  font-family: "Forum", serif;
}
#restaurent h4:before {
  content: "";
  display: flex;
  width: 1px;
  height: 22px;
  background-color: #0d1a33;
  margin: 2px auto;
}

.testimonial-section {
  padding: 60px 0;
  /* Testimonial Card Styling */
  /* Reviewer Info Styling */
  /* Owl Carousel Customizations (Navigation and Dots) */
  /* Custom Navigation Arrows */
}
.testimonial-section .section-title {
  text-align: center;
  font-size: 2.5em;
  color: #333;
  margin-bottom: 40px;
  font-weight: 700;
}
.testimonial-section .testimonial-card {
  background: #f3f3f3;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 20px 10px; /* Provides spacing between items */
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-section .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.testimonial-section .quote-icon {
  font-size: 2.5em;
  color: #007bff; /* Primary color */
  margin-bottom: 15px;
  display: block;
}
.testimonial-section .review-text {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
  font-style: italic;
}
.testimonial-section .reviewer-info {
  display: flex;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 20px;
}
.testimonial-section .reviewer-img {
  width: 60px !important;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 15px;
  border: 3px solid #007bff; /* Highlight circle */
}
.testimonial-section .reviewer-name {
  margin: 0;
  font-size: 1.1em;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}
.testimonial-section .reviewer-title {
  margin: 0;
  font-size: 0.9em;
  color: #777;
  font-weight: 400;
}
.testimonial-section .owl-theme .owl-nav button {
  font-size: 2em !important;
  background: transparent !important;
  color: #0c1839 !important;
  transition: color 0.3s;
  margin: 0 5px;
  padding: 0 10px !important;
  position: absolute;
  top: 40%;
  z-index: 8;
  padding-bottom: 8px !important;
  line-height: 1;
}
.testimonial-section .owl-theme .owl-nav button img {
  max-width: 100px;
}
.testimonial-section .owl-theme .owl-nav button:hover {
  color: #0056b3 !important;
}
.testimonial-section .owl-theme .owl-nav .owl-prev {
  left: 0px;
}
.testimonial-section .owl-theme .owl-nav .owl-next {
  right: 0px;
}

.about-inner {
  background-color: #fbfbfb;
}
.about-inner p {
  font-size: 18px;
  text-align: justify;
  line-height: 28px;
}
.about-inner h4 {
  font-family: "Forum", serif;
  color: #585C7C;
}
.about-inner h5 {
  color: #585C7C;
  font-family: "Forum", serif;
}
.about-inner .story-image-wrap {
  overflow: hidden;
}
.about-inner .story-image-wrap img {
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease-in-out;
}
.about-inner .story-image-wrap:hover img {
  transform: scale(1.05);
}
.about-inner .common-btn {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  border: 1px solid #0c1839;
  color: #0c1839;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1.5rem;
  display: inline-block;
  transition: all 0.3s ease;
}
.about-inner .common-btn:hover {
  background-color: #0c1839;
  color: #fff;
}

.our-pillars h4 {
  margin-top: 1rem;
  font-size: 1.5rem;
}
.our-pillars p {
  color: #333333;
}

.our-story {
  background-color: #ffffff;
}
.our-story h2, .our-story h3, .our-story h4 {
  font-family: "Forum", serif;
}
.our-story .section-heading {
  font-family: "Forum", serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
}
.our-story p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.our-story p strong, .our-story p b {
  color: #c09e6c;
  font-weight: 600;
}
.our-story .accent-line {
  display: block;
  width: 50px;
  height: 2px;
  background-color: #c09e6c;
  margin-bottom: 1rem;
}
.our-story .story-divider {
  border-top: 1px solid #e0e0e0;
  margin: 2rem 0;
}
.our-story .final-tagline {
  font-family: "Jost", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-top: 2rem;
}
.our-story .story-content {
  background-color: #f3f1f1;
  padding: 33px 33px;
}
.our-story .place-content {
  background-color: #f3f1f1;
  padding: 33px 33px;
}
.our-story .promise-content {
  background-color: #f3f1f1;
  padding: 33px 33px;
  min-height: 462px;
}

.bredcumb {
  padding: 172px 0 50px 0px;
  background-color: black;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.11), rgba(0, 0, 0, 0)), url(img/bred.jpg);
  background-position: center;
  position: relative;
  color: #fff;
}
.bredcumb h1 {
  font-size: 50px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}
.bredcumb .bred-list-wrappe ul {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.bredcumb .bred-list-wrappe ul li {
  margin-right: 5px;
  list-style: none;
}
.bredcumb .bred-list-wrappe ul li a {
  color: #fff;
  text-decoration: none;
}
.bredcumb .bred-list-wrappe ul li:after {
  content: "\f105";
  font-family: "FontAwesome";
  padding-left: 8px;
  padding-right: 5px;
}
.bredcumb .bred-list-wrappe ul li:last-child:after {
  display: none;
}

.contact-section {
  /* --- Layout (Flexbox) --- */
  /* --- Left Column: Information Styling --- */
  /* Gray Placeholder Box */
  /* --- Right Column: Form Styling --- */
  /* Input and Textarea Styling */
  /* Submit Button Styling */
}
.contact-section h4, .contact-section h2, .contact-section h3 {
  font-family: "Forum", serif;
}
.contact-section .contact-content-wrapper {
  display: flex;
  gap: 80px; /* Space between the two columns */
  align-items: flex-start; /* Align content to the top */
}
.contact-section .contact-info,
.contact-section .contact-form-container {
  flex: 1; /* Each column takes up equal width */
}
.contact-section .info-text {
  font-size: 1.1em;
  color: #0c1839;
  margin-top: 20px;
  margin-bottom: 5px;
}
.contact-section .call-us-title {
  margin-top: 30px; /* Extra space above "Call us" */
}
.contact-section .info-description {
  font-size: 0.95em;
  color: #7f8c8d; /* Muted gray text */
  margin-bottom: 20px;
}
.contact-section .map-placeholder {
  width: 100%;
  height: 350px; /* Approximate height from the image */
  background-color: #eee; /* Light gray color */
  margin-top: 40px;
}
.contact-section .form-heading {
  font-size: 1.8em;
  font-weight: 300;
  color: #0c1839;
  margin-top: 0;
}
.contact-section .form-description {
  font-size: 0.95em;
  color: #7f8c8d;
  margin-bottom: 40px;
}
.contact-section .form-group {
  margin-bottom: 25px;
}
.contact-section .form-group label {
  display: block;
  font-size: 0.85em;
  text-transform: uppercase;
  color: #7f8c8d;
  margin-bottom: 5px;
}
.contact-section form input[type=text],
.contact-section form input[type=email],
.contact-section form textarea {
  width: 100%;
  padding: 10px 0; /* Padding for height */
  border: none;
  border-bottom: 1px solid #ccc; /* Thin separator line */
  background: transparent;
  font-size: 1em;
  color: #444;
  box-sizing: border-box;
  transition: border-bottom-color 0.3s;
  resize: none; /* Prevent manual resize on textarea */
}
.contact-section form input:focus,
.contact-section form textarea:focus {
  outline: none;
  border-bottom-color: #0c1839; /* Highlight on focus */
}
.contact-section form textarea {
  border: 1px solid #ccc; /* Full border for textarea */
  padding: 10px;
  height: 128px;
}
.contact-section .submit-button {
  background-color: #0c1839; /* Dark blue background */
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 0.9em;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background-color 0.3s;
  float: left; /* Aligns the button to the left */
}
.contact-section .submit-button:hover {
  background-color: #c7a47e;
}

.find-your-way h4, .find-your-way h3, .find-your-way h5 {
  font-family: "Forum", serif;
}
.find-your-way .find-box {
  padding: 25px;
  min-height: 286px;
  background-color: #f3f1f1;
}
.find-your-way h4 {
  font-weight: 600;
}
.find-your-way ul {
  padding-left: 0px;
}
.find-your-way ul li {
  font-size: 16px;
  margin-bottom: 10px;
  list-style: none;
  position: relative;
  padding-left: 20px;
}
.find-your-way ul li:before {
  position: absolute;
  left: 0;
  color: #0c1839;
  content: "\f00c";
  font-family: "fontawesome";
  top: 0;
}

.room-listings {
  /* Global Icon Styling (For the 79M2/person icons - assuming a simple text/font icon) */
}
.room-listings h4, .room-listings h3 {
  font-family: "Forum", serif;
}
.room-listings .room-features span:nth-child(1)::before {
  content: "⌂"; /* Placeholder for M2 icon */
  font-size: 1.1em;
}
.room-listings .room-features span:nth-child(2)::before {
  content: "♟"; /* Placeholder for Person icon */
  font-size: 1.1em;
}
.room-listings .room-features span:nth-child(3)::before {
  content: "🛏️ "; /* Placeholder for Bed icon */
  font-size: 1.1em;
}
.room-listings .room-grid {
  display: grid;
  /* Create three equal columns by default */
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.room-listings .room-card {
  background-color: #fff;
  /* Optional: Slight box shadow if desired, but image shows clean break */
}
.room-listings .room-card:hover img {
  transform: scale(1.07);
}
.room-listings .room-image-wrapper {
  position: relative;
  overflow: hidden;
}
.room-listings img {
  width: 100%;
  transition: all 0.3s ease-out;
  height: 251px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transform: scale(1);
}
.room-listings .room-price {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  color: #2c3e50; /* Dark navy color */
  padding: 8px 15px;
  font-size: 0.9em;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.room-listings .room-details {
  background-color: #f1f1f1;
  padding: 22px;
}
.room-listings .room-features {
  font-size: 15px;
  color: #0e0e0e;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Forum", serif;
  letter-spacing: 1px;
}
.room-listings .room-features span {
  margin-right: 5px;
}
.room-listings .room-title {
  font-size: 26px;
  font-weight: 200;
  color: #2c3e50;
  margin-top: 0;
  margin-bottom: 10px;
}
.room-listings .room-title a {
  transition: all 0.3s;
}
.room-listings .room-title a:hover {
  color: #c7a47e;
}
.room-listings .room-description {
  font-size: 0.9em;
  color: #7f8c8d;
  margin-bottom: 25px;
}
.room-listings .btn {
  display: inline-block;
  padding: 12px 25px;
  text-align: center;
  text-decoration: none;
  font-size: 0.9em;
  border-radius: 0;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s;
}
.room-listings .btn-outline {
  background-color: transparent;
  color: #0c1839; /* Dark navy text */
  border: 1px solid #0c1839; /* Dark navy border */
}
.room-listings .btn-outline:hover {
  background-color: #0c1839;
  color: #fff;
}

.room-single .room-single {
  background: #fff;
}
.room-single .room-header small {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #777;
}
.room-single .room-header .price {
  font-size: 20px;
  font-weight: 500;
}
.room-single h4, .room-single h4, .room-single h5 {
  color: #c7a47e;
}
.room-single .room-meta {
  color: #555;
  font-size: 14px;
  margin-top: 10px;
}
.room-single .room-description p {
  color: #444;
  line-height: 1.6;
}
.room-single .room-description ul li img {
  max-width: 18px;
  margin-right: 5px;
}
.room-single .room-amenities ul li img {
  max-width: 18px;
  margin-right: 5px;
}
.room-single .room-amenities ul li {
  margin-bottom: 8px;
}
.room-single .room-sidebar {
  background: #f8f9fa;
  border-radius: 8px;
}
.room-single .room-sidebar h5 {
  font-weight: 600;
  margin-bottom: 15px;
}
.room-single .room-sidebar input {
  border-radius: 0;
}
.room-single .room-sidebar .btn {
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 600;
  background-color: #0c1839;
  color: #fff;
  padding: 11px 23px;
  background-color: #0c1839;
}
.room-single .room-sidebar .btn:hover {
  background-color: #c7a47e;
  border-color: #c7a47e;
}
.room-single .weather-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  text-align: left;
}
.room-single .weather-box h6 {
  font-weight: 600;
  margin-bottom: 10px;
}
.room-single h2 {
  margin-bottom: 0.5rem;
}
.room-single h3, .room-single h4, .room-single h5, .room-single h6 {
  font-family: "Forum", serif;
  font-weight: 500;
}
.room-single h5 {
  font-size: 30px;
}
.room-single hr {
  margin: 41px 0px !important;
}

.room-slide-page {
  /* Custom Navigation Arrows */
}
.room-slide-page img {
  height: 550px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.room-slide-page .owl-item {
  filter: brightness(0.6);
  transition: all 0.3s;
}
.room-slide-page .owl-item.active {
  filter: brightness(1);
}
.room-slide-page .owl-theme .owl-nav button {
  font-size: 2em !important;
  background: transparent !important;
  color: #0c1839 !important;
  transition: color 0.3s;
  margin: 0 5px;
  padding: 0 10px !important;
  position: absolute;
  top: 35%;
  transform: translateY(0%);
  z-index: 8;
  padding-bottom: 8px !important;
  line-height: 1;
}
.room-slide-page .owl-theme .owl-nav button img {
  filter: invert(1) drop-shadow(0px 2px 9px black);
  width: 150px;
  -o-object-fit: unset;
     object-fit: unset;
  height: auto;
}
.room-slide-page .owl-theme .owl-nav button:hover {
  color: #0056b3 !important;
}
.room-slide-page .owl-theme .owl-nav .owl-prev {
  left: 0px;
}
.room-slide-page .owl-theme .owl-nav .owl-next {
  right: 0px;
}

.chef-section .dine-inner {
  background-color: #F9F9F9;
  padding: 100px 70px;
}
.chef-section .sub-heading {
  font-size: 18px;
  color: #222;
  font-weight: 400;
}
.chef-section .menu-row {
  margin-top: 40px;
}
.chef-section .menu-item .item-title {
  font-size: 18px;
  font-weight: 400;
  color: #0c1423;
  margin-bottom: 6px;
}
.chef-section .menu-item .price {
  font-weight: 400;
  color: #0c1423;
}
.chef-section .menu-item .item-desc {
  font-size: 14px;
  color: #222;
  margin-bottom: 5px;
}
.chef-section .menu-item .item-tags {
  font-size: 12px;
  color: #a0a0a0;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.chef-section .vertical-line {
  width: 1px;
  background-color: #cfcfcf;
  height: 90%;
  align-self: center;
}

.common-page h2, .common-page h3, .common-page h4, .common-page h5 {
  color: #c7a47e;
}
.common-page ol li {
  position: relative;
  margin-left: 20px;
  margin-bottom: 6px;
}
.common-page ul li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
}
.common-page ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  color: #c7a47e;
  font-size: 16px;
  content: "\f00c";
  font-family: "fontawesome";
}

.blogs-page {
  background-color: #f5f5f5;
}
.blogs-page .blogs-box-page {
  padding: 20px;
  background-color: #fff;
  border-radius: 0;
}
.blogs-page .blogs-box-page img {
  height: 215px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blogs-page .blogs-box-page .date-wraps {
  margin-top: 8px;
  color: #7b7b7b;
}
.blogs-page .blogs-box-page h4 {
  color: #c7a47e;
  font-size: 18px;
}
.blogs-page .blogs-box-page .common-btn {
  background-color: #c7a47e;
  color: #fff;
  padding: 5px 12px;
  transition: all 0.3s;
}
.blogs-page .blogs-box-page .common-btn:hover {
  color: #0c1839;
}

.acti {
  background-color: #fff6f6;
  /* Section Container */
  /* Activities Section */
  /* Seasons Section */
  /* Sustainable Section */
}
.acti .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.acti h2 {
  color: var(--theme-color);
  margin-bottom: 10px;
  font-size: 2rem;
}
.acti h3 {
  color: #c7a47e;
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 1.7rem;
}
.acti p {
  margin-bottom: 15px;
}
.acti .intro {
  text-align: center;
  max-width: 800px;
  margin: auto;
  color: #444;
}
.acti .activities {
  background: #fff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 60px;
}
.acti .activity-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 15px;
}
.acti .activity-item i {
  font-size: 1.4rem;
  color: var(--theme-color);
  min-width: 30px;
}
.acti .activity-item h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--theme-dark);
}
.acti .activity-item p {
  margin: 5px 0 0;
  color: #555;
}
.acti .seasons {
  background: #fff;
  padding: 50px;
  border-radius: 16px;
  margin-top: 60px;
}
.acti .season-list {
  padding-left: 0;
}
.acti .season-list li {
  list-style: none;
  margin-bottom: 10px;
}
.acti .season-list i {
  color: var(--theme-color);
  margin-right: 10px;
}
.acti .sustainable {
  background: #fff;
  padding: 50px;
  border-radius: 16px;
  margin-top: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blogs-inner {
  background-color: #f6f9ff;
}
.blogs-inner .thub-wrapper {
  position: relative;
}
.blogs-inner .date-inner-blogs .date-main {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: #c7a47e;
  color: #fff;
  padding: 5px 8px;
}
.blogs-inner .main-contss-wraps {
  background-color: #fff;
  padding: 25px;
  border-radius: 5px;
}

.related-blogs {
  margin-top: 57px;
  background-color: #ffffff;
  padding: 22px;
}
.related-blogs .blogs-box-page {
  padding: 20px;
  background-color: #f1f1f1;
  border-radius: 0;
}

.blogs-sidebar-wrapper {
  padding: 25px;
  background-color: #fff;
  border-radius: 5px;
}

.sidebar-recent-blogs li {
  margin-bottom: 15px;
}

.news-letter form {
  display: flex;
  align-items: center;
}
.news-letter form input {
  height: 40px;
  line-height: 40px;
  border-radius: 0;
}
.news-letter form button {
  background-color: #c7a47e;
  color: #ffffff;
  border: none;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 17px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.acti-sec-container .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.acti-sec-container h1 {
  color: #c38d6d;
  font-weight: 700;
  margin: 8px 0 22px;
  font-size: 28px;
}
.acti-sec-container p.lead {
  color: #6b6b6b;
  margin: 0 0 30px;
  font-size: 15px;
}
.acti-sec-container .grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.acti-sec-container .card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(34, 34, 34, 0.06);
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.28, 1), box-shadow 0.28s;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  border: 1px solid rgba(11, 11, 11, 0.03);
}
.acti-sec-container .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 42px rgba(34, 34, 34, 0.12);
}
.acti-sec-container .card-media {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.acti-sec-container .card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.02));
}
.acti-sec-container .card-body {
  padding: 18px 18px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.acti-sec-container .icon {
  font-size: 28px;
  line-height: 1;
  margin-top: 2px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 -4px 10px rgba(0, 0, 0, 0.02);
  flex-shrink: 0;
}
.acti-sec-container .content h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #222;
  display: flex;
  gap: 8px;
  align-items: center;
}
.acti-sec-container .content p {
  margin: 0;
  color: #6b6b6b;
  font-size: 14px;
  line-height: 1.5;
}
.acti-sec-container .tag {
  margin-left: auto;
  font-size: 12px;
  color: #fff;
  background: #c38d6d;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
}
@media (max-width: 520px) {
  .acti-sec-container .wrap {
    padding: 16px;
  }
  .acti-sec-container h1 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 768px) {
  .room-listings .room-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offers-section .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bredcumb h1 {
    font-size: 40px;
  }
  .acti-sec-container .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media only screen and (max-width: 576px) {
  .acti-sec-container .wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
  }
  .acti .activities {
    padding: 30px;
  }
  .acti .seasons {
    padding: 30px;
  }
  .acti .sustainable {
    padding: 30px;
  }
  .bredcumb h1 {
    font-size: 35px;
  }
  header .right-menu {
    display: flex;
    gap: 15px;
    align-items: center;
    display: none;
  }
  .booking-bar {
    padding: 22px 0;
    background-color: rgb(16, 33, 69);
    position: unset;
    bottom: 18px;
    width: 100%;
  }
  .section-heading {
    font-size: 1.8rem;
  }
  .features-section .feature-icon img {
    max-height: 50px;
  }
  .features-section .feature-icon img {
    max-height: 45px;
  }
  .features-section .feature-stat {
    font-size: 2rem;
  }
  #suite-slider .owl-nav button {
    top: 26%;
  }
  #suite-slider .owl-nav button img {
    max-width: 84px;
    filter: invert(1) drop-shadow(0px 2px 9px black);
  }
  .stat-value {
    font-size: 1.5rem;
  }
  .indigo-deluxe .indi-row-wrapper {
    padding: 25px 15px;
  }
  .indigo-deluxe .indi-row-wrapper {
    padding: 25px 15px;
    flex-direction: column;
    top: 50%;
    gap: 30px;
    transform: translateY(-50%);
  }
  .indigo-deluxe .indi-row-wrapper .indi-box h2 {
    margin: 0;
  }
  .indigo-deluxe .indi-row-wrapper .indi-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .home-video:before {
    display: none;
  }
  .trip-adviser .overlay-text h2 {
    font-size: 38px;
  }
  .trip-adviser .common-btn {
    margin-left: 0;
    margin-top: 30px;
  }
  .room-listings .room-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .offers-section .offers-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 768px) {
  .contact-section .contact-content-wrapper {
    flex-direction: column;
  }
  .contact-section .contact-info, .contact-section .contact-form-container {
    /* flex: auto; */
    width: 100%;
  }
  .features-section .feature-stat {
    font-size: 2rem;
  }
}
@media (max-width: 567px) {
  .blog-section .section-heading br {
    display: none;
  }
  .contact-section .form-heading {
    margin-bottom: 28px;
  }
  .about-inner.section-padding-large .mt-5 {
    margin-top: 0rem !important;
  }
  .about-section .section-heading br {
    display: none;
  }
  .tnp-subscription-minimal.with-name input.tnp-email, .tnp-subscription-minimal.with-name input.tnp-name, .tnp-subscription-minimal input.tnp-submit {
    width: 44% !important;
    margin-bottom: 0rem !important;
  }
  .chef-section .dine-inner {
    background-color: #F9F9F9;
    padding: 70px 10px;
  }
  .dine-inner .mb-5 {
    margin-bottom: 1rem !important;
  }
  .tnp-subscription-minimal input.tnp-email, .tnp-subscription-minimal input.tnp-name {
    margin-right: 0px !important;
  }
}
.tnp-subscription-minimal input.tnp-email, .tnp-subscription-minimal input.tnp-name {
  margin-right: 0px !important;
}/*# sourceMappingURL=style.css.map */