@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@200..700&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
#whatsapp-widget .chat-header,
#whatsapp-widget .chat-content,
#whatsapp-widget .message-input {
  position: fixed;
  right: 20px;
  width: 300px;
  background-color: #e5ddd5;
  z-index: 10003;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
#whatsapp-widget .chat-header {
  top: calc(100% - 420px);
  height: 60px;
  background-color: #075e54;
  color: white;
  padding: 10px;
  display: none;
  align-items: center;
  border-radius: 12px 12px 0 0;
}
#whatsapp-widget .chat-header .avatar-container {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
#whatsapp-widget .chat-header img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
#whatsapp-widget .chat-header .online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background-color: #25d366;
  border-radius: 50%;
  border: 2px solid #075e54;
}
#whatsapp-widget .chat-header .chat-header-info {
  flex-grow: 1;
}
#whatsapp-widget .chat-header span {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  color: #FFF;
}
#whatsapp-widget .chat-header .online-status {
  font-size: 12px;
}
#whatsapp-widget .chat-header .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}
#whatsapp-widget .chat-header .close-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
#whatsapp-widget .chat-content {
  top: calc(100% - 360px);
  height: 300px;
  padding: 20px;
  overflow-y: auto;
  display: none;
}
#whatsapp-widget .chat-content .message {
  max-width: 80%;
  padding: 8px 12px;
  margin-bottom: 10px;
  border-radius: 7.5px;
  position: relative;
  word-wrap: break-word;
}
#whatsapp-widget .chat-content .message.received {
  background-color: #ffffff;
  align-self: flex-start;
}
#whatsapp-widget .chat-content .message.sent {
  background-color: #dcf8c6;
  align-self: flex-end;
  margin-left: auto;
}
#whatsapp-widget .message-input {
  bottom: 20px;
  height: 60px;
  display: none;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 0 0 12px 12px;
}
#whatsapp-widget .whatsapp-btn {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 12px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#whatsapp-widget .whatsapp-btn:hover {
  background-color: #128c7e;
}
#whatsapp-widget .typing-indicator {
  background-color: #e5ddd5;
  padding: 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
#whatsapp-widget .typing-indicator span {
  height: 10px;
  width: 10px;
  float: left;
  margin: 0 1px;
  background-color: #9e9ea1;
  display: block;
  border-radius: 50%;
  opacity: 0.4;
}
#whatsapp-widget .typing-indicator span:nth-of-type(1) {
  animation: 1s blink infinite 0.3333s;
}
#whatsapp-widget .typing-indicator span:nth-of-type(2) {
  animation: 1s blink infinite 0.6666s;
}
#whatsapp-widget .typing-indicator span:nth-of-type(3) {
  animation: 1s blink infinite 0.9999s;
}
@keyframes blink {
  50% {
    opacity: 1;
  }
}
#whatsapp-widget .chat-icon {
  position: fixed;
  bottom: 90px;
  right: 10px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10004;
  animation: wave 2s infinite;
}
#whatsapp-widget .chat-icon img {
  width: 35px;
  height: 35px;
}
@keyframes wave {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

p, a, ul, li, span, b {
  font-size: 14px;
}

.supportive-text {
  color: #DC9F11;
  margin-bottom: 4px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 4px;
}

.heading {
  font-size: 30px;
  line-height: 38px;
  font-weight: 500;
}

.supportive-paragraph {
  color: #4D4D4D;
  font-weight: 400;
  font-family: "Josefin Sans";
  margin-bottom: 0;
  line-height: 26px;
  margin-top: 18px;
}

.send-button {
  color: #F8F5F0;
  font-weight: 500;
  background: #DC9F11;
  border-color: transparent;
  border-radius: 0;
  padding: 5px 26px;
  font-size: 18px;
  display: flex;
  align-items: center;
}
.send-button:hover {
  color: #F8F5F0;
  background: #6A082A;
  border-color: #6A082A;
}
.send-button a {
  text-decoration: none;
  font-family: "Josefin Sans";
  color: #F8F5F0;
}
.send-button img {
  margin-left: 6px;
}

header {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}
header .navbar {
  background-color: #6A082A;
}
header .navbar .navbar-brand {
  color: #F8F5F0;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
header .navbar .navbar-brand img {
  width: 3rem;
}
header .navbar .navbar-toggler {
  color: #F8F5F0;
}
header .navbar .offcanvas {
  width: 80%;
  background-color: #F8F5F0;
}
header .navbar .offcanvas .offcanvas-header {
  background-color: #6A082A;
}
header .navbar .offcanvas .offcanvas-header .offcanvas-title {
  color: #F8F5F0;
}
header .navbar .offcanvas .offcanvas-header .offcanvas-title img {
  width: 3rem;
}
header .navbar .offcanvas .offcanvas-header .btn-close {
  background-color: darkgray;
}
header .navbar .nav-item {
  margin: 0 5px;
}
header .navbar .nav-item .nav-link {
  color: #242424;
  font-style: normal;
  font-weight: 500;
  line-height: 28.05px;
  text-transform: uppercase;
  font-size: 18px;
  font-family: "Josefin Sans";
}
header .navbar .nav-item:hover .nav-link {
  color: #DC9F11;
}
header .navbar .nav-item:hover .nav-link::after {
  content: "";
  display: block;
}

#hero {
  overflow: hidden;
  position: relative;
  top: 0;
  height: 22vh;
}
#hero img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
#hero .hero-content {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#hero h1 {
  color: #F8F5F0;
  text-align: center;
  font-size: 33px;
  font-style: normal;
  font-weight: 500;
  margin: 0;
}

