@font-face {
  font-family: Geometria;
  src: url(../fonts/Geometria.ttf);
}

/* common css format */

* {
  font-family: Geometria;
  padding: 0;
  color: var(--primary-color);
  margin: 0;
  --primary-color: #032037;
  --secondary-color: #000722;
  --white-color: #fff;
}

.text-balance {
  text-wrap: balance;
}

html,
body {
  overflow-x: hidden !important;
}

body {
  /* overflow-x: hidden !important; */
  /* overflow-y: hidden !important; */
}

ul,
p {
  padding: 0 !important;
}

a {
  text-decoration: none !important;
}

.invert {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.sectionpad {
  padding: 70px 0;
}

.sectionpadtop {
  padding-top: 70px;
}

.sectionpadbottom {
  padding-bottom: 70px;
}

/* utility css */

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.justify-evenly {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.items-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.h-screen {
  height: 100vh;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.overflow-hidden {
  overflow: hidden;
}

.text-nowrap {
  white-space: nowrap;
}

.border-2 {
  border-width: 2px;
}

.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.size-full {
  width: 100%;
  height: 100%;
}

.opacity0 {
  opacity: 0;
}

.custom-txt h6 {
  font-size: 3vw;
}

.custom-txt p {
  font-size: 2vw;
  text-transform: capitalize;
}

.custom-txt small {
  font-size: 0.85rem;
}

.right-bg {
  background-color: #e7e0d8;
  height: 100dvh;
}

.mb-28 {
  margin-bottom: 7rem;
}

.font-normal {
  font-weight: normal;
}

.text-\[30px\] {
  font-size: 30px;
}

.lg\:text-\[3vw\] {
  font-size: 3vw;
}

.left-37 {
  left: 37.573vw;
}

.h-37 {
  height: 37.573vw;
}

.w-37 {
  width: 37.573vw;
}

.w-46 {
  width: 46.354vw;
}

.w-50 {
  width: 50%;
}

.h-40 {
  height: 40.531vw;
}

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

.z3 {
  z-index: 3;
}

.z4 {
  z-index: 4;
}

/* utility css */

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0 !important;
  margin: 0 !important;
}

.borderBox {
  border: 2px solid var(--primary-color);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield; /* Standard property for future compatibility */
}

.bgSetup {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.borderBottom {
  border-bottom: 1px solid var(--white-color);
}

/* owl carousel */
.owl-prev:hover,
.owl-next:hover {
  /* background: transparent !important; */
}

/* home section */
.homeSection {
  height: 100dvh;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.homeSection video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.homeSection::after {
  content: "";
  position: absolute;
  width: 100%;
  z-index: 1;
  height: 100%;
  inset: 0;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0)),
    color-stop(120%, #000)
  );
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000 120%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 120%);
}

.homeContentSection {
  height: 100%;
  width: 100%;
}

.menuImg {
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.logoImg {
  width: 70px;
  height: auto;
}

.navImg1 {
  width: 100px;
  height: auto;
}

.navImg2 {
  width: 200px;
  height: auto;
}

.navImgWrap.img1 {
  border-right: 1px solid #fff;
}

.bookNowBtn {
  border-radius: 3.6705rem;
  border: 1.678px solid var(--white-color);
  background: #9999;
  text-transform: uppercase;
  font-size: 16px;
  padding: 13px 20px;
  color: var(--white-color);
  display: inline-block;
  cursor: pointer;
}

.homeContentWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  z-index: 3;
}

.homeContentWrap p {
  border-top: 2px solid var(--white-color);
  font-size: 1.3rem;
  font-weight: 400;
}

.borderBottom {
  border-bottom: 2px solid var(--white-color);
  /* width: 100%; */
}

.pageTitle {
  text-transform: uppercase;
  font-size: 2.5vw;
  font-weight: 400;
  text-transform: uppercase;
}

.homeContentWrap {
  position: absolute;
  bottom: 40px;
  width: 88%;
}

/* .text-dark {
  text-shadow: 1px 1px 2px #000000e0, 0 0 1em #000000cf, 0 0 0.2em #000000e0;
} */

.headerWrap {
  position: absolute;
  top: 18px;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 9;
}

/* intro section */

.introSection {
  /* background: url(../images/introBG.jpg); */
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.bg-intro {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  inset: 0;
}

.bg-intro video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.subHeadTitle {
  text-transform: uppercase;
  text-align: center;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px !important;
}

.sectionTitle {
  color: var(--primary-color);
  text-align: center;
  font-size: 3vw;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
}

.introSection .sectionTitle {
  padding-bottom: 10px !important;
  border-bottom: 1px solid var(--primary-color);
}

.introTextContent {
  text-align: center;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem; /* 133.333% */
}

.sectionCtaBtn {
  display: inline-block;
  color: var(--primary-color);
  font-size: 1rem;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  border-radius: 3.70194rem;
  border: 1.692px solid var(--primary-color);
  background: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  cursor: pointer;
}

/* project section */

.project1CardSection,
.project2CardSection,
.project3CardSection {
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 21, 45, 0.8)),
    to(rgba(0, 21, 45, 0.8))
  );
  background: -o-linear-gradient(
    bottom,
    rgba(0, 21, 45, 0.8) 0%,
    rgba(0, 21, 45, 0.8) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(0, 21, 45, 0.8) 0%,
    rgba(0, 21, 45, 0.8) 100%
  );
  /* url(../images/projects/p2.jpg) lightgray 50% / cover no-repeat; */
  height: 100vh;
  position: relative;
}

.projectSection .sectionTitle {
  border-bottom: 1px solid var(--white-color);
  padding-bottom: 15px !important;
}

.projectContentWrap {
  position: fixed;
  top: 5%;
  width: 90%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.projectImgWrap {
  position: fixed;
  top: 24%;
  width: 90%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  height: 60dvh;
}

.projectCardImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.projectInfoWrap {
  position: fixed;
  bottom: 4%;
  width: 90%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.projectInfoWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 1rem 0 0 0;
}

.projectHead {
  color: var(--white-color);
  font-size: 2rem;
  font-weight: 400;
  word-spacing: 0.5rem;
  text-transform: uppercase;
}

.custom-padding-2 {
  padding: 0 0 0 5rem !important;
}

.projectData {
  margin: 0 auto;
  color: var(--white-color);
}

.sectionCtaBtn.light {
  color: var(--white-color);
  border: 1.692px solid var(--white-color);
}

.projectBgImg {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.projectBgImgWrap {
}

/* .projectCardImg {
  height: 380px;
  width: 100%;
} */

/* animation css */

.project-gallery {
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
}

/* locaton section */

.locationSection {
  padding: 2rem 0 1rem 0;
}

.locationSection .subHeadTitle {
  margin-bottom: 15px !important;
}

.locationSection .sectionTitle {
  border-bottom: 1px solid var(--primary-color);
}

.location-content {
  position: relative;
}

.location-map {
  background: url("../images/map.jpg") no-repeat left top/cover;
  width: 100%;
  height: 100%;
}

.location-content .location-img {
  width: 100%;
  height: 100%;
}

.location-content .location-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.location-content .location-txt {
  width: 90%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.25rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  bottom: 5%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  color: var(--white-color);
}

.location-content .location-txt h4 {
  color: var(--white-color);
  text-align: center;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.location-content .location-txt p {
  color: var(--white-color);
  font-size: 0.85rem;
}

.locationSection .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1rem 0 0 0;
  gap: 0.65rem;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.amenities-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1rem 0 0 0;
  gap: 0.65rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.locationSection .owl-nav button,
.amenities-carousel .owl-nav button {
  width: 45px;
  height: 45px;
}

.locationSection .owl-nav button img,
.amenities-carousel .owl-nav button img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/* coming soon section */

.comingSoonSection {
  background: url(../images/comingSoonBG.jpg);
}

.comingSoonContentWrap {
  /* margin: 0 40px; */
}

.videoSection {
  overflow: hidden;
  height: 100dvh;
  width: 100%;
}

#sectionLocation {
  /* padding: 10rem 0 !important; */
}

/* .locationSection .owl-carousel .item img {
  width: 300px !important;
  height: auto;
} */

#sectionLocation,
#sectionVideo {
  position: sticky;
  top: 0;
}

#sectionComingSoon {
  position: relative;
  z-index: 50;
}

/* shorelineste[s section */

.shorelinestepSection {
  height: 100dvh;
  position: relative;
}

.fluidStepsImgWrap {
  background: var(--white-color);
}

.fluidStepsContentWrap {
  background: url(../images/stepsBG.jpg);
  height: 100dvh;
}

/* shoreline section */

.shorelinestepSection {
  overflow: hidden;
}

.shorelineLeftImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.shorelineRightImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.shorelineImg {
  width: 280px;
  height: auto;
}

.shorelineContent {
  padding-left: 40px;
}

.fluidStepsImgWrap {
  width: 100%;
}

.custom-container {
  width: 90%;
  margin: auto 0 auto auto;
}

.custom-container-2 {
  width: 85%;
  margin: auto;
}

.shorelineImgPack {
  width: 70%;
  padding-top: 60px;
}

/**************** animation css **********************/

.philosophie {
  position: relative;
}

.indicators {
  left: 2rem;
  top: 0;
  margin: 10vh 0;
  height: 80vh;
  width: 3px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
}

