@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: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 99999;
  transition: all 0.3s ease-in-out;
}
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;
  transition: all 0.3s ease-in-out;
}
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;
  transition: all 0.3s ease-in-out;
}
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;
  transition: all 0.3s ease-in-out;
}
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);
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1299px) {
  header .bottom-header-part ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  header .bottom-header-part ul li {
    position: relative;
    color: var(--White, #fff);
    font-family: Manrope;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5rem;
    /* 133.333% */
    transition: all 0.3s ease-in-out;
  }
  header .bottom-header-part ul li::before {
    content: "";
    width: 100%;
    height: 0.0625rem;
    background-color: #e3e3e3;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
  }
  header .bottom-header-part ul li:hover::before {
    display: block;
  }
  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:has(.sub-menu) {
    padding-right: 1.625rem;
  }
  header .bottom-header-part ul li:has(.sub-menu)::after {
    content: "";
    width: 0.625rem;
    height: 0.375rem;
    background-image: url(../images/arow-down.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.3s ease-in-out;
  }
  header .bottom-header-part ul li ul {
    position: absolute;
    top: auto;
    left: 0;
    width: 12.5rem;
    border-radius: 0;
    opacity: 0;
    z-index: -99;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: stretch;
    gap: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    transform: translateY(-30px);
    transition: all 0.3s ease-in-out;
  }
  header .bottom-header-part ul li ul li {
    color: var(--White, #fff);
    font-family: Manrope;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    /* 150% */
    transition: all 0.3s ease-in-out;
  }
  header .bottom-header-part ul li ul li::before {
    display: none !important;
  }
  header .bottom-header-part ul li ul li a {
    display: block;
    padding: 0.625rem;
    color: #fff;
    padding: 1rem 0.75rem;
    transition: all 0.3s ease-in-out;
  }
  header .bottom-header-part ul li ul li:hover {
    background: var(--White, #fff);
    color: var(--Blue---01, #1b3c53);
  }
  header .bottom-header-part ul li ul li:hover a {
    color: var(--Blue---01, #1b3c53);
  }
  header .bottom-header-part ul li:hover ul {
    opacity: 1;
    z-index: 9;
    visibility: visible;
    transform: translateY(0px);
  }
  header .bottom-header-part ul li:hover::after {
    transform: scaley(-1);
  }
}
header.scrolled {
  background: #fff;
}
header.scrolled .top-header-part {
  background: #fff;
}
header.scrolled .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%);
}
header.scrolled .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%);
}
header.scrolled .top-header-part .header-content-wraper .btn-wraper .green-btn {
  background: var(--Blue---01, #1b3c53);
}
header.scrolled .top-header-part .header-content-wraper .btn-wraper .green-btn small {
  color: #fff;
}
header.scrolled .top-header-part .header-content-wraper .btn-wraper .green-btn span {
  background: #fff;
}
header.scrolled .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%);
}
header.scrolled .top-header-part .header-content-wraper .btn-wraper .green-btn:hover {
  background: var(--Green---01, #84b179);
}
header.scrolled .top-header-part .header-content-wraper .btn-wraper .green-btn:hover small {
  color: #fff;
}
header.scrolled .top-header-part .header-content-wraper .btn-wraper .green-btn:hover span {
  background: #fff;
}
header.scrolled .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%);
}
header.scrolled .bottom-header-part {
  background: #fff;
}
header.scrolled .bottom-header-part ul li {
  color: #000;
}
header.scrolled .bottom-header-part ul li a {
  color: #000;
}
header.scrolled .bottom-header-part ul li:has(.sub-menu)::after {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(19%) hue-rotate(349deg) brightness(98%) contrast(104%);
}
header.scrolled .bottom-header-part ul li ul {
  background: #fff;
}
header.scrolled .bottom-header-part ul li ul li {
  color: var(--Black, #000);
}
header.scrolled .bottom-header-part ul li ul li a {
  color: var(--Black, #000);
}
header.scrolled .bottom-header-part ul li ul li:hover {
  background: var(--Blue---01, #1b3c53);
  color: #fff;
}
header.scrolled .bottom-header-part ul li ul li:hover a {
  color: #fff;
}
header.scrolled .bottom-header-part .slim-container a.slimNav_sk78-reveal span {
  background: #1b3c53;
}
header.scrolled .bottom-header-part .slim-container a.slimNav_sk78-reveal {
  color: #1b3c53;
}

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 {
  background: #000;
  width: 100%;
  height: 550px;
  overflow: hidden;
  position: relative;
}
.hmSec2 .manifesto-video video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  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: left;
  }
  .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: flex-start;
  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;
  opacity: 0;
}
.contact-us-sec .formsec .inputarea .input-row .input-container .green-btn .wpcf7-spinner {
  display: none;
}
.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: calc(50% - 14.0625rem);
  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 {
  background: #fff;
}
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) header .bottom-header-part ul li:has(.sub-menu)::after {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(19%) hue-rotate(349deg) brightness(98%) contrast(104%);
}
body:has(.whiteMode) header .bottom-header-part ul li ul {
  background: #fff;
}
body:has(.whiteMode) header .bottom-header-part ul li ul li {
  color: var(--Black, #000);
}
body:has(.whiteMode) header .bottom-header-part ul li ul li a {
  color: var(--Black, #000);
}
body:has(.whiteMode) header .bottom-header-part ul li ul li:hover {
  background: var(--Blue---01, #1b3c53);
  color: #fff;
}
body:has(.whiteMode) header .bottom-header-part ul li ul li:hover a {
  color: #fff;
}
body:has(.whiteMode) header .bottom-header-part .slim-container a.slimNav_sk78-reveal {
  color: #1b3c53;
}
body:has(.whiteMode) header .bottom-header-part .slim-container a.slimNav_sk78-reveal span {
  background: #1b3c53;
}
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;
    height: 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 {
  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: 767px) {
  .team-section .team-content {
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }
  .team-section .team-content .team-inner-block {
    flex-direction: column;
    margin-top: 0;
    gap: 20px;
  }
  .team-section .team-content .team-inner-block .inner-image {
    width: 100%;
    max-width: 350px;
    margin-top: 0.05rem;
    margin-inline: auto;
  }
}

.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: unset;
  right: 0;
}
.welcome-main .headingwithlogo .lines.rightline {
  width: 14rem;
  right: -250px;
}
.welcome-main .headingwithlogo .lines.rightline:before {
  content: "";
  top: 1rem;
  position: absolute;
  width: 10.5625rem;
  height: 0.0625rem;
  background: #d0d9e0;
  left: 0;
  right: unset;
}
.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 .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-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: start;
  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;
}

.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;
  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;
    text-align: center;
  }
  .sanctuary-section .sanctuary-content h2 {
    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;
}