#hero,
#homeHero {
  /* Add the overlay */
}
#hero::before,
#homeHero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

#homePage #homeHero {
  overflow: hidden;
  position: relative;
  overflow: hidden;
  height: 93vh;
}
#homePage #homeHero img {
  -o-object-fit: cover;
     object-fit: cover;
  height: inherit;
}
#homePage #homeHero .homehero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#homePage #homeHero .homehero-content h1 {
  color: #F8F5F0;
  text-align: center;
  font-size: 33px;
  font-weight: 500;
  margin: 0;
  line-height: 48px;
}
#homePage #homeHero .homehero-content p {
  color: #F8F5F0;
  font-family: "Josefin Sans";
  line-height: 26px;
  font-size: 16px;
}
#homePage #homeHero .homehero-content .contact-btn {
  display: inline-block;
  padding: 12px 33px;
  color: #F8F5F0;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 13.272px;
  background-color: transparent;
  font-family: "Josefin Sans";
  border: 1.475px solid #F8F5F0;
}
#homePage #homeHero .homehero-content .contact-btn:hover {
  color: #6A082A;
  background-color: #6A082A;
  border: 1.475px solid #6A082A;
}
#homePage #homeHero .homehero-content .contact-btn a {
  text-decoration: none;
  color: #F8F5F0;
  font-size: 16px;
}
#homePage #specials {
  overflow: hidden;
}
#homePage #specials .supportive-paragraph {
  font-size: 16px;
}
#homePage #specials .card {
  border-radius: 0;
  border-color: #F1EEEB;
}
#homePage #specials .card:hover {
  background-color: white;
  transform: scale(1.05);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#homePage #specials .card .card-body h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
}
#homePage #specials .card .card-body p {
  font-family: "Josefin Sans";
  font-weight: 300;
}
#homePage #landmarks {
  overflow: hidden;
  background-color: #F5F6F8;
}
#homePage #landmarks .supportive-text {
  color: #DC9F11;
  margin-bottom: 0;
  font-size: 16px;
  text-align: center;
}
#homePage #landmarks .heading, #homePage #landmarks .supportive-paragraph {
  text-align: center;
}
#homePage #landmarks .landmark-content {
  margin-top: 1px;
}
#homePage #landmarks .airport-content, #homePage #landmarks .landmarks-historical {
  padding: 12% 0% 0 !important;
}
#homePage #landmarks .airport-content h2, #homePage #landmarks .landmarks-historical h2 {
  text-align: center;
}
#homePage #landmarks .airport-content p, #homePage #landmarks .landmarks-historical p {
  color: #4D4D4D;
  line-height: 28px;
  text-align: center;
}
#homePage #landmarks .airport-content img, #homePage #landmarks .landmarks-historical img {
  transition: transform 0.3s ease;
}
#homePage #landmarks .airport-content img:hover, #homePage #landmarks .landmarks-historical img:hover {
  transform: scale(1.03);
}
#homePage #landmarks .card {
  border: none;
  overflow: hidden;
  position: relative;
  border-radius: 0;
}
#homePage #landmarks .card .landmark-img {
  transition: transform 0.3s ease;
}
#homePage #landmarks .card:hover .landmark-img {
  transform: scale(1.05);
}
#homePage #landmarks h3 {
  color: #F8F5F0;
  font-size: 28px;
}
#homePage #landmarks p {
  color: #F8F5F0;
  font-size: 16px;
  font-family: "Josefin Sans";
  margin-bottom: 0;
}
#homePage #landmarks .swiper-pagination {
  position: relative !important;
  margin-top: 8px;
  text-align: center;
  bottom: -2px;
}
#homePage #landmarks .swiper-pagination .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.1);
  opacity: 1;
  width: 14px;
  height: 14px;
}
#homePage #landmarks .swiper-pagination .swiper-pagination-bullet-active {
  background: rgba(0, 0, 0, 0.45);
}
#homePage #amenities {
  overflow: hidden;
}
#homePage #amenities .supportive-text, #homePage #amenities .heading, #homePage #amenities .supportive-paragraph {
  text-align: center;
}
#homePage #amenities .features .feature-content {
  width: 42%;
}
#homePage #amenities .features .card {
  background-color: #F8F5F0;
  border-radius: 0;
  border-color: transparent;
}
#homePage #amenities .features .card:hover {
  background-color: #F8F5F0;
  transform: scale(1.05);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#homePage #amenities .features .card img {
  width: 4rem;
}
#homePage #amenities .features .card .card-body span {
  font-size: 20px !important;
}
#homePage #amenities .organic-delights {
  padding: 3% 0% 0 !important;
}
#homePage #amenities .organic-delights h2 {
  text-align: center;
}
#homePage #amenities .organic-delights p {
  text-align: center;
  line-height: 28px;
}
#homePage #amenities .organic-delights img {
  transition: transform 0.3s ease;
}
#homePage #amenities .organic-delights img:hover {
  transform: scale(1.03);
}
#homePage #hearFromCustomers {
  overflow: hidden;
  overflow: hidden;
  position: relative;
  background-image: url("../images/gallery-hero.webp");
  background-position: center;
  background-size: cover;
  text-align: center;
  background-attachment: unset;
}
#homePage #hearFromCustomers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
#homePage #hearFromCustomers .heading {
  color: #F8F5F0;
  text-align: center;
  position: relative;
  z-index: 1;
}
#homePage #hearFromCustomers .heading::before {
  background-color: #F8F5F0;
  height: 2px;
}
#homePage #hearFromCustomers .swiper {
  width: 100%;
  height: 100%;
}
#homePage #hearFromCustomers .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
}
#homePage #hearFromCustomers .swiper .swiper-slide .card {
  border: none;
  background-color: transparent;
}
#homePage #hearFromCustomers .swiper .swiper-slide .card p {
  color: #F8F5F0;
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  font-family: "Josefin Sans";
}
#homePage #hearFromCustomers .swiper .swiper-slide .card p:last-child {
  color: #F8F5F0;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 21.76px;
}
#homePage #hearFromCustomers .swiper .swiper-slide .card a {
  text-decoration: none;
}
#homePage #hearFromCustomers .swiper .swiper-slide img {
  width: 70%;
  display: flex;
  justify-content: center;
  left: 50%;
  padding: 30px 0px;
}
#homePage #hearFromCustomers .swiper .swiper-pagination-bullet {
  background: #F8F5F0;
}
#homePage #hearFromCustomers .swiper .swiper-pagination-bullet-active {
  border: 2px solid gray;
  background: #F8F5F0;
  height: 12px;
  width: 12px;
}
#homePage #chooseUs {
  overflow: hidden;
}
#homePage #chooseUs h2 {
  font-size: 27px;
}
#homePage #chooseUs .imageContent .card {
  background-color: #F8F5F0;
  border-radius: 0;
  border-color: transparent;
}
#homePage #chooseUs .imageContent .card .card-body li {
  font-family: "Josefin Sans";
  font-size: 20px;
  font-weight: 300;
  line-height: 36px;
}