.indicator {
  width: 100%;
  background-color: #adadad;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 2px 0;
}

.philosophie .point {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4rem;
  overflow: hidden;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.philosophie .wrapper {
  height: 100vh;
  width: 100%;
}

.point img {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50vw;
  height: auto;
}

/* Split the screen in half */
.split {
  height: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  overflow: hidden;
}

/* Control the left side */
.left {
  left: 0;
  width: 50%;
  z-index: 0;
  overflow: hidden;
  background: #e7e0d8;
}

/* Control the right side */
.right {
  right: 0;
  width: 50%;
  z-index: 0;
  overflow: hiddent;
  background: white;
}

/* If you want the content centered horizontally and vertically */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 20000;
  width: 90%;
}

/* Style the image inside the centered container, if needed */
.centered img {
  width: 100%;
  height: 100%;
  z-index: 20000;
}

.feature-chat-text-1 p {
  font-style: normal;
  font-size: 1rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 300;
  color: #032037;
}

.feature-chat-text-2 {
  width: 100%;
}

.feature-chat-text-2 p {
  font-size: 2.5vw;
  text-align: center;
  line-height: normal;
  font-weight: 400;
  color: #032037;
  width: 100%;
}

.feature-chat-text-3 p {
  font-weight: 300;
  color: #032037;
  font-size: 1rem;
  text-transform: uppercase;
}

.amenities-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0rem;
}

.amenities-content .amenities-txt {
  width: 100%;
  text-align: start;
  padding: 4rem 1.5rem 3rem 1rem;
  position: relative;
  background-color: rgba(231, 224, 216, 1);
  z-index: 1;
}

.amenities-txt .animation-video {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
}

.amenities-txt .animation-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenities-content .amenities-txt h4 {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 300;
  text-transform: uppercase;
}

.amenities-content .amenities-txt p {
  margin: 1.25rem 0 1rem 0 !important;
  color: var(--primary-color);
  font-size: 1.15rem;
  font-weight: 400;
  text-transform: uppercase;
}

.amenities-content .amenities-txt small {
  color: #032037;
  font-size: 0.8rem;
  font-weight: 300;
  text-transform: uppercase;
}

.amenities-content .amenities-img {
  width: 100%;
  height: 300px;
}

.amenities-content .amenities-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

/* extra height box section */

.extraboxHeight1 {
  height: 150px;
}

.extraboxHeight2 {
  height: 100px;
}

/**************** media query css **********************/

@media only screen and (max-width: 1400px) {
  .projectHead {
    font-size: 1.5rem;
  }

  .projectData {
    font-size: 0.9rem;
  }

  .sectionCtaBtn {
    font-size: 0.925rem;
    padding: 0.5rem 1rem;
  }
}

@media only screen and (max-width: 1200px) {
  .projectHead {
    font-size: 1.25rem;
  }

  .projectData {
    font-size: 0.85rem;
  }

  .sectionCtaBtn {
    font-size: 0.925rem;
    padding: 0.5rem 1rem;
  }
}

@media only screen and (max-width: 991px) {
  .subHeadTitle {
    font-size: 2.75vw;
  }

  .sectionTitle {
    font-size: 3.5vw;
  }

  .projectContentWrap {
    width: 100%;
    top: 6%;
  }

  .projectImgWrap {
    height: 50dvh;
  }

  .projectHead {
    font-size: 3vw;
  }
  .projectData {
    font-size: 1rem;
  }

  .projectInfoWrap {
    bottom: 3%;
  }
}

@media only screen and (max-width: 576px) {
  .sectionTitle {
    font-size: 4.85vw;
    line-height: normal;
  }

  .subHeadTitle {
    font-size: 4vw;
  }

  .projectImgWrap {
    top: 20%;
  }

  .projectImgWrap {
    height: 46dvh;
  }

  .projectHead {
    font-size: 1rem;
    line-height: normal;
  }

  .projectData {
    font-size: 0.85rem;
  }

  .sectionCtaBtn {
    font-size: 13px;
    padding: 15px 25px;
    margin: 0.75rem 0 0 0;
  }

  .custom-img {
    width: 100% !important;
    height: 60dvh;
  }

  #sectionLocation,
  #sectionVideo {
    position: relative;
  }

  .locationContentWrap {
    margin: 2rem 0 0 0;
  }

  .locationImg {
    width: 100%;
  }

  .locationCarousel .owl-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .shorelinestepSection {
    overflow: unset !important;
    height: auto;
  }

  .fluidStepsContentWrap {
    height: auto;
  }

  .custom-container {
    width: 95%;
    margin: auto;
  }

  .custom-container-2 {
    width: 95%;
  }

  .shorelineContent {
    padding-left: 0;
  }
}