.yoga-retreat-section {
  background: var(--Green---04, #e8f5bd);
  position: relative;
  overflow: hidden;
}
.yoga-retreat-section .yoga-content {
  padding-right: 3rem;
}
.yoga-retreat-section .yoga-content h2 {
  margin-bottom: 1.5rem;
}
.yoga-retreat-section .yoga-content p {
  color: #000;
  font-family: Manrope;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  margin-bottom: 1.5rem;
}
.yoga-retreat-section .yoga-content p:nth-of-type(2) {
  margin-bottom: 2rem;
}
.yoga-retreat-section .yoga-content .retreat-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.yoga-retreat-section .yoga-content .retreat-features li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding-bottom: 0.75rem;
  margin-bottom: 2.625rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.yoga-retreat-section .yoga-content .retreat-features li:last-child {
  margin-bottom: 0;
}
.yoga-retreat-section .yoga-content .retreat-features li .feature-icon {
  width: 30px;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #000000;
  text-align: center;
  margin-top: -3px;
}
.yoga-retreat-section .yoga-content .retreat-features li .feature-icon img {
  width: 100%;
  height: auto;
}
.yoga-retreat-section .yoga-content .retreat-features li .feature-text {
  display: flex;
  flex-direction: column;
}
.yoga-retreat-section .yoga-content .retreat-features li .feature-text strong {
  color: var(--Black, #000);
  font-family: Manrope;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  /* 133.333% */
  margin-bottom: 4px;
}
.yoga-retreat-section .yoga-content .retreat-features li .feature-text span {
  color: var(--Black, #000);
  font-family: Manrope;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 171.429% */
}
.yoga-retreat-section .yoga-slider-wrapper {
  position: relative;
  padding-left: 0;
  z-index: 1;
  max-width: 33.125rem;
  margin: auto;
}
.yoga-retreat-section .yoga-slider-wrapper .mandala-watermark {
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 15px);
  transform: translate(-50%, -50%);
  width: 165%;
  height: 165%;
  background-image: url("../images/yoya-design-logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
  pointer-events: none;
}
.yoga-retreat-section .yoga-slider-wrapper .yoga-slider {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.yoga-retreat-section .yoga-slider-wrapper .yoga-slider.owl-theme .owl-nav .disabled {
  opacity: 0;
  pointer-events: none;
}
.yoga-retreat-section .yoga-slider-wrapper .yoga-slider .item img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.yoga-retreat-section .yoga-slider-wrapper .yoga-slider .owl-nav {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin: 0 !important;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 25px;
}
.yoga-retreat-section .yoga-slider-wrapper .yoga-slider .owl-nav button {
  width: 50px;
  height: 50px;
  background: #ffffff !important;
  color: #000000 !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease;
  margin: 0;
}
.yoga-retreat-section .yoga-slider-wrapper .yoga-slider .owl-nav button i {
  font-size: 1rem;
}
.yoga-retreat-section .yoga-slider-wrapper .yoga-slider .owl-nav button:hover {
  background: #1b3c53 !important;
  color: #ffffff !important;
  transform: scale(1.05);
}
.yoga-retreat-section .yoga-slider-wrapper .yoga-slider .owl-dots {
  display: none !important;
}
@media (max-width: 991px) {
  .yoga-retreat-section .yoga-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  .yoga-retreat-section .yoga-slider-wrapper {
    padding-left: 0;
  }
  .yoga-retreat-section .yoga-slider-wrapper .owl-nav {
    right: 20px;
  }
}

section.retreat-section.yogaInnerPg {
  position: relative;
  background: url(../images/left-sky.png) no-repeat top left, url(../images/right-sky.png) no-repeat top right;
}
section.retreat-section.yogaInnerPg .heading-txt-center {
  text-align: center;
  margin: 0 0 2.5rem;
}
section.retreat-section.yogaInnerPg .heading-txt-center h2 {
  margin: 0;
  padding: 0;
}
section.retreat-section.yogaInnerPg .retreat-img-left,
section.retreat-section.yogaInnerPg .retreat-img-right {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 30.5/30;
}

section.com-section.spaInnerPg-1 .logo-divider {
  margin-bottom: 2.5rem;
}
section.com-section.spaInnerPg-1 P {
  width: 100%;
  max-width: 866px;
}
section.com-section.spaInnerPg-1 figure {
  width: 100%;
}
section.com-section.spaInnerPg-1 figure img {
  width: 100%;
  height: auto;
  display: block;
}

.spa-catalog-section {
  background-color: #1f3747;
  color: #ffffff;
}
.spa-catalog-section .section-header {
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.spa-catalog-section .section-header h2 {
  margin-bottom: 2.5rem;
}
.spa-catalog-section .section-header p {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  opacity: 0.85;
  line-height: 1.6;
  max-width: 40.125rem;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .spa-catalog-section .spa-card .card-content .duration-section .duration-action-flex {
    flex-direction: column;
    align-items: center;
  }
  .spa-catalog-section .spa-card .card-content .duration-section .duration-action-flex.justify-content-end {
    align-items: flex-end;
  }
}

.spa-card {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.spa-card .card-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  aspect-ratio: 100/57;
  border-radius: 0;
}
.spa-card .card-content {
  padding: 1.5rem 1.875rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.spa-card .card-content h3 {
  color: var(--White, #fff);
  font-family: Manrope;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2rem;
  /* 133.333% */
  margin-bottom: 1.5rem;
}
.spa-card .card-content .treatment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2rem;
}
.spa-card .card-content .treatment-tags .tag {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  border-radius: 100px;
  border: 1px solid var(--Blue---03, #456882);
  color: var(--White, #fff);
  font-family: Manrope;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  transition: background-color 0.3s ease;
}
.spa-card .card-content .treatment-tags .tag:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.spa-card .card-content .treatment-tags.full-width-tags {
  flex-direction: column;
}
.spa-card .card-content .treatment-tags.full-width-tags .tag {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 5px;
}
.spa-card .card-content .duration-section {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  min-height: 8.4375rem;
}
.spa-card .card-content .duration-section.no-border {
  border-top: none;
  padding-top: 0;
}
.spa-card .card-content .duration-section h4 {
  color: var(--White, #fff);
  font-family: Manrope;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2rem;
  /* 133.333% */
  margin: 0 0 1.5rem;
}
.spa-card .card-content .duration-section .duration-action-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.spa-card .card-content .duration-section .duration-action-flex .duration-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.spa-card .card-content .duration-section .duration-action-flex .duration-tags .tag {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  border-radius: 6.25rem;
  border: 1px solid var(--Blue---03, #456882);
  font-size: 0.85rem;
  color: #ffffff;
  color: var(--White, #fff);
  font-family: Manrope;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
}
.spa-card .card-content .duration-section .duration-action-flex .duration-tags .tag strong {
  font-weight: 700;
}
.spa-card .card-content .duration-section .duration-action-flex .duration-tags .tag:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.spa-card .card-content .duration-section.no-details {
  align-content: flex-end;
}

.cloudsbg {
  position: relative;
}
.cloudsbg: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;
}
.cloudsbg: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;
}

.beach-kit {
  position: relative;
}
.beach-kit h2 {
  margin-bottom: 2.5rem;
}
.beach-kit p:has(+ ul, + div, + .green-btn, + .white-btn, + .blue-btn) {
  margin-bottom: 2.5rem;
}
.beach-kit .img {
  border-radius: 1rem;
  overflow: hidden;
}
.beach-kit .img img {
  width: 100%;
}
.beach-kit ul {
  display: flex;
  flex-direction: column;
  gap: 1.88rem;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 33.125rem;
  width: 100%;
}
.beach-kit ul li {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.25rem;
  padding-bottom: 0.75rem;
}
.beach-kit ul li:last-child {
  padding-bottom: 0;
  border: none;
}
.beach-kit ul li .icon {
  max-width: 2.25rem;
  width: 100%;
}
.beach-kit ul li .icon img {
  width: 100%;
  aspect-ratio: 1/1;
}
.beach-kit ul li h5 {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--Black, #000);
}
.beach-kit ul li p {
  color: var(--Black, #000);
  font-family: Manrope;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 171.429% */
  margin-bottom: 0;
}
.beach-kit ul li .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
}
.beach-kit .row {
  margin-top: 6.25rem;
}
.beach-kit .row:first-child {
  margin-top: 0;
}
.beach-kit .row:nth-child(2n-1) .img {
  margin-left: 4.6rem;
}
.beach-kit .row:nth-child(2n) .img {
  margin-right: 2.63rem;
}

.rental {
  background: var(--Blue---01, #1b3c53);
  text-align: center;
  position: relative;
}
.rental .rental-before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  max-width: 273px;
  width: 100%;
  pointer-events: none;
  z-index: 0;
}
.rental .rental-after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  max-width: 273px;
  width: 100%;
  pointer-events: none;
  z-index: 0;
}
.rental h2 {
  color: white;
  margin-bottom: 2.5rem;
}
.rental h2 + p {
  color: white;
  margin-bottom: 2.5rem;
}
.rental .rentbx {
  display: flex;
  padding: 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
  position: relative;
  z-index: 1;
  border-radius: 1rem;
  border: 1px solid var(--Blue---02, #234c6a);
  background: var(--Blue---03, #456882);
  height: 100%;
}
.rental .rentbx .icon {
  width: 3.75rem;
}
.rental .rentbx .icon img {
  width: 100%;
  aspect-ratio: 1/1;
}
.rental .rentbx .text {
  width: 100%;
}
.rental .rentbx .text h4 {
  text-align: left;
  color: var(--White, #fff);
  font-family: Manrope;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2rem;
  /* 133.333% */
  margin-bottom: 1rem;
}
.rental .rentbx .text h4 + p {
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  color: var(--White, #fff);
  font-family: Manrope;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
}
.rental .rentbx .text h4 + p strong {
  font-weight: 700;
}

section.welcome-main.ta-sec1 {
  text-align: left;
  background: url(../images/left-sky.png) no-repeat top left;
}
section.welcome-main.ta-sec1 .round-img {
  height: 100%;
  aspect-ratio: 154/95;
  overflow: hidden;
  width: 100%;
  border-radius: 15px;
}
section.welcome-main.ta-sec1 .round-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
section.welcome-main.ta-sec1 .heading-txt {
  max-width: 642px;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: left;
}
section.welcome-main.ta-sec1 .heading-txt h2 {
  position: relative;
}
section.welcome-main.ta-sec1 .heading-txt h2 + p {
  margin: 0 0 2.5rem;
}
section.welcome-main.ta-sec1 .green-btn.blue-btn {
  margin-top: 2.5rem;
}
section.welcome-main.ta-sec1 .full-img {
  width: 100%;
  position: relative;
  z-index: -1;
  margin-top: -18.5rem;
}
section.welcome-main.ta-sec1 .full-img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.adventures-section {
  background-color: #ffffff;
  position: relative;
}
.adventures-section .row {
  gap: 58px 0;
}
.adventures-section .section-header {
  position: relative;
  max-width: 800px;
  margin: 0 auto 3.75rem;
}
.adventures-section .section-header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 250px;
  height: 250px;
  background-image: url("../images/circle-logo-badge.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}
.adventures-section .section-header h2 {
  position: relative;
  z-index: 1;
  font-family: "Playfair Display", serif;
  color: #000000;
  margin-bottom: 1.5rem;
}
.adventures-section .section-header p {
  position: relative;
  z-index: 1;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .adventures-section .section-header br {
    display: none;
  }
  .adventures-section .adventure-card .card-img {
    height: 280px;
  }
  .adventures-section .adventure-card .card-content .tour-meta {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-top: 0;
  }
}

.adventure-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.adventure-card .card-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1.875rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  aspect-ratio: 318/200;
}
.adventure-card .card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.adventure-card .card-content h3 {
  color: #000;
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  /* 150% */
  margin-bottom: 1.2rem;
}
.adventure-card .card-content p {
  margin-bottom: 1.5rem;
}
.adventure-card .card-content .tour-meta {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
  margin-top: auto;
  padding-top: 1rem;
  margin-bottom: 1.875rem;
}
.adventure-card .card-content .tour-meta .meta-item h4 {
  color: #000;
  font-family: Manrope;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2rem;
  /* 133.333% */
  margin-bottom: 0.8rem;
}
.adventure-card .card-content .tour-meta .meta-item p {
  margin-bottom: 0;
}
.adventure-card .card-content .btn-dark-blue {
  align-self: flex-start;
  background: #1b3c53;
  color: #ffffff;
  padding: 6px 6px 6px 25px;
  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;
}
.adventure-card .card-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;
}
.adventure-card .card-content .btn-dark-blue:hover {
  background: #2a5574;
  transform: translateY(-3px);
}
.adventure-card .card-content .btn-dark-blue:hover .arrow-circle {
  background: #84b179;
  color: #ffffff;
}

section.location-section.we-sec2 .location-slider-wrap {
  margin: 0;
  padding: 0;
}

section.retreat-section.we-sec3 .heading-txt-center {
  text-align: center;
}
section.retreat-section.we-sec3 .retreat-img-right,
section.retreat-section.we-sec3 .retreat-text-bottom {
  padding-left: 0;
}

section.com-section.we-sec4 {
  background: url(../images/ligh-logo.png) no-repeat center, var(--Green---04, #e8f5bd);
}
section.com-section.we-sec4 p {
  max-width: 54.125rem;
}

section.private-shuttle.we-sec5 .textAdjustAlign {
  text-align: left;
}
section.private-shuttle.we-sec5 .textAdjustAlign h2 {
  text-align: left;
}
section.private-shuttle.we-sec5 .textAdjustAlign h2 + p {
  margin: 0 0 3.75rem;
}
section.private-shuttle.we-sec5 .textAdjustAlign h3 {
  color: #000;
  font-family: Manrope;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3rem;
  /* 150% */
  margin: 0 0 0.5rem;
}
section.private-shuttle.we-sec5 .design-logo-bx {
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  margin-top: -5.625rem;
  margin-right: -5.625rem;
  margin-left: auto;
  margin-bottom: auto;
}

section.we-sec6 .personalized-details {
  max-width: 35rem;
  width: 100%;
  margin-left: auto;
}
section.we-sec6 .green-btn {
  margin-top: 2.5rem;
}

.beach-kit.shuttle-serv .img {
  margin-left: 0 !important;
}
.beach-kit.laundry-serv .img {
  margin-left: 0 !important;
}
.beach-kit.laundry-serv .text {
  padding-right: 100px;
}

.private-shuttle {
  position: relative;
}
.private-shuttle .hidden-icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 199px;
  width: 100%;
}
.private-shuttle h2 {
  margin-bottom: 2.5rem;
  text-align: center;
}
.private-shuttle .row {
  gap: 1.88rem 0;
}
.private-shuttle .ps-bx {
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(27, 60, 83, 0.15);
  background: var(--White, #fff);
  height: 100%;
}
.private-shuttle .ps-bx .icon {
  width: 3.5rem;
  margin-bottom: 1.5rem;
}
.private-shuttle .ps-bx .icon img {
  aspect-ratio: 1/1;
}
.private-shuttle .ps-bx .text h4 {
  color: #000;
  font-family: Manrope;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2rem;
  /* 133.333% */
  margin-bottom: 1rem;
}
.private-shuttle .ps-bx .text p {
  color: #000;
  font-family: Manrope;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 150% */
  margin-bottom: 0;
}

.our-features h2 {
  margin-bottom: 2.5rem;
}
.our-features .img {
  border-radius: 1rem;
  overflow: hidden;
}
.our-features .img img {
  width: 100%;
}
.our-features ul {
  display: flex;
  flex-direction: column;
  gap: 1.88rem;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 33.125rem;
  width: 100%;
}
.our-features ul li {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.25rem;
  padding-bottom: 0.75rem;
}
.our-features ul li:last-child {
  padding-bottom: 0;
  border: none;
}
.our-features ul li .icon {
  max-width: 2.25rem;
  width: 100%;
}
.our-features ul li .icon img {
  width: 100%;
  aspect-ratio: 1/1;
}
.our-features ul li h5 {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--Black, #000);
}
.our-features ul li p {
  color: var(--Black, #000);
  font-family: Manrope;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 171.429% */
  margin-bottom: 0;
}
.our-features ul li .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
}
.our-features .text {
  padding-left: 5.125rem;
}
.our-features .text ul li .text {
  padding-left: 0;
}

.rates {
  text-align: center;
}
.rates h2 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 3.5rem;
  /* 140% */
  margin-bottom: 2.5rem;
}
.rates .rates-inner {
  margin: 0 auto;
  max-width: 54.125rem;
  width: 100%;
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid var(--Green---02, #a2cb8b);
  background: var(--Green---04, #e8f5bd);
}
.rates h2 {
  margin-bottom: 1.5rem;
}
.rates p:has(+ .green-btn, + .white-btn, + .blue-btn) {
  margin-bottom: 2.5rem;
}

.gift-shop h2 {
  max-width: 54.125rem;
  margin: 0 auto;
  margin-bottom: 3.5rem;
  text-align: center;
}
.gift-shop .giftbx {
  padding: 0.5rem;
  border-radius: 1.5rem;
  border: 1px solid #e3e3e3;
  background: #f9f9f9;
}
.gift-shop .giftbx .img {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.gift-shop .giftbx .img img {
  width: 100%;
}
.gift-shop .giftbx .text h4 {
  color: #000;
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
  margin-bottom: 0.75rem;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.gift-shop .giftbx .text h4 > span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gift-shop .giftbx .text h4 .tooltip-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
  line-height: 1;
}
.gift-shop .giftbx .text h4 .tooltip-wrapper .icon {
  width: 18px;
  height: 18px;
  display: block;
}
.gift-shop .giftbx .text h4 .tooltip-wrapper .items-popup {
  position: absolute;
  bottom: -190px;
  left: -10px;
  transform: unset;
  width: 200px;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.gift-shop .giftbx .text h4 .tooltip-wrapper .items-popup::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 15px;
  transform: rotate(135deg);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #ffffff #ffffff;
}
.gift-shop .giftbx .text h4 .tooltip-wrapper .items-popup h5 {
  color: #000;
  font-family: Manrope;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  /* 150% */
  margin-bottom: 0.5rem;
}
.gift-shop .giftbx .text h4 .tooltip-wrapper .items-popup ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.gift-shop .giftbx .text h4 .tooltip-wrapper .items-popup ul li {
  color: #000;
  font-family: Manrope;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  /* 171.429% */
}
.gift-shop .giftbx .text h4 .tooltip-wrapper .items-popup ul li:last-child {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .gift-shop .giftbx .text h4 .tooltip-wrapper:hover .items-popup {
    opacity: 1;
    visibility: visible;
    bottom: -185px;
  }
}
.gift-shop .giftbx .text h4 .tooltip-wrapper.is-active .items-popup {
  opacity: 1;
  visibility: visible;
  bottom: -185px;
}
.gift-shop .giftbx .text h4 .size-picker-container {
  position: relative;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.gift-shop .giftbx .text h4 .size-picker-container .size-picker-trigger {
  border-radius: 6.25rem;
  border: 1px solid var(--Gray, #e3e3e3);
  background: #ffffff;
  padding: 0.375rem 2.089rem 0.375rem 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 90px;
}
.gift-shop .giftbx .text h4 .size-picker-container .size-picker-trigger:hover {
  border-color: #cccccc;
}
.gift-shop .giftbx .text h4 .size-picker-container .size-picker-trigger .size-label,
.gift-shop .giftbx .text h4 .size-picker-container .size-picker-trigger .size-value {
  color: #000;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  white-space: nowrap;
}
.gift-shop .giftbx .text h4 .size-picker-container .size-picker-trigger .size-label {
  margin-right: 0.25rem;
}
.gift-shop .giftbx .text h4 .size-picker-container .size-picker-trigger .custom-arrow {
  position: absolute;
  right: 0.85rem;
  width: 0;
  height: 0;
  border-left: 5.5px solid transparent;
  border-right: 5.5px solid transparent;
  border-top: 6px solid #000000;
  margin-top: 0;
  transition: transform 0.2s ease;
  top: 50%;
  transform: translateY(-50%);
}
.gift-shop .giftbx .text h4 .size-picker-container .size-picker-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 130px;
  z-index: 10;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.gift-shop .giftbx .text h4 .size-picker-container .size-picker-options .option {
  padding: 0.375rem 0.75rem;
  color: #000;
  font-family: Manrope;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25rem;
  /* 142.857% */
  cursor: pointer;
  transition: background 0.1s ease;
}
.gift-shop .giftbx .text h4 .size-picker-container .size-picker-options .option:hover {
  background: #f5f5f5;
}
.gift-shop .giftbx .text h4 .size-picker-container .size-picker-options .option.selected {
  font-weight: 600;
  background: #fafafa;
}
.gift-shop .giftbx .text h4 .size-picker-container.open .size-picker-options {
  display: flex;
}
.gift-shop .giftbx .text h4 .size-picker-container.open .custom-arrow {
  transform: rotate(180deg);
}
.gift-shop .giftbx .text p {
  color: #000;
  font-family: Manrope;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem;
  /* 133.333% */
  margin-bottom: 1.5rem;
}
.gift-shop .giftbx .text .blue-btn {
  width: 100%;
  display: flex;
  max-width: 100%;
  justify-content: space-between;
}
.gift-shop .row {
  gap: 2.5rem 0;
}
.gift-shop .row > div:nth-child(4n) .giftbx .text h4 .tooltip-wrapper .items-popup {
  left: auto;
  right: 0;
}
.gift-shop .size-picker-container .size-value br {
  display: none;
}

.gallery-main {
  position: relative;
}
.gallery-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;
}
.gallery-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;
}
.gallery-main h2 {
  max-width: 47.125rem;
  width: 100%;
  margin-bottom: 5rem;
}
.gallery-main .gallery-outer {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.gallery-main .gallery-inner {
  display: grid;
  gap: 0.625rem;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-self: stretch;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 30rem 30rem;
}
.gallery-main .gallery-inner .gallery-img {
  border-radius: 0.5rem;
  overflow: hidden;
}
.gallery-main .gallery-inner .gallery-img a {
  height: 100%;
  width: 100%;
}
.gallery-main .gallery-inner .gallery-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-main .gallery-inner .gallery-img.big {
  grid-row: 1/span 1;
  grid-column: 1/span 2;
  justify-self: stretch;
}
.gallery-main .gallery-inner.reverse .gallery-img.big {
  grid-row: 1/span 1;
  grid-column: 2/span 2;
  justify-self: stretch;
}

.home-banner.innerbanner.galleryBanner::before {
  display: none;
}
.home-banner.innerbanner.galleryBanner {
  background: url(../images/gallery-banner-bg.png) no-repeat center right, var(--Blue---01, #1b3c53);
  background-size: contain;
}
.home-banner.innerbanner.galleryBanner .banner-content {
  max-width: 530px;
  text-align: left;
  margin: 0;
}
.home-banner.innerbanner.galleryBanner .banner-content h1,
.home-banner.innerbanner.galleryBanner .banner-content p {
  color: #fff;
}

section.normal_fm figure {
  margin: 0;
}

section.contact-us-sec .formsec .wpcf7-not-valid-tip {
  margin-top: 0.9375rem;
}
section.contact-us-sec .formsec .wpcf7-response-output {
  text-align: center;
}

.wpcf7-spinner {
  display: none !important;
}

.newsletter-section .newsletter-content .newsletter-form .input-wrapper .wpcf7-not-valid-tip {
  margin-top: 0.9375rem;
}

.cmn_cls a {
  text-decoration: underline;
  text-decoration-color: #1b3c53;
  transition: 0.3s all ease;
}
.cmn_cls a:hover {
  text-decoration-color: transparent;
}
.cmn_cls h2,
.cmn_cls h3,
.cmn_cls h4 {
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  font-family: "Playfair Display";
  font-weight: 400;
}
.cmn_cls h2:first-child,
.cmn_cls h3:first-child {
  padding-top: 0;
}
.cmn_cls ul {
  margin-bottom: 1rem;
}
.cmn_cls ul li {
  margin-left: 1rem;
  list-style-type: disc;
  margin-bottom: 0.5rem;
  text-align: left;
}
.cmn_cls ol {
  margin-bottom: 1rem;
}
.cmn_cls ol li {
  margin-left: 1rem;
  list-style-type: decimal;
  margin-bottom: 0.5rem;
  text-align: left;
}

body.error404 header {
  display: none;
}

.error-pg-wrap {
  min-height: 100vh;
}
.error-pg-wrap::before {
  display: none;
}
.error-pg-wrap {
  background: url(../images/gallery-banner-bg.png) no-repeat center right, var(--Blue---01, #1b3c53);
  background-size: contain;
}
.error-pg-wrap .banner-content {
  max-width: 530px;
  text-align: left;
  margin: 0;
}
.error-pg-wrap .banner-content h1,
.error-pg-wrap .banner-content p {
  color: #fff;
}
.error-pg-wrap .banner-content h1 {
  margin-bottom: 1rem;
}
.error-pg-wrap .banner-content .green-btn {
  margin-top: 2rem;
}
.error-pg-wrap .middle_caption {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.faq-section {
  background-color: #f9fbfd;
}
.faq-section .faq-header {
  margin: 0 auto 3.75rem;
  text-align: center;
}
.faq-section .faq-header h2 {
  color: #000;
  margin-bottom: 1.25rem;
}
.faq-section .faq-header p {
  color: var(--Paragraph, #575757);
  font-size: 1.125rem;
}
.faq-section .faq-accordion {
  margin: 0 auto;
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.faq-section .faq-item {
  border-bottom: 1px solid rgba(27, 60, 83, 0.1);
}
.faq-section .faq-item:last-child {
  border-bottom: none;
}
.faq-section .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.875rem 0;
  cursor: pointer;
  text-align: left;
  outline: none;
}
.faq-section .faq-question h4 {
  color: var(--Blue---01, #1b3c53);
  margin-bottom: 0;
  padding-right: 2rem;
  transition: color 0.3s ease;
}
.faq-section .faq-question .icon {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.faq-section .faq-question .icon::before, .faq-section .faq-question .icon::after {
  content: "";
  position: absolute;
  background-color: var(--Blue---01, #1b3c53);
  transition: all 0.3s ease-in-out;
}
.faq-section .faq-question .icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.faq-section .faq-question .icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.faq-section .faq-question:hover h4 {
  color: var(--Green---01, #84b179);
}
.faq-section .faq-question:hover .icon::before,
.faq-section .faq-question:hover .icon::after {
  background-color: var(--Green---01, #84b179);
}
.faq-section .faq-answer {
  display: none;
  overflow: hidden;
}
.faq-section .faq-answer .answer-content {
  padding-bottom: 1.875rem;
  padding-right: 2.5rem;
}
.faq-section .faq-answer .answer-content p {
  color: var(--Paragraph, #575757);
  margin-bottom: 0;
}
.faq-section .faq-item.active .faq-question h4 {
  color: var(--Green---01, #84b179);
}
.faq-section .faq-item.active .faq-question .icon::before {
  background-color: var(--Green---01, #84b179);
}
.faq-section .faq-item.active .faq-question .icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
@media (max-width: 767px) {
  .faq-section .faq-accordion {
    padding: 1.5rem;
  }
  .faq-section .faq-header {
    margin: 0 auto 2rem;
  }
  .faq-section .faq-item:first-child .faq-question {
    padding-top: 0;
  }
  .faq-section .faq-item:last-child .faq-question {
    padding-bottom: 0;
  }
  .faq-section .faq-question {
    padding: 1.25rem 0;
  }
  .faq-section .faq-question h4 {
    font-size: 1.125rem;
    padding-right: 1rem;
  }
}

.cmn-bg-section {
  position: relative;
  background: url(../images/left-sky.png) no-repeat top left, url(../images/right-sky.png) no-repeat top right;
  background-position-y: -6.2rem;
}/*# sourceMappingURL=style.css.map */