@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inria+Serif:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap%27);");
body {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #000000;
  position: relative;
  background-color: #ffffff;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}

p {
  font-family: Manrope;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul,
ol {
  margin: 0;
  padding: 0;
}
ul li,
ol li {
  list-style: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #000000;
}
a:hover {
  color: #000000;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
  border: 1px solid #ccc;
  padding: 1rem 0.625rem;
  background-color: #fff;
  background-image: url("../images/arpw-down.svg");
  background-repeat: no-repeat;
  background-position: right 0.625rem center;
  background-size: 0.625rem;
}

.green-btn {
  border-radius: 6.25rem;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 0.13rem;
  padding-left: 1.25rem;
}
.green-btn:hover span img {
  animation: arrowMove 0.2s ease forwards;
}
.green-btn:hover {
  background: var(--Green---01, #84b179);
}
.green-btn:hover small {
  color: #fff;
}
.green-btn:hover span {
  background: #fff;
}
.green-btn:hover span img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(2%) saturate(3419%) hue-rotate(62deg) brightness(108%) contrast(136%);
}
.green-btn small {
  color: var(--Blue---01, #1b3c53);
  font-family: Manrope;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.green-btn span {
  width: 3rem;
  height: 3rem;
  border-radius: 6.25rem;
  background: var(--Green---01, #84b179);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.green-btn span img {
  max-width: 3rem;
  max-height: 3rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6.25rem;
  animation: arrowBack 0.2s ease forwards;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
}
.green-btn.blue-btn {
  background: var(--Blue---01, #1b3c53);
}
.green-btn.blue-btn small {
  color: #fff;
}
.green-btn.blue-btn span {
  background: #fff;
}
.green-btn.blue-btn span img {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  filter: brightness(0) saturate(100%) invert(18%) sepia(31%) saturate(1046%) hue-rotate(162deg) brightness(96%) contrast(90%);
}
.green-btn.blue-btn:hover {
  background: var(--Green---01, #84b179);
}
.green-btn.blue-btn:hover small {
  color: #fff;
}
.green-btn.blue-btn:hover span {
  background: #fff;
}
.green-btn.blue-btn:hover span img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(2%) saturate(3419%) hue-rotate(62deg) brightness(108%) contrast(136%);
}
.green-btn.white-btn {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--White, #fff);
}
.green-btn.white-btn small {
  color: var(--Blue---01, #1b3c53);
}
.green-btn.white-btn span {
  background: var(--Blue---01, #1b3c53);
}
.green-btn.white-btn span img {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  filter: brightness(0) saturate(100%) invert(95%) sepia(0%) saturate(7500%) hue-rotate(99deg) brightness(109%) contrast(105%);
}
.green-btn.white-btn:hover {
  background: var(--Blue---01, #1b3c53);
}
.green-btn.white-btn:hover small {
  color: #fff;
}
.green-btn.white-btn:hover span {
  background: #fff;
}
.green-btn.white-btn:hover span img {
  filter: brightness(0) saturate(100%) invert(19%) sepia(15%) saturate(1972%) hue-rotate(162deg) brightness(94%) contrast(91%);
}

@keyframes arrowBack {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(-12px);
    opacity: 0;
  }
  41% {
    transform: translateX(12px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes arrowMove {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(12px);
    opacity: 0;
  }
  41% {
    transform: translateX(-12px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.btn {
  background: #1b3c53;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  padding: 16px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  outline: none;
  box-shadow: 0 0 0 0 rgba(162, 180, 152, 0.35);
  transform: translateY(0px);
  transition: all 0.3s ease-in-out;
}
.btn:hover, .btn:focus {
  border-radius: 100px;
  background: var(--Green---03, #c7eabb);
  box-shadow: 0 4px 12px 0 rgba(162, 180, 152, 0.35);
  color: #000;
  transform: translateY(-5px);
}

h1 {
  font-family: "Playfair Display";
  font-size: 4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 5rem; /* 125% */
}

h2 {
  font-family: "Playfair Display";
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 4.5rem; /* 128.571% */
}

h3 {
  font-family: "Playfair Display";
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5rem; /* 125% */
}

h4 {
  font-family: Manrope;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75rem; /* 140% */
}

h5 {
  font-family: 1.125rem;
  line-height: normal;
}

h6 {
  font-family: 1rem;
  line-height: normal;
}

form input:not([type=submit]),
form input:not([type=checkbox]),
form input:not([type=radio]),
form textarea,
select {
  display: flex;
  width: 100%;
  padding: 0.907rem 1rem;
  border-radius: 0.3125rem;
  border: 1px solid #ebebeb;
  background: var(--White, #fff);
  color: var(--Paragraph, #575757);
  font-family: Manrope;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}
form input:not([type=submit]):focus,
form input:not([type=checkbox]):focus,
form input:not([type=radio]):focus,
form textarea:focus,
select:focus {
  outline: none;
}
form input:not([type=submit])::-moz-placeholder, form input:not([type=checkbox])::-moz-placeholder, form input:not([type=radio])::-moz-placeholder, form textarea::-moz-placeholder, select::-moz-placeholder {
  opacity: 0.7;
}
form input:not([type=submit])::placeholder,
form input:not([type=checkbox])::placeholder,
form input:not([type=radio])::placeholder,
form textarea::placeholder,
select::placeholder {
  opacity: 0.7;
}

textarea {
  resize: none;
  min-height: 162px;
}

select {
  position: relative;
  -webkit-appearance: none; /* Removes default appearance in Safari */
  -moz-appearance: none; /* Removes default appearance in Firefox */
  appearance: none; /* Standard */
  outline: none; /* Removes the focus outline */
  box-shadow: none; /* Removes the box shadow */
  background-color: rgba(217, 217, 217, 0.08); /* Background color */
  background-image: url("../images/select-arrow-down.png");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
  width: 100%;
}

section.defaultPadding {
  padding: 6.25rem 0;
}
section.defaultPadding.padBot80 {
  padding-bottom: 5rem;
}
section.defaultPadding80 {
  padding: 5rem 0;
}
section.defaultPadding60 {
  padding: 3.75rem 0;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 99999;
}
header button {
  display: none;
}
header .top-header-part {
  padding: 2rem 0;
}
header .top-header-part .header-content-wraper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
header .top-header-part .header-content-wraper .social-icon-wraper {
  position: relative;
  z-index: 999999999;
}
header .top-header-part .header-content-wraper .social-icon-wraper ul {
  display: flex;
  align-items: center;
}
header .top-header-part .header-content-wraper .social-icon-wraper ul li {
  display: table;
}
header .top-header-part .header-content-wraper .social-icon-wraper ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
header .top-header-part .header-content-wraper .social-icon-wraper ul li a img {
  max-width: 3rem;
  max-height: 3rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .top-header-part .header-content-wraper .logo-wraper {
  position: relative;
  z-index: 999999999;
}
header .top-header-part .header-content-wraper .logo-wraper a {
  display: table;
}
header .top-header-part .header-content-wraper .logo-wraper a img {
  max-width: 29.4375rem;
  max-height: 9.25rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
header .top-header-part .header-content-wraper .btn-wraper {
  position: relative;
  z-index: 99999999;
}
header .bottom-header-part {
  padding: 0 1.88rem;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
}
header .bottom-header-part ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
header .bottom-header-part ul li {
  color: var(--White, #fff);
  font-family: Manrope;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem; /* 133.333% */
}
header .bottom-header-part ul li a {
  padding: 1.25rem 0;
  color: var(--White, #fff);
  position: relative;
  transition: all 0.1s ease-in-out;
}
header .bottom-header-part ul li a:hover::after {
  display: block;
}
header .bottom-header-part ul li a::after {
  content: "";
  width: 100%;
  height: 0.0625rem;
  background-color: #e3e3e3;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
}

section.home-banner {
  position: relative;
  padding: 376px 0 132px;
}
section.home-banner .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
section.home-banner .banner-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
section.home-banner .banner-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-banner .banner-content {
  max-width: 47.125rem;
}
section.home-banner .banner-content h1 {
  color: var(--White, #fff);
  font-family: "Playfair Display";
  margin-bottom: 1.5rem;
}
section.home-banner .banner-content p {
  color: var(--White, #fff);
}
section.home-banner .booking-card {
  margin-top: 5rem;
  background: #ffffff;
  border-radius: 0.9375rem;
  padding: 1.5625rem 1.875rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
section.home-banner .booking-card .booking-field {
  border-radius: 8px;
  border: 1px solid var(--Gray, #e3e3e3);
  background: var(--White, #fff);
}
section.home-banner .booking-card .booking-field label {
  display: inline-flex;
  padding: 0rem 0.5rem 0;
  align-items: center;
  gap: 0.625rem;
  color: #000;
  font-family: Manrope;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 0.875rem;
  margin-left: 8px;
  margin-top: -53px;
  margin-bottom: -10px;
  position: relative;
  top: -10px;
  background: #fff;
}
section.home-banner .booking-card .booking-field .input-wrap {
  display: flex;
  align-items: center;
  padding: 4.82px 15px 10px;
  gap: 10px;
}
section.home-banner .booking-card .booking-field .input-wrap img {
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
}
section.home-banner .booking-card .booking-field .input-wrap input {
  border: none;
  outline: none;
  width: 100%;
  color: #aaa;
  font-family: Manrope;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25rem; /* 142.857% */
  background: transparent;
}
section.home-banner .booking-card input:not([type=submit]),
section.home-banner .booking-card input:not([type=checkbox]),
section.home-banner .booking-card input:not([type=radio]),
section.home-banner .booking-card textarea {
  width: auto;
  padding: 0;
}
section.home-banner .booking-card input:not([type=submit]).btn,
section.home-banner .booking-card input:not([type=checkbox]).btn,
section.home-banner .booking-card input:not([type=radio]).btn,
section.home-banner .booking-card textarea.btn {
  background: #1b3c53;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  padding: 16px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  outline: none;
  box-shadow: 0 0 0 0 rgba(162, 180, 152, 0.35);
  transform: translateY(0px);
  transition: all 0.3s ease-in-out;
}
section.home-banner .booking-card input:not([type=submit]).btn:hover, section.home-banner .booking-card input:not([type=submit]).btn:focus,
section.home-banner .booking-card input:not([type=checkbox]).btn:hover,
section.home-banner .booking-card input:not([type=checkbox]).btn:focus,
section.home-banner .booking-card input:not([type=radio]).btn:hover,
section.home-banner .booking-card input:not([type=radio]).btn:focus,
section.home-banner .booking-card textarea.btn:hover,
section.home-banner .booking-card textarea.btn:focus {
  border-radius: 100px;
  background: var(--Green---03, #c7eabb);
  box-shadow: 0 4px 12px 0 rgba(162, 180, 152, 0.35);
  color: #000;
  transform: translateY(-5px);
}
section.home-banner .booking-card .booking-item {
  flex: 1;
}
section.home-banner .booking-card .booking-item label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}
section.home-banner .booking-card .booking-item .input-group {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 15px;
  gap: 10px;
}
section.home-banner .booking-card .booking-item .input-group img {
  width: 18px;
  opacity: 0.6;
}
section.home-banner .booking-card .booking-item .input-group input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 0.9rem;
  color: #555555;
  background: transparent;
}
section.home-banner .booking-card .availability-btn {
  background: #1b3c53;
  color: #ffffff;
  border: none;
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  white-space: nowrap;
}
section.home-banner .booking-card .availability-btn:hover {
  background: #2a5574;
}
section.home-banner.innerBanner .banner-bg::after {
  content: " ";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: #000;
}

.hmSec1 .content_mid {
  text-align: center;
  max-width: 57.875rem;
  margin: 0 auto;
}
.hmSec1 .content_mid h2 {
  margin-bottom: 1.875rem;
  color: #000;
}

.hmSec2 h2 {
  margin: 0 0 1.5rem;
}
.hmSec2 .manifesto-video {
  width: 100%;
  height: 550px;
  overflow: hidden;
  position: relative;
}
.hmSec2 .manifesto-video video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.hmSec2 .manifesto-image {
  width: 100%;
}
.hmSec2 .manifesto-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  transition: transform 0.3s ease;
}
.feature-item .feature-icon {
  width: 5.125rem;
  height: 5.125rem;
  min-width: 5.125rem;
  border: 1px solid #84b179;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: all 0.3s ease;
}
.feature-item .feature-icon img {
  width: 3.125rem;
  height: 3.125rem;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.feature-item .feature-text h4 {
  margin-bottom: 0.625rem;
  color: #000000;
}
.feature-item .feature-text p {
  margin-bottom: 0;
  line-height: 1.6;
}
.feature-item + .feature-item {
  margin-top: 2.5rem;
}

.mb-60 {
  margin-bottom: 3.75rem;
}

.mb-80 {
  margin-bottom: 5rem;
}

.rounded-1 {
  border-radius: 10px !important;
}

section.hmSec3 {
  position: relative;
  background-color: #1b3c53;
  color: #ffffff;
  padding: 100px 0;
  z-index: 1;
}
section.hmSec3 .welcome-image-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}
section.hmSec3 .welcome-image-wrapper .img-stack-left {
  flex: 1;
  aspect-ratio: 163/350;
}
section.hmSec3 .welcome-image-wrapper .img-stack-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.hmSec3 .welcome-image-wrapper .img-stack-right {
  flex: 1;
  margin-top: 98px;
  aspect-ratio: 163/350;
}
section.hmSec3 .welcome-image-wrapper .img-stack-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.hmSec3 .welcome-image-wrapper .img-stack-right .floating-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  z-index: 5;
  width: 13.9375rem;
  height: 13.9375rem;
  aspect-ratio: 1/1;
  background: #1b3c53;
  border-radius: 50%;
}
section.hmSec3 .welcome-image-wrapper .img-stack-right .floating-badge img {
  width: 100%;
  height: auto;
}
section.hmSec3 .welcome-text-content h2 {
  color: #ffffff;
  margin-bottom: 1.25rem;
}
section.hmSec3 .welcome-text-content h3 {
  color: var(--White, #fff);
  font-family: "Inria Serif";
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}
section.hmSec3 .welcome-text-content p {
  margin-bottom: 1.875rem;
}
section.hmSec3 .design_logo_left {
  position: absolute;
  left: 0;
  top: 0;
  width: 26.9375rem;
  height: 40.75rem;
  aspect-ratio: 39/59;
  opacity: 1;
  z-index: -1;
}
section.hmSec3 .design_logo_left img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.hmSec3 .button-below {
  margin-top: 1.875rem;
}

.hmSec4 {
  position: relative;
  background-color: #f9f9f9;
  z-index: 1;
}
.hmSec4 .bg-img {
  position: absolute;
  aspect-ratio: 132/83;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.hmSec4 .bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hmSec4 .head_txt {
  text-align: center;
  max-width: 75.125rem;
  margin: 0 auto 3.125rem;
}
.hmSec4 .head_txt h2 {
  margin-bottom: 1.875rem;
}
.hmSec4 .head_txt p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.book-cards {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  height: 100%;
  border: 1px solid #eee;
}
.book-cards .card_slide {
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}
.book-cards .card_slide .room-card-slider {
  height: 100%;
}
.book-cards .card_slide .room-card-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  pointer-events: none;
}
.book-cards .card_slide .room-card-slider .owl-nav button {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
  background: #fff !important;
  color: #000 !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}
.book-cards .card_slide .room-card-slider .owl-nav button i {
  font-size: 14px;
}
.book-cards .card_slide .room-card-slider .owl-nav button.owl-prev, .book-cards .card_slide .room-card-slider .owl-nav button.owl-next {
  margin: 0;
  padding: 0;
}
.book-cards .card_slide .room-card-slider .owl-nav button.owl-prev.disabled, .book-cards .card_slide .room-card-slider .owl-nav button.owl-next.disabled {
  opacity: 0;
  visibility: hidden;
}
.book-cards .card_slide .room-card-slider:hover .owl-nav {
  opacity: 1;
}
.book-cards .card_slide .room-card-slider .owl-nav {
  transition: opacity 0.3s ease;
  margin: 0;
}
.book-cards .card_slide .room-card-slider .item {
  overflow: hidden;
  aspect-ratio: 400/256;
}
.book-cards .card_slide .room-card-slider .item a {
  display: block;
}
.book-cards .card_slide .room-card-slider .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.book-cards .card_slide .room-card-slider .owl-dots {
  position: absolute;
  bottom: unset;
  width: 100%;
  text-align: center;
  margin-top: 0 !important;
  width: -moz-max-content;
  width: max-content;
  top: 18px;
  right: 18px;
}
.book-cards .card_slide .room-card-slider .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  aspect-ratio: 1/1;
  background: #fff;
  margin: 5px 3px;
}
.book-cards .card_slide .room-card-slider .owl-dots .owl-dot.active span {
  background: #84b179;
}
.book-cards .card-contents {
  padding: 1.25rem 1.25rem 1.5rem;
}
.book-cards .card-contents h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 0.5rem;
  color: #000;
}
.book-cards .card-contents h3 a {
  font-size: inherit;
  color: inherit;
}
.book-cards .card-contents p {
  color: #000;
  font-family: Manrope;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem; /* 142.857% */
}
.book-cards .card-contents .room-desc {
  margin-bottom: 25px;
  min-height: 72px;
}
.book-cards .card-contents .info_list_flex {
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.book-cards .card-contents .info_list_flex .each_info h6 {
  color: #666;
  font-family: Manrope;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem; /* 142.857% */
  margin-bottom: 0.25rem;
}
.book-cards .card-contents .info_list_flex .each_info h5 {
  color: #000;
  font-family: Manrope;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem; /* 150% */
  margin: 0;
}
.book-cards .card-contents .last_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-right: 2.75rem;
}
.book-cards .card-contents .last_content .content_left p {
  color: #000;
  font-family: Manrope;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  margin: 0;
  padding: 0;
}

.bg-green {
  background-color: #84b179;
}

.hmSec5 h2 {
  color: #ffffff;
  margin-bottom: 1.875rem;
}
.hmSec5 h3 {
  color: #fff;
  color: var(--White, #fff);
  font-family: "Playfair Display";
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin: 0 0 0.625rem;
}
.hmSec5 p {
  color: #ffffff;
  margin-top: 1.5rem;
  margin-bottom: 0;
}
.hmSec5 p:nth-of-type(1) {
  margin-top: 0;
}
.hmSec5 hr {
  border-top: 1px solid #fff;
  margin: 1.25rem 0;
}
.hmSec5 h4 {
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}
.hmSec5 .hours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.875rem;
}
.hmSec5 .hours-grid .badge-pill {
  padding: 6px 12px;
  color: var(--White, #fff);
  font-family: Manrope;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem; /* 142.857% */
  display: inline-flex;
  gap: 0.625rem;
  position: relative;
  align-items: center;
  border-radius: 50px;
  border: 1px solid var(--White, #fff);
  background: rgba(255, 255, 255, 0.1);
}
.hmSec5 .hours-grid .badge-pill::before {
  content: " ";
  width: 8px;
  height: 8px;
  aspect-ratio: 1/1;
  background-color: var(--White, #fff);
  display: inline-flex;
  position: relative;
  border-radius: 50%;
}
.hmSec5 .restaurant-image {
  width: 100%;
}
.hmSec5 .restaurant-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hmSec5 .btn-group-flex {
  display: flex;
  gap: 20px;
}
.hmSec5 .btn-circle-white {
  background: #ffffff;
  color: #1b3c53;
  padding: 6px 6px 6px 25px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.hmSec5 .btn-circle-white span {
  width: 40px;
  height: 40px;
  background: #1b3c53;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hmSec5 .btn-circle-white:hover {
  background: #1b3c53;
  color: #ffffff;
}
.hmSec5 .btn-circle-white:hover span {
  background: #84b179;
}

.hmSec6 {
  background-color: #ffffff;
}
.hmSec6 .healing-content {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 6.25rem;
}
.hmSec6 .healing-content h2 {
  color: #000000;
  margin-bottom: 1.25rem;
}
.hmSec6 .healing-content p:first-of-type {
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.hmSec6 .healing-content p:nth-of-type(2) {
  color: var(--Paragraph, #575757);
  line-height: 1.5rem;
  margin-bottom: 1.875rem;
}
.hmSec6 .healing-content .btn-dark-blue {
  background: #1b3c53;
  color: #ffffff;
  padding: 8px 8px 8px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.hmSec6 .healing-content .btn-dark-blue .arrow-circle {
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: #1b3c53;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.hmSec6 .healing-content .btn-dark-blue:hover {
  background: #2a5574;
  transform: translateY(-3px);
}
.hmSec6 .healing-content .btn-dark-blue:hover .arrow-circle {
  background: #84b179;
  color: #ffffff;
}
.hmSec6 .healing-image img {
  max-height: 650px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hmSec7 {
  background-color: #ffffff;
  overflow: hidden;
}
.hmSec7 .event-header h2 {
  color: #000000;
  font-size: 3.4375rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .hmSec7 .event-header h2 {
    margin-bottom: 0;
  }
}
.hmSec7 .event-header p {
  color: #666666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .hmSec7 .event-header p {
    padding-left: 5.2rem;
  }
}
.hmSec7 .event-slider-wrap {
  position: relative;
  padding: 0;
}
.hmSec7 .event-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  opacity: 0.5;
  transition: all 0.5s ease;
  aspect-ratio: 337.25999/300;
}
.hmSec7 .event-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hmSec7 .event-card .event-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hmSec7 .event-card .event-overlay .overlay-content {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hmSec7 .event-card .event-overlay .overlay-content h3 {
  color: var(--White, #fff);
  font-family: "Inria Serif";
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.625rem;
  text-transform: capitalize;
  margin: 0;
  max-width: 20.375rem;
}
.hmSec7 .event-card .event-overlay .overlay-content .divider {
  width: 2px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.5);
}
.hmSec7 .event-card .event-overlay .overlay-content p {
  color: #ffffff;
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.event-slider .owl-item {
  transform: scale(1);
  transition: all 0.5s ease;
}
.event-slider .owl-item.active.center {
  transform: scale(1.05);
  z-index: 1;
}
.event-slider .owl-item.active.center .item .event-card {
  opacity: 1;
}
.event-slider .owl-item.active.center .item .event-card .event-overlay {
  opacity: 1;
}
.event-slider .owl-stage-outer {
  padding: 1.25rem 0px;
}
.event-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.event-slider .owl-nav button {
  pointer-events: auto;
  width: 50px;
  height: 50px;
  background: #ffffff !important;
  border-radius: 50% !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem !important;
  color: #000 !important;
  transition: all 0.3s ease;
}
.event-slider .owl-nav button.owl-prev {
  margin-left: 22%;
}
.event-slider .owl-nav button.owl-next {
  margin-right: 22%;
}
.event-slider .owl-nav button:hover {
  background: #84b179 !important;
  color: #000 !important;
}
.event-slider .owl-dots {
  display: none !important;
}

@media (max-width: 991px) {
  .hm-sec7 .event-card .event-overlay .overlay-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hm-sec7 .event-card .event-overlay .overlay-content .divider {
    display: none;
  }
  .hm-sec7 .event-card .event-overlay .overlay-content h3 {
    font-size: 1.5rem;
  }
}
.mb-60 {
  margin: 0 0 3.75rem;
}

.hmSec8 {
  background-color: #ffffff;
}
.hmSec8 .head_txt h2 {
  font-family: "Playfair Display", serif;
  color: #000000;
  margin-bottom: 1.5rem;
}
.hmSec8 .head_txt p {
  max-width: 57.875rem;
  margin: 1rem auto 0;
  color: #000;
  text-align: center;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 1rem auto 0;
}
.hmSec8 .tour-card {
  position: relative;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.hmSec8 .tour-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.hmSec8 .tour-card .tour-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 30px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}
.hmSec8 .tour-card .tour-overlay h3 {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
}
.hmSec8 .tour-card:hover img {
  transform: scale(1.08);
}
.hmSec8 .tours-slider-wrap {
  position: relative;
}
.hmSec8 .tours-slider-wrap .owl-nav {
  display: flex;
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  transform: translateY(-50%);
  pointer-events: none;
  height: 48px;
  justify-content: space-between;
}
.hmSec8 .tours-slider-wrap .owl-nav button {
  position: absolute;
  pointer-events: auto;
  width: 48px;
  height: 48px;
  background: #84b179 !important;
  color: #000 !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease;
  margin: 0;
}
.hmSec8 .tours-slider-wrap .owl-nav button i {
  font-size: 1.1rem;
}
.hmSec8 .tours-slider-wrap .owl-nav button.owl-prev {
  left: -24px;
}
.hmSec8 .tours-slider-wrap .owl-nav button.owl-next {
  right: -24px;
}
.hmSec8 .tours-slider-wrap .owl-dots {
  display: none !important;
}
.hmSec8 .bottom_txt p {
  color: #000;
  max-width: 900px;
  margin: 0 auto;
}
.hmSec8 .tour-btn-wrap {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hmSec9 {
  background: #f9fbfd;
}
.hmSec9 .head_txt h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: #000000;
  margin-bottom: 0;
}
.hmSec9 .testimonial-slider-wrap {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
}
.hmSec9 .testimonial-slider-wrap .testimonial-card {
  text-align: center;
  padding: 0;
  max-width: 57.875rem;
  margin: auto;
}
.hmSec9 .testimonial-slider-wrap .testimonial-card p {
  color: #000;
  text-align: center;
  font-family: Manrope;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2rem; /* 160% */
  margin-bottom: 5rem;
}
.hmSec9 .testimonial-slider-wrap .testimonial-card .reviewer-info .avatar {
  width: 55px;
  height: 55px;
  background-color: #84b179;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 auto 15px;
  letter-spacing: 1px;
}
.hmSec9 .testimonial-slider-wrap .testimonial-card .reviewer-info h5 {
  color: #000;
  text-align: center;
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 155.556% */
  margin-bottom: 0.25rem;
}
.hmSec9 .testimonial-slider-wrap .testimonial-card .reviewer-info .date {
  color: #000;
  text-align: center;
  font-family: Manrope;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem; /* 142.857% */
}
.hmSec9 .testimonial-slider-wrap .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  transform: translateY(-50%);
  pointer-events: none;
  margin: 0 !important;
  display: flex;
  justify-content: space-between;
}
.hmSec9 .testimonial-slider-wrap .owl-nav button {
  position: relative;
  pointer-events: auto;
  width: 55px;
  height: 55px;
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #e5e5e5 !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  margin: 0;
}
.hmSec9 .testimonial-slider-wrap .owl-nav button i {
  font-size: 1.1rem;
}
.hmSec9 .testimonial-slider-wrap .owl-nav button.owl-prev {
  left: 0px;
}
.hmSec9 .testimonial-slider-wrap .owl-nav button.owl-next {
  right: 0px;
}
.hmSec9 .testimonial-slider-wrap .owl-nav button:hover {
  background: #1b3c53 !important;
  color: #ffffff !important;
  border-color: #1b3c53 !important;
  transform: scale(1.05);
}
.hmSec9 .testimonial-slider-wrap .owl-dots {
  display: none !important;
}
@media (max-width: 768px) {
  .hmSec9 .testimonial-slider-wrap .testimonial-card {
    padding: 0 15px;
  }
  .hmSec9 .testimonial-slider-wrap .owl-nav button {
    display: none !important;
  }
}

.mb80 {
  margin: 0 0 5rem;
}

.hmSec10 {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hmSec10 .cta-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hmSec10 .cta-bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 60, 83, 0.85) 0%, rgba(27, 60, 83, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
}
.hmSec10 .cta-bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hmSec10 .cta-content {
  color: #ffffff;
}
.hmSec10 .cta-content .cta-logo-mark {
  width: 13.0001rem;
  height: 13rem;
  aspect-ratio: 1/1;
  margin-bottom: 1.875rem;
}
.hmSec10 .cta-content .cta-logo-mark img {
  width: 100%;
  height: auto;
}
.hmSec10 .cta-content h2 {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hmSec10 .cta-content p {
  color: var(--White, #fff);
  font-family: Manrope;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 150% */
  margin-bottom: 2.375rem;
}
.hmSec10 .btn-pill-white {
  background: #ffffff;
  color: #1b3c53;
  padding: 8px 8px 8px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.hmSec10 .btn-pill-white .arrow-circle {
  width: 45px;
  height: 45px;
  background: #84b179;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.hmSec10 .btn-pill-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.hmSec10 .btn-pill-white:hover .arrow-circle {
  background: #1b3c53;
}
@media (max-width: 991px) {
  .hmSec10 {
    height: auto;
    padding: 80px 0;
  }
  .hmSec10 .cta-bg-image::after {
    background: linear-gradient(0deg, rgba(27, 60, 83, 0.8) 0%, rgba(27, 60, 83, 0.6) 100%);
  }
  .hmSec10 .cta-content {
    text-align: center;
  }
  .hmSec10 .cta-content .cta-logo-mark {
    margin: 0 auto 1.5rem auto;
  }
  .hmSec10 .cta-content h2 {
    font-size: 3rem;
  }
}

.overlapped-cards {
  background: var(--Primary-Green, #84b179);
}
.overlapped-cards h2 {
  text-align: center;
  margin-bottom: 3.12rem;
  color: white;
}
.overlapped-cards .swiper-container {
  position: relative;
}
.overlapped-cards .swiper {
  width: 100%;
  padding: 0;
}
.overlapped-cards .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  position: relative;
  border-radius: 12px;
  box-shadow: -1px 5px 15px rgba(0, 0, 0, 0.1215686275);
}
.overlapped-cards .swiper-slide .slide-content {
  width: 100%;
  height: 32.125rem;
  border-radius: 0.625rem;
  overflow: hidden;
}
.overlapped-cards .swiper-slide .slide-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.overlapped-cards .swiper-button-prev {
  background: white;
  border-radius: 50%;
  top: 47%;
  left: 140px;
  width: 3.125rem;
  height: 3.125rem;
  aspect-ratio: 1/1;
  box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.17);
}
.overlapped-cards .swiper-button-prev img {
  width: 1.25rem;
  height: 1.25rem;
  aspect-ratio: 1/1;
}
.overlapped-cards .swiper-button-prev:after {
  display: none !important;
}
.overlapped-cards .swiper-button-next {
  background: white;
  border-radius: 50%;
  top: 47%;
  right: 140px;
  width: 3.125rem;
  height: 3.125rem;
  aspect-ratio: 1/1;
  box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.17);
}
.overlapped-cards .swiper-button-next img {
  width: 1.25rem;
  height: 1.25rem;
  aspect-ratio: 1/1;
}
.overlapped-cards .swiper-button-next:after {
  display: none !important;
}
.overlapped-cards .swiper-button-prev,
.overlapped-cards .swiper-button-next {
  display: none;
}
@media (min-width: 760px) {
  .overlapped-cards .swiper-button-prev,
  .overlapped-cards .swiper-button-next {
    display: flex;
  }
}

.contact-us-sec h3 {
  color: var(--Dark, #020700);
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  text-align: center;
}
.contact-us-sec h4 {
  color: var(--Dark, #020700);
  text-align: center;
  font-family: "Playfair Display";
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
}
.contact-us-sec .formsec {
  max-width: 1150px;
  margin: 0 auto -200px;
  border-radius: 10px;
  background: var(--White, #fff);
  box-shadow: 8px 8px 50px 0 rgba(212, 219, 208, 0.4);
  padding: 3.12rem 1.88rem 2.94rem;
  position: relative;
  z-index: 1;
}
.contact-us-sec .formsec .inputarea {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.875rem;
  align-self: stretch;
}
.contact-us-sec .formsec .inputarea .input-row {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  align-self: stretch;
}
.contact-us-sec .formsec .inputarea .input-row .input-container {
  width: 100%;
}
.contact-us-sec .formsec .inputarea .input-row .input-container.submit {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.62rem;
}
.contact-us-sec .formsec .inputarea .input-row .input-container .green-btn {
  position: relative;
}
.contact-us-sec .formsec .inputarea .input-row .input-container .green-btn input[type=submit] {
  position: absolute;
  inset: 0;
  background-color: transparent;
  border: none;
  border-radius: 6.25rem;
}
.contact-us-sec .bot-img-sec {
  position: relative;
}
.contact-us-sec .bot-img-sec:after {
  content: "";
  position: absolute;
  height: 17.5rem;
  background: linear-gradient(180deg, rgba(2, 7, 0, 0) 0%, rgba(2, 7, 0, 0.7) 50%, #020700 100%);
  bottom: 0;
  display: flex;
  align-items: flex-end;
  top: auto;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(2, 7, 0, 0) 0%, rgba(2, 7, 0, 0.7) 50%, #020700 100%);
}
.contact-us-sec .bot-img-sec img {
  width: 100%;
}

footer {
  padding: 0.19rem 0 3rem;
  background: var(--Dark, #020700);
}
footer .ft-top {
  position: relative;
  margin-bottom: 5rem;
}
footer .ft-top:before, footer .ft-top:after {
  content: "";
  width: 27.125rem;
  height: 0.0625rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
footer .ft-top:before {
  left: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
footer .ft-top:after {
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  right: 0;
}
footer .ft-top .ftlogo {
  max-width: 25.375rem;
  width: 100%;
  margin: 0 auto;
}
footer .ft-menu-outer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10.5625rem;
}
footer .ft-menu-outer .mxw-17 {
  max-width: 17.9rem;
}
footer .ft-menu-outer .mxw-9 {
  max-width: 9.65rem;
}
footer .ft-menu-outer .mxw-14 {
  max-width: 14.1rem;
}
footer .ft-menu-outer .ft-menu h4 {
  color: var(--White, #fff);
  font-family: "Inria Serif";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 1.25rem;
}
footer .ft-menu-outer .ft-menu ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  align-self: stretch;
}
footer .ft-menu-outer .ft-menu ul li {
  color: var(--White, #fff);
  font-family: Manrope;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  opacity: 0.8;
}
footer .ft-menu-outer .ft-menu ul li a,
footer .ft-menu-outer .ft-menu ul li span {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  color: var(--White, #fff);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  opacity: 0.8;
}
footer .ft-menu-outer .ft-menu ul li a:hover {
  opacity: 1;
}

.copy {
  background: var(--Dark, #020700);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.875rem 0;
  text-align: center;
}
.copy p {
  color: var(--White, #fff);
  text-align: center;
  font-family: Manrope;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 0;
}

.py-100 {
  padding-block: 100px;
}

.page-header {
  text-align: center;
}
.page-header h2 {
  margin-bottom: 2.5rem;
}
.page-header p:not(:last-of-type) {
  margin-bottom: 1rem;
}

.image-content-block {
  background: url(../images/image-content-block-bg.png) no-repeat;
  background-position: bottom left;
}
.image-content-block h2 {
  margin-bottom: 1.25rem;
}
.image-content-block .image-block {
  border-radius: 0.625rem;
  overflow: hidden;
}
.image-content-block .values-grid {
  margin-top: 2.5rem;
}
.image-content-block .values-grid .value {
  padding-bottom: 1.25rem;
  margin-bottom: 1.66rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.image-content-block .values-grid .value h4 {
  color: var(--Blue---03, #456882);
  font-family: Manrope;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  margin-bottom: 0.63rem;
}
.image-content-block .values-grid .value p {
  color: #000;
  font-family: Manrope;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem;
  margin-bottom: 0;
}
.image-content-block .values-grid .value:last-of-type {
  margin-bottom: 0;
}
.image-content-block .values-grid .col-lg-6:nth-of-type(2) .value {
  margin-bottom: 1.41rem;
}

section.suSec1 {
  background: url(../images/left-sky.png) no-repeat top left, url(../images/right-sky.png) no-repeat top right;
  position: relative;
  z-index: 1;
}
section.suSec1 h2 {
  max-width: 61.125rem;
  margin-bottom: 2.5rem;
}
section.suSec1 .logo-design {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 29.125rem;
  height: 29.125rem;
  aspect-ratio: 1/1;
  z-index: -1;
}
section.suSec1 .logo-design img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

section.suSec2 .grids-img {
  display: grid;
  grid-template-columns: 500px auto;
  gap: 1.875rem;
}
section.suSec2 .grids-img .fm_sus {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
section.suSec2 .grids-img .fm_sus img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body:has(.whiteMode) header .top-header-part .header-content-wraper .social-icon-wraper ul li a img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(6%) saturate(7476%) hue-rotate(328deg) brightness(103%) contrast(106%);
}
body:has(.whiteMode) header .top-header-part .header-content-wraper .logo-wraper a img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(6%) saturate(7476%) hue-rotate(328deg) brightness(103%) contrast(106%);
}
body:has(.whiteMode) header .top-header-part .header-content-wraper .btn-wraper .green-btn {
  background: var(--Blue---01, #1b3c53);
}
body:has(.whiteMode) header .top-header-part .header-content-wraper .btn-wraper .green-btn small {
  color: #fff;
}
body:has(.whiteMode) header .top-header-part .header-content-wraper .btn-wraper .green-btn span {
  background: #fff;
}
body:has(.whiteMode) header .top-header-part .header-content-wraper .btn-wraper .green-btn span img {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  filter: brightness(0) saturate(100%) invert(18%) sepia(31%) saturate(1046%) hue-rotate(162deg) brightness(96%) contrast(90%);
}
body:has(.whiteMode) header .top-header-part .header-content-wraper .btn-wraper .green-btn:hover {
  background: var(--Green---01, #84b179);
}
body:has(.whiteMode) header .top-header-part .header-content-wraper .btn-wraper .green-btn:hover small {
  color: #fff;
}
body:has(.whiteMode) header .top-header-part .header-content-wraper .btn-wraper .green-btn:hover span {
  background: #fff;
}
body:has(.whiteMode) header .top-header-part .header-content-wraper .btn-wraper .green-btn:hover span img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(2%) saturate(3419%) hue-rotate(62deg) brightness(108%) contrast(136%);
}
body:has(.whiteMode) header .bottom-header-part {
  background: #fff;
}
body:has(.whiteMode) header .bottom-header-part ul li {
  color: #000;
}
body:has(.whiteMode) header .bottom-header-part ul li a {
  color: #000;
}
body:has(.whiteMode) section.home-banner .banner-content {
  margin: auto;
  text-align: center;
}
body:has(.whiteMode) section.home-banner .banner-content h1,
body:has(.whiteMode) section.home-banner .banner-content p {
  color: #000;
}

.founder-section {
  background-color: #ffffff;
  position: relative;
}
.founder-section::before {
  content: "";
  position: absolute;
  top: -240px;
  left: 0;
  width: 300px;
  height: 580px;
  background-image: url(../images/left-half-logo.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
  width: 300px;
}
.founder-section .container {
  position: relative;
  z-index: 1;
}
.founder-section .letter-content {
  padding-right: 2rem;
}
.founder-section .letter-content h4 {
  color: #000;
  font-family: Manrope;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2rem; /* 160% */
  margin-bottom: 1.875rem;
}
.founder-section .letter-content p {
  color: #000;
  margin-bottom: 1.2rem;
}
.founder-section .letter-content p:last-of-type {
  margin-bottom: 2rem;
}
.founder-section .letter-content .signature-block img {
  max-width: 17.9375rem;
  height: auto;
  margin-bottom: 1rem;
}
.founder-section .letter-content .signature-block .founder-title {
  color: #000;
  font-family: Manrope;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem; /* 150% */
}
.founder-section .founder-image-wrap {
  position: relative;
  padding-left: 2rem;
  margin-top: 3.75rem;
}
.founder-section .founder-image-wrap .portrait-img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  display: block;
}
.founder-section .founder-image-wrap .floating-badge-bottom {
  position: absolute;
  bottom: -60px;
  left: -30px;
  width: 130px;
  z-index: 5;
  width: 10rem;
  height: 10rem;
  background: #1b3c53;
  border-radius: 50%;
}
.founder-section .founder-image-wrap .floating-badge-bottom img {
  width: 100%;
  height: auto;
}
@media (max-width: 991px) {
  .founder-section .letter-content {
    padding-right: 0;
    margin-bottom: 4rem;
  }
  .founder-section .founder-image-wrap {
    padding-left: 0;
  }
  .founder-section .founder-image-wrap .floating-badge-bottom {
    left: -15px;
    bottom: -20px;
    width: 100px;
  }
}

@keyframes rotateBadge {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.team-section {
  position: relative;
  background: url(../images/left-sky.png) no-repeat top left, url(../images/right-sky.png) no-repeat top right;
}
.team-section .team-content {
  padding-right: 3rem;
}
.team-section .team-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: #000000;
  margin-bottom: 1.5rem;
}
.team-section .team-content p {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 1.5rem;
}
.team-section .team-content .team-inner-block {
  display: flex;
  gap: 30px;
  margin-top: 2.5rem;
  align-items: flex-start;
}
.team-section .team-content .team-inner-block .inner-image {
  flex: 0 0 240px;
}
.team-section .team-content .team-inner-block .inner-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: block;
}
.team-section .team-content .team-inner-block .inner-text p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.team-section .team-content .btn-dark-blue {
  background: #1b3c53;
  color: #ffffff;
  padding: 8px 8px 8px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.team-section .team-content .btn-dark-blue .arrow-circle {
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: #1b3c53;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.team-section .team-content .btn-dark-blue:hover {
  background: #2a5574;
  transform: translateY(-3px);
}
.team-section .team-content .btn-dark-blue:hover .arrow-circle {
  background: #84b179;
  color: #ffffff;
}
.team-section .team-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  display: block;
}
@media (max-width: 991px) {
  .team-section .team-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  .team-section .team-content .team-inner-block {
    flex-direction: column;
  }
  .team-section .team-content .team-inner-block .inner-image {
    flex: auto;
    width: 100%;
    max-width: 350px;
  }
}

.home-banner.innerbanner {
  position: relative;
}
.home-banner.innerbanner:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background: #000;
  z-index: 0;
}
.home-banner.innerbanner .container {
  position: relative;
  z-index: 1;
}
.home-banner.innerbanner .container .banner-content {
  max-width: 40.125rem;
}
.home-banner.innerbanner .container .banner-content p {
  line-height: 1.5rem; /* 150% */
}

.welcome-main {
  text-align: center;
}
.welcome-main .headingwithlogo {
  width: 9.75rem;
  margin: 0 auto;
  margin-bottom: 2.5rem;
  position: relative;
}
.welcome-main .headingwithlogo img {
  width: 100%;
  aspect-ratio: 1/1;
}
.welcome-main .headingwithlogo .lines {
  position: absolute;
  height: 0.0625rem;
  background: #d0d9e0;
  top: 50%;
  transform: translateY(-50%);
}
.welcome-main .headingwithlogo .lines.leftline {
  width: 14rem;
  left: -250px;
}
.welcome-main .headingwithlogo .lines.leftline:before {
  content: "";
  top: 1rem;
  position: absolute;
  width: 10.5625rem;
  height: 0.0625rem;
  background: #d0d9e0;
  left: 190px;
}
.welcome-main .headingwithlogo .lines.rightline {
  width: 14rem;
}
.welcome-main .headingwithlogo .lines.rightline:before {
  content: "";
  top: 1rem;
  position: absolute;
  width: 10.5625rem;
  height: 0.0625rem;
  background: #d0d9e0;
  left: 190px;
}
.welcome-main h2 {
  margin-bottom: 2.5rem;
}
.welcome-main h2 + p {
  max-width: 54.125rem;
  width: 100%;
  margin: 0 auto -200px;
  position: relative;
  z-index: 1;
}

.experience-main h2 {
  margin-bottom: 2.5rem;
}
.experience-main a.green-btn {
  margin-top: 2.5rem;
}
.experience-main .imgbx {
  border-radius: 0.625rem;
  overflow: hidden;
}
.experience-main .imgbx img {
  width: 100%;
}

.wedding-main {
  background: var(--Blue---01, #1b3c53);
}
.wedding-main h2 {
  color: white;
  margin-bottom: 2.5rem;
}
.wedding-main .imgbx {
  border-radius: 0.625rem;
  overflow: hidden;
}
.wedding-main .imgbx img {
  width: 100%;
}
.wedding-main p {
  color: white;
}
.wedding-main a.green-btn span img {
  width: auto;
  height: auto;
}

.mio-amore-restaurant {
  position: relative;
}
.mio-amore-restaurant:before {
  content: "";
  position: absolute;
  max-width: 45rem;
  width: 100%;
  height: 19.5rem;
  background: url(../images/contact-main-before.png) no-repeat 0 0;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: -1;
}
.mio-amore-restaurant:after {
  content: "";
  position: absolute;
  max-width: 28.125rem;
  width: 100%;
  height: 19.5rem;
  background: url(../images/contact-main-after.png) no-repeat 0 0;
  right: 0;
  top: 0;
  pointer-events: none;
  z-index: -1;
}
.mio-amore-restaurant .img img,
.mio-amore-restaurant .inner-img img {
  width: 100%;
}
.mio-amore-restaurant h2 {
  margin-bottom: 2.5rem;
}
.mio-amore-restaurant .text .row {
  margin-top: 3.75rem;
}
.mio-amore-restaurant .text p:last-of-type {
  margin-bottom: 0;
}
.mio-amore-restaurant .inner-text h3 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 3.5rem; /* 140% */
  margin-bottom: 1.25rem;
}
.mio-amore-restaurant .inner-text p:last-of-type {
  margin-bottom: 0;
}

.spa-serv {
  text-align: center;
}
.spa-serv .spa-logo {
  max-width: 9.5rem;
  width: 100%;
  margin: 0 auto 1.5rem;
  padding-top: 1.5rem;
}
.spa-serv > .container:has(+ img) p {
  margin-bottom: 3.75rem;
}
.spa-serv > .container + img {
  margin-bottom: 2.5rem;
  width: 100%;
}
.spa-serv > .container + img + .container p {
  max-width: 54.125rem;
  width: 100%;
  margin: 0 auto 1rem;
}
.spa-serv > .container + img + .container p:last-of-type {
  margin-bottom: 2.5rem;
}
.spa-serv h2 {
  margin-bottom: 2.5rem;
}
.spa-serv h2 + p {
  max-width: 54.125rem;
  width: 100%;
  margin: 0 auto;
}
.spa-serv .green-btn {
  border-radius: 6.25rem;
  border: 1px solid var(--Green---01, #84b179);
  background: #fff;
}
.spa-serv .green-btn:hover {
  background-color: var(--Green---01, #84b179);
  color: white;
}

.healing-center {
  background-color: var(--Green---01, #84b179);
}
.healing-center img {
  border-radius: 0.625rem;
  overflow: hidden;
  width: 100%;
}
.healing-center h2 {
  margin-bottom: 2.5rem;
  color: white;
}
.healing-center p {
  color: white;
}
.healing-center p + img {
  margin-bottom: 0;
  margin-top: 2.5rem;
}
.healing-center p:last-of-type {
  margin-bottom: 0;
}
.healing-center img {
  margin-bottom: 2.5em;
}
.healing-center .green-btn {
  margin-top: 2.5rem;
  border: 1px solid white;
}
.healing-center .green-btn img {
  margin-bottom: 0;
}
.healing-center .green-btn:hover {
  border: 1px solid white;
}

.newsletter-section {
  position: relative;
  background: url(../images/left-sky.png) no-repeat top left, url(../images/right-sky.png) no-repeat top right;
}
.newsletter-section .newsletter-content {
  max-width: 54.125rem;
  margin: 0 auto;
  text-align: center;
}
.newsletter-section .newsletter-content h2 {
  margin-bottom: 2rem;
}
.newsletter-section .newsletter-content p {
  margin-bottom: 1.5rem;
}
.newsletter-section .newsletter-content p a {
  color: #1b3c53;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}
.newsletter-section .newsletter-content p a:hover {
  color: #84b179;
}
.newsletter-section .newsletter-content .newsletter-form {
  max-width: 500px;
  margin: 3rem auto 4rem auto;
}
.newsletter-section .newsletter-content .newsletter-form .input-wrapper {
  margin-bottom: 2.5rem;
}
.newsletter-section .newsletter-content .newsletter-form .input-wrapper input[type=email] {
  width: 100%;
  padding: 1rem;
  color: var(--Paragraph, #575757);
  font-family: Manrope;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  background: transparent;
  border: none;
  border-bottom: 1px solid #cccccc;
  outline: none;
  transition: border-color 0.3s ease;
  text-align: left;
  border-radius: 0;
}
.newsletter-section .newsletter-content .newsletter-form .input-wrapper input[type=email]::-moz-placeholder {
  color: #575757;
}
.newsletter-section .newsletter-content .newsletter-form .input-wrapper input[type=email]::placeholder {
  color: #575757;
}
.newsletter-section .newsletter-content .newsletter-form .input-wrapper input[type=email]:focus {
  border-bottom-color: #1b3c53;
}
.newsletter-section .newsletter-content .newsletter-form .btn-dark-blue {
  background: #1b3c53;
  color: #ffffff;
  padding: 8px 8px 8px 30px;
  border: none;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Manrope", sans-serif;
}
.newsletter-section .newsletter-content .newsletter-form .btn-dark-blue .arrow-circle {
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: #1b3c53;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.newsletter-section .newsletter-content .newsletter-form .btn-dark-blue:hover {
  background: #2a5574;
  transform: translateY(-3px);
}
.newsletter-section .newsletter-content .newsletter-form .btn-dark-blue:hover .arrow-circle {
  background: #84b179;
  color: #ffffff;
}
.newsletter-section .logo-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-section .logo-divider .divider-lines {
  position: relative;
  flex-grow: 1;
  height: 16px;
  border-top: 1px solid #456882;
  opacity: 0.25;
}
.newsletter-section .logo-divider .divider-lines::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(0%);
  border-top: 1px solid #456882;
  width: calc(100% - 3.4375rem);
}
.newsletter-section .logo-divider .divider-lines:nth-of-type(1)::before {
  left: unset;
  right: 0;
}
.newsletter-section .logo-divider .divider-logo {
  width: 9.75rem;
  height: 9.75rem;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
.newsletter-section .logo-divider .divider-logo img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .newsletter-section .newsletter-content h2 {
    font-size: 2.5rem;
  }
  .newsletter-section .newsletter-content .newsletter-form .input-wrapper input[type=email] {
    text-align: left;
  }
  .newsletter-section .newsletter-content .logo-divider .divider-lines {
    height: 1px;
    border-bottom: none;
  }
}

.input-btn {
  position: relative;
}
.input-btn input[type=submit] {
  position: absolute;
  inset: 0;
  background-color: transparent;
  border: none;
  border-radius: 6.25rem;
  cursor: pointer;
  opacity: 0;
}

.reservation-section {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.reservation-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 75%;
  background-image: url(../images/gray-design-right-top.svg);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}
.reservation-section .container {
  position: relative;
  z-index: 1;
}
.reservation-section .reservation-form-wrap {
  padding-right: 2rem;
}
.reservation-section .reservation-form-wrap h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.reservation-section .reservation-form-wrap p {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 1rem;
  max-width: 642px;
}
.reservation-section .reservation-form-wrap .custom-form .form-control,
.reservation-section .reservation-form-wrap .custom-form .form-select {
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: none;
  transition: all 0.3s ease;
}
.reservation-section .reservation-form-wrap .custom-form .form-control::-moz-placeholder, .reservation-section .reservation-form-wrap .custom-form .form-select::-moz-placeholder {
  color: #888888;
}
.reservation-section .reservation-form-wrap .custom-form .form-control::placeholder,
.reservation-section .reservation-form-wrap .custom-form .form-select::placeholder {
  color: #888888;
}
.reservation-section .reservation-form-wrap .custom-form .form-control:focus,
.reservation-section .reservation-form-wrap .custom-form .form-select:focus {
  border-color: #1b3c53;
  outline: none;
  box-shadow: 0 0 0 3px rgba(27, 60, 83, 0.1);
}
.reservation-section .reservation-form-wrap .custom-form textarea.form-control {
  resize: vertical;
}
.reservation-section .reservation-form-wrap .custom-form .btn-dark-blue {
  background: #1b3c53;
  color: #ffffff;
  padding: 8px 8px 8px 25px;
  border: none;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Manrope", sans-serif;
}
.reservation-section .reservation-form-wrap .custom-form .btn-dark-blue .arrow-circle {
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: #1b3c53;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.reservation-section .reservation-form-wrap .custom-form .btn-dark-blue:hover {
  background: #2a5574;
  transform: translateY(-3px);
}
.reservation-section .reservation-form-wrap .custom-form .btn-dark-blue:hover .arrow-circle {
  background: #84b179;
  color: #ffffff;
}
.reservation-section .reservation-info-card {
  background-color: #eaf5c9;
  padding: 40px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: 205px;
}
.reservation-section .reservation-info-card .card-logo {
  max-width: 250px;
  height: auto;
  display: block;
}
.reservation-section .reservation-info-card p {
  color: var(--Paragraph, #575757);
  font-family: Manrope;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem; /* 155.556% */
  margin-bottom: 1.2rem;
}
.reservation-section .reservation-info-card p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .reservation-section .reservation-form-wrap {
    padding-right: 0;
  }
  .reservation-section .reservation-form-wrap h2 {
    font-size: 2.5rem;
  }
}

.retreat-section {
  background-color: #ffffff;
  position: relative;
  background-image: url("../images/faint-clouds-top.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.retreat-section .retreat-text-top {
  margin-bottom: 3.5rem;
}
.retreat-section .retreat-text-top h2 {
  margin-bottom: 2.5rem;
}
.retreat-section .retreat-text-top p {
  margin-bottom: 1.2rem;
}
.retreat-section .retreat-text-top p:last-child {
  margin-bottom: 0;
}
.retreat-section .retreat-img-left img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.retreat-section .retreat-img-right {
  padding-left: 5.125rem;
  margin-bottom: 3.5rem;
}
.retreat-section .retreat-img-right img {
  width: 100%;
  height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.retreat-section .retreat-text-bottom {
  padding-left: 5.125rem;
}
.retreat-section .retreat-text-bottom p {
  margin-bottom: 2.5rem;
}
.retreat-section .retreat-text-bottom p:last-child {
  margin-bottom: 0;
}
.retreat-section .retreat-img-left,
.retreat-section .retreat-img-right {
  border-radius: 16px;
  overflow: hidden;
}
.retreat-section .retreat-img-left img,
.retreat-section .retreat-img-right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .retreat-section .retreat-text-top,
  .retreat-section .retreat-img-left,
  .retreat-section .retreat-img-right,
  .retreat-section .retreat-text-bottom {
    padding-left: 0;
    padding-right: 0;
  }
  .retreat-section .retreat-text-top h2 {
    font-size: 2.5rem;
  }
  .retreat-section .retreat-img-left {
    margin-bottom: 3.5rem;
  }
  .retreat-section .retreat-img-left img {
    height: auto;
    aspect-ratio: 4/3;
  }
  .retreat-section .retreat-img-right img {
    height: auto;
    aspect-ratio: 3/4;
  }
}

.location-section {
  background-color: #ffffff;
}
.location-section .location-slider-wrap {
  position: relative;
  margin-bottom: 8.75rem;
}
.location-section .location-slider-wrap .rounded-image {
  width: 100%;
  /* height: 420px; */
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1.25rem;
  display: block;
  /* width: 512px; */
  /* height: 560px; */
  aspect-ratio: 32/35;
  overflow: hidden;
}
.location-section .location-slider-wrap .owl-nav {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  margin: 0 !important;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}
.location-section .location-slider-wrap .owl-nav.disabled {
  display: none;
}
.location-section .location-slider-wrap .owl-nav button {
  pointer-events: auto;
  width: 55px;
  height: 55px;
  background: #ffffff !important;
  color: #000000 !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease;
  margin: 0;
}
.location-section .location-slider-wrap .owl-nav button i {
  font-size: 1.1rem;
}
.location-section .location-slider-wrap .owl-nav button.owl-prev {
  display: block !important;
}
.location-section .location-slider-wrap .owl-nav button:hover {
  background: #1b3c53 !important;
  color: #ffffff !important;
  transform: scale(1.05);
}
.location-section .location-slider-wrap .owl-theme .owl-nav .disabled {
  opacity: 0;
}
.location-section .location-text {
  padding-left: 2rem;
}
.location-section .location-text p {
  margin-bottom: 2.5rem;
}
.location-section .location-text .btn-dark-blue {
  background: #1b3c53;
  color: #ffffff;
  padding: 8px 8px 8px 25px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.location-section .location-text .btn-dark-blue .arrow-circle {
  width: 40px;
  height: 40px;
  background: #ffffff;
  color: #1b3c53;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.location-section .location-text .btn-dark-blue:hover {
  background: #2a5574;
  transform: translateY(-3px);
}
.location-section .location-text .btn-dark-blue:hover .arrow-circle {
  background: #84b179;
  color: #ffffff;
}
@media (max-width: 991px) {
  .location-section .location-slider-wrap {
    margin-bottom: 2rem;
  }
  .location-section .location-slider-wrap .owl-nav {
    right: 20px;
  }
  .location-section .location-text {
    padding-left: 0;
  }
}

.connection-section {
  background-color: #1b3c53;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #ffffff;
  z-index: 1;
}
.connection-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background-image: url("../images/blue-design-left.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
}
.connection-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background-image: url("../images/blue-design-right.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
}
.connection-section .container {
  position: relative;
  z-index: 1;
}
.connection-section .content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.connection-section .content-wrapper h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.connection-section .content-wrapper p {
  font-family: "Manrope", sans-serif;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.connection-section .hotel-info-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
}
.connection-section .hotel-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--White, #fff);
  font-family: Manrope;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25rem; /* 142.857% */
}
.connection-section .hotel-info-list li i {
  font-size: 1.1rem;
  opacity: 0.9;
}
.connection-section .action-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.connection-section .action-buttons .btn-custom-white {
  background: #ffffff;
  color: #1b3c53;
  padding: 6px 6px 6px 25px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.connection-section .action-buttons .btn-custom-white .arrow-circle {
  width: 42px;
  height: 42px;
  background: #1b3c53;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.connection-section .action-buttons .btn-custom-white:hover {
  background: #84b179;
  color: #ffffff;
}
.connection-section .action-buttons .btn-custom-white:hover .arrow-circle {
  background: #ffffff;
  color: #84b179;
}
@media (max-width: 768px) {
  .connection-section .content-wrapper h2 {
    font-size: 2.5rem;
  }
  .connection-section .hotel-info-list {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 2.5rem;
  }
  .connection-section .action-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .connection-section .action-buttons .btn-custom-white {
    width: 100%;
    justify-content: space-between;
  }
}

.contact-main {
  position: relative;
}
.contact-main:before {
  content: "";
  position: absolute;
  max-width: 45rem;
  width: 100%;
  height: 19.5rem;
  background: url(../images/contact-main-before.png) no-repeat 0 0;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: -1;
}
.contact-main:after {
  content: "";
  position: absolute;
  max-width: 28.125rem;
  width: 100%;
  height: 19.5rem;
  background: url(../images/contact-main-after.png) no-repeat 0 0;
  right: 0;
  top: 0;
  pointer-events: none;
  z-index: -1;
}
.contact-main .contact-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 3.75rem;
  position: relative;
}
.contact-main .contact-top-row .contact-left {
  max-width: 49.125rem;
  width: 100%;
}
.contact-main .contact-top-row .contact-left h2 {
  margin-bottom: 2.5rem;
}
.contact-main .contact-top-row .contact-left p {
  max-width: 47.125rem;
  width: 100%;
}
.contact-main .contact-top-row .contact-left p:last-of-type {
  margin-bottom: 0;
}
.contact-main .contact-top-row .contact-right {
  max-width: 26.8125rem;
  width: 100%;
  margin-top: -30px;
  position: absolute;
  right: 0;
  top: 0;
}
.contact-main .contact-next-left h3 {
  margin-bottom: 4.38rem;
}
.contact-main .contact-next-left h3 + span {
  display: inline-block;
  margin-bottom: 1.88rem;
  color: #000;
  font-family: Manrope;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem;
  margin-top: 0.7rem;
}
.contact-main .contact-next-left:has(h3 + span) h3 {
  margin-bottom: 1rem;
}
.contact-main .contact-next-right h3 {
  margin-bottom: 4.38rem;
}
.contact-main .contact-next-right h3 + span {
  display: inline-block;
  margin-bottom: 1.88rem;
  color: #000;
  font-family: Manrope;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem;
  margin-top: 0.7rem;
}
.contact-main .contact-next-right:has(h3 + span) h3 {
  margin-bottom: 1rem;
}
.contact-main .listing-area {
  margin-bottom: 0;
}
.contact-main .listing-area ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.87rem;
}
.contact-main .listing-area ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-main .listing-area ul li .icon {
  display: flex;
  width: 4rem;
  height: 4rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 0.5rem;
  border: 1px solid rgba(162, 203, 139, 0.5);
  background: var(--Green---04, #e8f5bd);
}
.contact-main .listing-area ul li .icon img {
  width: 2.25rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
.contact-main .listing-area ul li .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  flex: 1 0 0;
}
.contact-main .listing-area ul li .text h5 {
  font-family: Manrope;
  margin-bottom: 0;
  color: var(--Black, #000);
  font-weight: 600;
  line-height: 1.5rem; /* 133.333% */
}
.contact-main .listing-area ul li .text p {
  margin-bottom: 0;
}
.contact-main .listing-area:has(+ div) {
  margin-bottom: 2.5rem;
}
.contact-main .additionalarea {
  border-radius: 1rem;
  border: 1px solid rgba(69, 104, 130, 0.2);
  background: #f7fcff;
  padding: 1.5rem;
  padding-bottom: 2.37rem;
}
.contact-main .additionalarea .icon {
  display: flex;
  width: 4rem;
  height: 4rem;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(27, 60, 83, 0.1);
  background: #d0e4f3;
}
.contact-main .additionalarea .icon img {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
.contact-main .additionalarea h4 {
  color: #000;
  font-family: Manrope;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2rem; /* 133.333% */
  margin-bottom: 0.75rem;
}
.contact-main .additionalarea h4 + p {
  margin-bottom: 1.5rem;
}
.contact-main .additionalarea ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 510px;
}
.contact-main .additionalarea ul li {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.contact-main .additionalarea ul li img {
  width: 2rem;
  height: 2rem;
  aspect-ratio: 1/1;
}
.contact-main .additionalarea ul li span {
  color: #000;
  font-family: Manrope;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
}
.contact-main .additionalarea ul li span strong {
  font-weight: 700;
}

.com-section {
  text-align: center;
  background: url(../images/left-sky.png) no-repeat 0px -150px, url(../images/right-sky.png) no-repeat 100% -180px;
}
.com-section h2 {
  margin-bottom: 2.5rem;
}
.com-section p {
  max-width: 43.875rem;
  margin-inline: auto;
  margin-bottom: 1rem;
}
.com-section figure {
  margin-block: 2.5rem;
  border-radius: 1rem;
  overflow: hidden;
}

.info-img-wrap {
  background: var(--Green---04, #e8f5bd);
}
.info-img-wrap .content h2 {
  margin-bottom: 2.5rem;
}
.info-img-wrap .content p {
  max-width: 40.125rem;
  margin-bottom: 1rem;
}
.info-img-wrap .content .hours-count {
  margin-top: 2.5rem;
}
.info-img-wrap .content h3 {
  margin-bottom: 1.25rem;
}
.info-img-wrap .content .hours-schedule-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  max-width: 26.25rem;
  margin-bottom: 2.5rem;
}
.info-img-wrap .content .hours-schedule-list .list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-radius: 3.125rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  width: -moz-max-content;
  width: max-content;
}
.info-img-wrap .content .hours-schedule-list .list-item span {
  color: var(--Black, #000);
  font-family: Manrope;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem;
}
.info-img-wrap .content .button-wrapper {
  display: flex;
  gap: 1.5rem;
}
.info-img-wrap figure {
  border-radius: 1rem;
  overflow: hidden;
}

.sanctuary-section {
  background-color: #ffffff;
  background-image: url("../images/faint-clouds-top.jpg");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
}
.sanctuary-section .sanctuary-image-wrap {
  position: relative;
  padding-right: 2rem;
  margin-top: 2rem;
}
.sanctuary-section .sanctuary-image-wrap .main-img {
  width: 33.125rem;
  flex-shrink: 0;
  border-radius: 15px;
  display: block;
  overflow: hidden;
  aspect-ratio: 53/46;
}
.sanctuary-section .sanctuary-image-wrap .overlapping-badge {
  position: relative;
  top: 0;
  right: 0;
  width: 10rem;
  height: 10rem;
  aspect-ratio: 1/1;
  background: #1b3c53;
  z-index: 5;
  border-radius: 50%;
  overflow: hidden;
  margin-left: auto;
  margin-bottom: -72px;
}
.sanctuary-section .sanctuary-image-wrap .overlapping-badge img {
  width: 100%;
  height: auto;
  display: block;
}
.sanctuary-section .sanctuary-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.sanctuary-section .sanctuary-content p {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 1.5rem;
}
.sanctuary-section .sanctuary-content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .sanctuary-section .sanctuary-image-wrap {
    padding-right: 0;
    margin-bottom: 4rem;
  }
  .sanctuary-section .sanctuary-image-wrap .overlapping-badge {
    right: -10px;
    width: 100px;
    top: -20px;
  }
  .sanctuary-section .sanctuary-content {
    padding-left: 0;
  }
  .sanctuary-section .sanctuary-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
}

.hart-sec {
  background-color: #ffffff;
}
.hart-sec .hart-sec-slider-wrap {
  position: relative;
  margin-bottom: 0;
}
.hart-sec .hart-sec-slider-wrap .rounded-image {
  width: 100%;
  /* height: 420px; */
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1.25rem;
  display: block;
  /* width: 512px; */
  /* height: 560px; */
  aspect-ratio: 53/36;
  overflow: hidden;
}
.hart-sec .hart-sec-slider-wrap .owl-nav {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  margin: 0 !important;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}
.hart-sec .hart-sec-slider-wrap .owl-nav.disabled {
  display: none;
}
.hart-sec .hart-sec-slider-wrap .owl-nav button {
  pointer-events: auto;
  width: 55px;
  height: 55px;
  background: #ffffff !important;
  color: #000000 !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease;
  margin: 0;
}
.hart-sec .hart-sec-slider-wrap .owl-nav button i {
  font-size: 1.1rem;
}
.hart-sec .hart-sec-slider-wrap .owl-nav button.owl-prev {
  display: block !important;
}
.hart-sec .hart-sec-slider-wrap .owl-nav button:hover {
  background: #1b3c53 !important;
  color: #ffffff !important;
  transform: scale(1.05);
}
.hart-sec .hart-sec-slider-wrap .owl-theme .owl-nav .disabled {
  opacity: 0;
}/*# sourceMappingURL=style.css.map */