#contactPage #contactUs {
  overflow: hidden;
}
#contactPage #contactUs .heading-location h2 {
  line-height: 36px;
}
#contactPage #contactUs ul {
  border: 1px solid #F1EEEB;
  padding: 0;
}
#contactPage #contactUs ul li {
  display: flex;
  align-items: center;
  line-height: 30px;
  margin-left: 13px;
}
#contactPage #contactUs ul li a {
  text-decoration: none;
  color: #242424;
}
#contactPage #contactUs ul li img {
  margin-right: 12px;
}
#contactPage #contactUs ul li span {
  font-family: "Josefin Sans";
}

#galleryPage #galleryContent .gallery-img {
  transition: transform 0.3s ease;
  height: 200px !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
#galleryPage #galleryContent .gallery-img:hover {
  transform: scale(1.03);
}

#aboutPage #aboutUs .position-relative img {
  transition: transform 0.3s ease;
}
#aboutPage #aboutUs .position-relative:hover img {
  transform: scale(1.05);
}

footer {
  background-color: #6A082A;
  color: #F8F5F0;
  font-size: 14px;
}
footer p,
footer a {
  font-weight: 200;
  font-family: "Josefin Sans";
}
footer b {
  font-weight: 500;
  font-family: "Josefin Sans";
}
footer h5 {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
}
footer h6 {
  text-transform: uppercase;
  font-family: "Josefin Sans";
  font-size: 16px;
  font-weight: 600;
}
footer .row:first-child ul li {
  font-style: normal;
  line-height: 35px;
  font-family: "Josefin Sans";
}
footer .row:first-child ul li a {
  color: #F8F5F0;
  text-decoration: none;
  font-weight: 400;
}
footer .row:first-child #footer-social-list li a {
  display: flex;
  width: 37px;
  height: 37px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 0.756px solid rgba(255, 255, 255, 0.8) !important;
  color: #242424;
}
footer .row:first-child #footer-contact-list li span {
  font-family: "Josefin Sans";
  font-weight: 700;
}
footer .row:first-child #footer-contact-list li span a {
  color: #F8F5F0;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  font-family: "Josefin Sans";
}
footer .row:last-child p {
  color: #F8F5F0;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
}
footer .row:last-child p a {
  color: #F8F5F0;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */