/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@font-face {
  font-family: PlayfairDisplay;
  src: url("../assets/fonts/playfair/PlayfairDisplay-VariableFont_wght.ttf");
}

@font-face {
  font-family: quicksand;
  src: url("../assets/fonts/quicksand/Quicksand-Light.ttf");
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --light: #A62F3C;
  --dark: #000;
  --PlayfairDisplay: PlayfairDisplay;
  --quicksand: quicksand;
  --primary: #23408f;
  --secondary: #72bf44;
  --text-dark: #474747;
  --dark-blue: #005792;
  --text-mute: rgba(37, 88, 83, 0.2);
}

html {
  scroll-behavior: smooth !important;
  overflow-x: hidden;
}

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

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

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

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

body {
  overflow-x: hidden !important;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  padding-right: 0px !important;
  font-family: var(--quicksand) !important;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar {
  width: 9px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #cfcfcf;
}

body.loading {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

body.loaded {
  -webkit-animation: fadeIn 3s ease-out forwards;
  animation: fadeIn 3s ease-out forwards;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0.3;
  }

  to {
    opacity: 1;
  }
}

.loader-container {
  display: none;
}

.loader-wrapper {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9999;
  background-color: #ffffffe3;
  -webkit-box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  height: 100vh;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: -o-radial-gradient(farthest-side, #2a75ff 94%, #0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%, #4184ff);
  background: radial-gradient(farthest-side, #2a75ff 94%, #0000) top/8px 8px no-repeat,
    conic-gradient(#0000 30%, #4184ff);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
  -webkit-animation: l13 1s infinite linear;
  animation: l13 1s infinite linear;
}

@-webkit-keyframes l13 {
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes l13 {
  100% {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes opacity {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

/* form loader css */

.form-loader {
  display: none;
}

.form-loader-wrapper {
  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;
  gap: 0.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: var(--light);
  border: 2px solid #fff;
  margin: auto;
  padding: 0.45rem 0.75rem 0.3rem 0.75rem;
  border-radius: 4px;
}

.form-loader-wrapper .loader-txt {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.f-loader {
  width: 25px;
  height: 25px;
  border: 3px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-animation: rotation 0.75s linear infinite;
  animation: rotation 0.75s linear infinite;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* form loader css */

.compensate-for-scrollbar {
  margin-right: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0rem !important;
}

ul {
  padding-left: 0rem !important;
  margin-bottom: 0rem !important;
}

li {
  list-style: none;
  text-decoration: none;
}

a {
  text-decoration: none !important;
}

p {
  margin-bottom: 0rem !important;
}

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

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

button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.line {
  width: 6vw;
  height: 2px;
  border-radius: 100px;
  background-color: var(--primary);
  position: relative;
  bottom: 15px;
}

.line.about-line {
  bottom: unset;
}

.line.light {
  background-color: var(--light);
}

header {
  position: fixed;
  z-index: 11;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: rgba(255, 255, 255, 0.89);
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

header.hide-header {
  transform: translate(-50%, -100%);
}

header.dropped {
  top: 0;
}


nav {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 1.45rem 8rem;
}

nav.dropped {
  background-color: var(--primary);
}

.navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 1rem;
  align-items: center;
}

.navbar-container .navlogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.35s ease;
  -o-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.navbar-container .menu {
  display: none;
}

.navbar-container .navlogo .logo {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  width: 149px;
  -o-object-fit: cover;
  object-fit: cover;
}

nav.dropped .navbar-container .navlogo .logo {
  width: 100px;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  -o-object-fit: cover;
  object-fit: cover;
}

.mob-logo {
  width: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}

.navbar-container .navbar-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-container .navbar-links .navbar-link .nav-link {
  color: #A62F3C;
  font-size: 1.25rem;
  line-height: normal;
  font-style: normal;
  font-family: 'PlayfairDisplay';
  font-weight: 400;
  text-wrap: nowrap;
  text-transform: capitalize;
}

.btn-contact {
  border: 1px solid #fff;
  /* background: #00afef; */
  color: #fff;
  text-wrap: nowrap;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.55rem 2.15rem;
  font-size: 0.95rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  cursor: pointer;
  align-items: center;
  gap: 0.3rem;
  /* border-radius: 100px; */
  -webkit-animation: pulse-effect-2 2.5s infinite;
  animation: pulse-effect-2 2.5s infinite;
}

.offcanvas-header {
  background: rgba(255, 255, 255, 0.89) !important;
  backdrop-filter: blur(12px) !important;
}

@-webkit-keyframes pulse-effect-2 {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.404);
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.404);
  }

  100% {
    -webkit-box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
}

@keyframes pulse-effect-2 {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.26);
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.26);
  }

  100% {
    -webkit-box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
}

.offcanvas.offcanvas-start {
  background: var(--light);
}

.offcanvas-body .offcanvas-navs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
}

.offcanvas-body .offcanvas-navs .offcanvas-nav .offcanvas-link {
  color: #fff;
  font-size: 1rem;
  font-family: 'PlayfairDisplay';
  font-weight: 400;
}

/* .offcanvas-header .btn-close {
  -webkit-filter: invert(1);
  filter: invert(1);
} */

.btn-primary {
  color: var(--primary);
  border: none;
  padding: 0.5rem 1rem;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-top: 1px solid var(--primary);
  text-wrap: nowrap;
  font-size: 1rem;
  border-bottom: 1px solid var(--primary);
  text-transform: capitalize;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-animation: pulse-effect 2s infinite;
  animation: pulse-effect 2s infinite;
}

@-webkit-keyframes pulse-effect {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 #4c6dc591;
    box-shadow: 0 0 0 0 #476fdb91;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.144);
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.144);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes pulse-effect {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 #4c6dc591;
    box-shadow: 0 0 0 0 #4c6dc591;
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-box-shadow: 0 0 0 0.6rem rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0.6rem rgba(0, 0, 0, 0);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}


.project-carousel-container {
  width: 20rem;
  max-width: 100%;
}


.project-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1.5rem auto 1rem auto;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

.project-carousel .arrow {
  height: 80px;
  width: 80px;
}

.project-carousel .owl-dots {
  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;
  gap: 0.5rem;
  margin: 2rem auto;
}

.project-carousel .owl-dots button {
  width: 15px;
  height: 15px;
  border-radius: 100px;
  background: #fff !important;
  -webkit-transform: scale(0.75);
  -ms-transform: scale(0.75);
  transform: scale(0.75);
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.project-carousel .owl-dots button.active {
  background: #FFD58D !important;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.btn-primary.btn-light {
  color: var(--light);
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
}

.btn-primary.btn-light.btn-custom {
  width: 250px;
  padding: 1rem;
  max-width: 100%;
}

.btn-primary:hover {
  color: var(--light);
  padding: 0.4rem 1rem;
  background: var(--primary);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.section-heading.custom-padding {
  padding: 0 2rem 0 0;
}

.section-heading .section-title.primary-title {
  font-size: 2.75vw;
  color: var(--primary);
  font-weight: 600;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  line-height: 2.5rem;
  margin: 1rem 0rem 1.25rem 0rem !important;
}

.section-heading .section-title.primary-title.light-title {
  color: var(--light);
  padding: 0rem 1rem;
}

section.main-banner {
  /* margin: 4.25rem 0 0 0; */
  position: relative;
}

.down-aarow {
  position: absolute;
  left: 50%;
  z-index: 1;
  bottom: 0;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.down-aarow:hover {
  animation: animate 2s ease infinite;
}


@keyframes animate {
  0% {
    bottom: -2%;
  }

  50% {
    bottom: 2%;
  }

  100% {
    bottom: -2%;
  }
}

section.main-banner .video-banner {
  width: 100%;
  overflow: hidden;
  height: 100vh;
}

section.main-banner .video-banner video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.section-heading .section-subtitle {
  font-size: 1vw;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5rem;
  margin: 0 0 1rem 0 !important;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.20) 68.15%);
  z-index: 1;
  pointer-events: none;
}

.video-banner {
  position: relative;
}


/* .video-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
} */

.video-description {
  padding-top: 1rem;
  color: #FFF;
  font-size: 1.25rem;
  font-style: normal;
  text-align: center;
  line-height: 2rem;
  font-weight: 400;
  letter-spacing: 0.0275rem;
  text-wrap: balance;
}

.video-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
  text-align: center;
}

.video-content-wrapper {
  width: 1000px;
  margin: 0 auto;
}

.unveling-title-video {
  font-size: 2.94rem;
  font-family: PlayfairDisplay;
  font-weight: 400;
  color: #E9C383;
  padding: 0.5rem 0rem;
  margin-bottom: 1rem;
}

.video-box {
  margin: 0 auto;
}

.video-descript {
  color: #fff;
  font-size: 1.14rem;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: 0.0275rem;
  font-style: normal;
  text-align: center;
  padding-top: 1rem;
}

.section-heading .section-subtitle.custom-font {
  font-family: var(--MinionPro);
}

.section-heading .section-desc {
  font-size: 1vw;
  color: var(--dark);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-wrap: balance;
  font-weight: 400;
}

.modal-logo {
  width: 120px;
  max-width: 100%;
}

.modal-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.form-control.custom-input {
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  border-radius: 0px;
  color: #fff;
}

.mobile-input-div {
  position: relative;
}

.mobile-input-div .country-code {
  position: absolute;
  top: 7px;
  left: 2px;
  font-weight: 500;
  font-size: 0.9rem;
  color: #fff;
}

.invalid-feedback {
  margin-top: 0.2rem;
  font-size: 0.8rem;
}

.form-control.custom-input.mobile-input {
  padding-left: 2.55rem;
}

.form-control.custom-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-submit {
  background: #A62F3C;
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 6.25rem;
  border: 1px solid #E9C383;
  color: #E9C383;
  /* border: 1px solid #fff; */
  padding: 0.5rem 2rem;
  margin: 1rem 0 0 0;
}

.contact-form {
  padding: 1rem 0 0.25rem 0;
}

::-webkit-input-placeholder {
  color: var(--primary) !important;
}

::-moz-placeholder {
  color: var(--primary) !important;
}

:-ms-input-placeholder {
  color: var(--primary) !important;
}

::-ms-input-placeholder {
  color: var(--primary) !important;
}

::placeholder {
  color: var(--primary) !important;
}

/* ***************** introduction starts ************* */
.cust-slider {
  height: 100vh;
}

.cust-slider .carousel-inner {
  height: 100%;
}


.cust-slider .carousel-inner .carousel-item {
  height: 100%;
}

.cust-slider .carousel-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  position: relative;
  animation: zoomInOut 2s ease-in-out forwards;
}

.cust-slider .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 13.56%, #000 90.9%);
  z-index: 1;
}

.cust-slider .carousel-item {
  position: relative;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.ban-text {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
  border-left: 2px solid #d6b679;
  border-bottom: 2px solid #d6b679;
  border-right: 2px solid #d6b679;
  width: 1000px;
  max-width: 90%;
}

.ban-text2 {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}

.ban-text::before,
.ban-text::after {
  content: "";
  position: absolute;
  border: 2px solid #d6b679;
  /* golden color */
}

/* Top-left corner */
.ban-text::before {
  top: 0;
  left: 0;
  width: 150px;
  /* adjust as needed */
  height: 2px;
  border-bottom: none;
  border-right: none;
}

/* Bottom-right corner */
.ban-text::after {
  top: 0;
  right: 0;
  width: 150px;
  /* adjust as needed */
  height: 2px;
  border-top: none;
  border-left: none;
}

.config-button {
  margin: 0 0 2rem 0;
}

.overview-iconic {
  padding: 1.5rem 0;
  max-width: 80%;
  margin: auto;
}

.overview-iconic2 {
  padding: 1.5rem 0;
  margin: auto;
}

.overview-iconic3 {
  padding: 1.5rem 0;
  max-width: 90%;
  margin: auto;
}

.unveling-title {
  color: #E9C383;
  text-align: center;
  font-size: 2.94rem;
  margin: -2.25rem 0 0 0;
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  padding: 0.5rem 0rem;
  font-family: PlayfairDisplay;
  text-align: center;
}

.unveling-description {
  color: #FFF;
  font-size: 1.15rem;
  font-style: normal;
  text-align: center;
  line-height: 2rem;
  font-weight: 400;
  letter-spacing: 0.0275rem;
}

.text-small {
  text-transform: lowercase;
}

/* ***************** introduction ends************* */


/* ****************** Premium Residences starts********** */
.unveiling-config .config-back {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.config-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

.config-back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.50) 100%);
  z-index: 1;
  pointer-events: none;
}


.config-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}


.unveling-framing {
  color: #FFF;
  font-size: 1.25rem;
  font-style: normal;
  line-height: 2rem;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.0275rem;
}

.config-openstyle {
  border: 1px solid #E9C383;
  color: #E9C383;
  text-wrap: nowrap;
  font-weight: 600;
  border-radius: 6.25rem;
  background: #A62F3C;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.85rem 2.55rem;
  font-size: 1rem;
  width: max-content;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  cursor: pointer;
  align-items: center;
  gap: 0.3rem;
}


.glass-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 580px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  border-radius: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.glass-box.visible {
  opacity: 1;
}

/* Border animation */
.glass-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  box-sizing: border-box;
  border: 2px solid transparent;
  border-top-color: #d6b679;
  animation: borderSweep 10s forwards ease-in-out;
  box-shadow: none;
  transition: box-shadow 0.5s ease;
}


@keyframes borderSweep {
  0% {
    border-top-color: #d6b679;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    box-shadow: none;
  }

  25% {
    border-right-color: #d6b679;
  }

  50% {
    border-bottom-color: #d6b679;
  }

  75% {
    border-left-color: #d6b679;
  }

  100% {
    border-top-color: #b89450;
    border-right-color: #b89450;
    border-bottom-color: #b89450;
    border-left-color: #b89450;
    box-shadow: 0 0 10px #b89450, 0 0 20px #b89450;
  }
}

/* ****************** Premium Residences ends********** */

/* ***************** Exclusive Benefits starts ************* */
.full-video .video-back {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.full-video .video-back video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

.full-video .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 35.2%, #000 90.69%);
  z-index: 1;
  pointer-events: none;
}



/* ***************** Exclusive Benefits ends ************* */


/* ***************** Elevate Your Life starts ************* */
.full-videos {
  position: relative;
}

.full-videos .video-back-elevate {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.full-videos .video-back-elevate video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

.full-videos .video-overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) -12.71%, #000 77.14%);
  z-index: 1;
  pointer-events: none;
}

.line {
  width: 0;
  height: 1px;
  background-color: #E9C383;
  position: absolute;
  z-index: 5;
  top: 10%;
  left: 10%;
  transform: translateY(-50%);
  transition: width 1.5s ease-in-out;
}

.line.animate {
  width: 80%;
}



.line2 {
  width: 0%;
  height: 1px;
  background-color: #E9C383;
  position: absolute;
  z-index: 5;
  bottom: 10%;
  left: 10%;
  transform: translateY(-50%);
  /* Only vertical center */
  transition: width 1.5s ease-in-out;

}

.line2.animate {
  width: 80%;
}

/* ***************** Elevate Your Life ends ************* */

/* ***************** A Network of Leaders starts ************* */
.leader-video .leader-back {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  overflow: hidden;
}

.leader-video .leader-back video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

.leader-video .leader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgb(0 0 0) 100%);
  z-index: 1;
  pointer-events: none;
}


/* ***************** A Network of Leaders ends ************* */


/* --------------------Map Section Starts-------------- */
.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#map-backk {
  background-image: url("../assets/images/background/config.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.config-box {
  position: absolute;
  padding: 2rem;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(12px);
  text-align: center;
  display: flex;
  width: 56%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.config-box:not(.d-none) {
  opacity: 1;
}

.config-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  box-sizing: border-box;
  border: 2px solid transparent;
  border-top-color: #d6b679;
}

.config-box.animate-border::before {
  animation: borderSweep 8s forwards ease-in-out;
}

@keyframes borderSweep {
  0% {
    border-color: transparent;
    border-top-color: #d6b679;
  }

  25% {
    border-right-color: #d6b679;
  }

  50% {
    border-bottom-color: #d6b679;
  }

  75% {
    border-left-color: #d6b679;
  }

  100% {
    border-color: #b89450;
  }
}

.cofig-title {
  color: #FFD58D;
  padding-top: 1rem;
  font-size: 2.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  font-family: 'PlayfairDisplay';
  padding-bottom: 2rem;
}

.config-descreption .config-num {
  color: #fff;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.75rem;
}


.map-description {
  color: #FFF;
  font-size: 1.15rem;
  font-style: normal;
  text-align: center;
  line-height: 2rem;
  font-weight: 400;
  letter-spacing: 0.0275rem;
}


/* ********************Map section ends******** */

/* ***********************About us Section Starts******** */
.unveiling-about {
  position: relative;
}

.line3 {
  width: 0;
  height: 1px;
  background-color: #E9C383;
  position: absolute;
  z-index: 5;
  top: 27%;
  left: 10%;
  transform: translateY(-50%);
  transition: width 1.5s ease-in-out;
}

.line3.animate {
  width: 80%;
}

.line4 {
  width: 0%;
  height: 1px;
  background-color: #E9C383;
  position: absolute;
  z-index: 5;
  bottom: 10%;
  left: 10%;
  transform: translateY(-50%);
  transition: width 1.5s ease-in-out;
}

.line4.animate {
  width: 80%;
}

.unveiling-about .about-back {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.about-back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 9.36%, rgba(0, 0, 0, 0.9) 76.85%);
  z-index: 1;
  pointer-events: none;
}

.about-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
  transform: scale(1);
  transition: transform 1.2s ease-out;
  transition: transform 4.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-back.zoom-in img {
  transform: scale(1.2);
}

.about-text {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}



/* form */

.register-interest {
  background: url("../assets/images/background/layer.png");
  background-repeat: no-repeat;
  background-position: center;
  height: 612px;
  padding: 3rem 0rem;
  object-fit: cover;
  color: #000;
  /* text-align: center; */
  display: flex;
  align-items: center;
  position: relative;
}

.adjust {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-title {
  color: #A62F3C;
  /* background-color: #fff; */
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  width: max-content;
  /* margin: auto; */
  padding: 0rem 1rem;
  font-family: 'PlayfairDisplay';
}

.con-title {
  padding: unset !important;
}

.section-subtitle {
  color: #000;
  /* background-color: #fff; */
  font-size: 1rem;
  font-style: normal;
  /* width: max-content; */
  max-width: 100%;
  text-align: start;
  margin: 1rem auto !important;
  padding: 1.5rem 0rem;
  font-weight: 400;
  line-height: 22.5px;
  text-transform: capitalize;
}

.new-class {
  background: transparent;
  border: 0;
  width: 40rem;
  max-width: 100%;
  border-bottom: 1px solid #000;
  margin: auto;
  padding: 0.65rem 1rem;
  border-radius: 0;
}

.new-class::placeholder {
  color: #000 !important;
}

.new-class:focus {
  box-shadow: none;
}

.btn-submit2 {
  padding: 0.5rem 2.5rem;
  color: #fff;
  background-color: #A62F3C;
  font-size: 1.25rem;
  font-weight: 600;
  border: 1px solid #E9C383;
  color: #E9C383;
  text-wrap: nowrap;
  font-weight: 600;
  border-radius: 6.25rem;
}

.form-calltxt {
  margin-bottom: 0;
  color: #181d24;
  font-size: 20px;
  text-align: center;
  margin-top: 30px;
}

.form-calltxt a {
  color: #181d24 !important;
  text-decoration: none !important;
  font-size: 1.8rem;
  font-family: var(--quicksand) !important;
  font-weight: 600;
}

.custom-hr {
  background-color: #A62F3C;
  height: 1px;
  border: none;
  opacity: unset !important;
}

/********** footer ***********/
.footer-black {
  background: #fff;
  padding: 2rem 0rem;
}

.footer-logo {
  padding: 1rem 0rem;
  width: 163px;
  margin: auto;
  height: auto;
  max-width: 100%;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer-qr {
  padding: 1rem 0rem;
  width: 97px;
  margin: auto;
  height: auto;
  max-width: 100%;
}

.footer-qr img {
  width: 100%;
  height: 100%;
  /* border-radius: 6px; */
  -o-object-fit: cover;
  object-fit: cover;
}

.text-footer p {
  color: var(--light);
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  padding: 1.3rem 1rem;
  text-wrap: balance;
}

.footer-desc p {
  color: #A62F3C;
  text-align: center;
  font-size: 0.85rem;
  text-wrap: balance;
  font-weight: 600;
  padding: 0.2rem 1rem;
}

/* --------Modal Place holder starts */
.custom-placeholder::placeholder {
  color: white !important;
  opacity: 1;
  /* Ensure full visibility */
}

.custom-placeholder:-ms-input-placeholder {
  /* Edge 12-18 */
  color: white !important;
}

.custom-placeholder::-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: white !important;
}

/* thank you page css */

nav.thank-you {
  background-color: #00000080;
}

section.secton-thankyou {
  height: 450px;
  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;
  padding: 0rem 1.5rem;
  margin: 8rem auto auto auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: 100%;
}

section.secton-thankyou .thankyou-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.75rem auto 1.15rem auto !important;
  text-align: center;
  text-wrap: pretty;
  color: var(--light);
  font-family: 'PlayfairDisplay';
}

section.secton-thankyou .thankyou-subtitle {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.75;
  text-align: center;
  text-wrap: pretty;
  color: var(--light);
}


/* thank you page css */

/* ***********Modal Form********* */
.modal-content {
  background: #A62F3C;
  border-radius: unset;
  outline: 2px solid #E9C383;
  outline-offset: 4px;
}

.modal-header {
  background: rgba(255, 255, 255, 0.89);
  backdrop-filter: blur(12px);
}

/* .modal-header .btn-close {
  filter: invert(1);
} */

@media (min-resolution: 120dpi) and (max-resolution: 130dpi) {
  .about-text {
    bottom: -6%;
  }

  .line3 {
    top: 23%;
  }
}



@media only screen and (max-width: 1400px) {
  nav {
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 0.65rem 2rem;
  }

  .navbar-container .navbar-links .navbar-link .nav-link {
    font-size: 0.85rem;
  }

  .cofig-title {
    font-size: 2rem;
  }

  .config-descreption .config-num {
    font-size: 1.5rem;
  }

  .map-description {
    font-size: 1rem;
  }

  .config-box {
    z-index: 1;
    top: 52%;
    left: 50%;
  }

  .unveling-title {
    font-size: 2rem;
  }

  .unveling-title-video {
    font-size: 2rem;
  }

  .unveling-description {
    font-size: 1rem;
  }

  .line3 {
    top: 15%;
  }
}

@media only screen and (max-width: 1280px) {
  .navbar-container .navbar-links {
    gap: 1rem;
  }

  .navbar-container .navbar-links .navbar-link .nav-link {
    font-size: 0.8rem;
  }

  .cofig-title {
    font-size: 2rem;
  }

  .config-descreption .config-num {
    font-size: 1.5rem;
  }

  .map-description {
    font-size: 1rem;
  }

  .config-box {
    z-index: 1;
    top: 52%;
    left: 50%;
  }

  .unveling-title {
    font-size: 2rem;
  }

  .unveling-title-video {
    font-size: 2rem;
  }

  .unveling-description {
    font-size: 1rem;
  }



  .line3 {
    top: 12%;
  }

  .line4 {
    bottom: 17%;
  }

  .about-text {
    position: absolute;
    bottom: -8%;
  }
}

@media only screen and (max-width: 1200px) {
  .navbar-container .menu {
    display: block;
  }

  .navbar-links {
    display: none !important;
  }

  .unveling-title {
    font-size: 2rem;
  }

  .unveling-title-video {
    font-size: 2rem;
  }

  .unveling-framing {
    font-size: 1rem;
  }

  .unveling-description {
    font-size: 1rem;
  }

  .video-description {
    font-size: 1rem;
  }

  .video-descript {
    font-size: 1rem;
  }



  .config-box {
    padding: 1rem;
    min-width: 73%;
    top: 49%;
  }

  .cofig-title {
    font-size: 2rem;
  }

  .config-descreption .config-num {
    font-size: 1.4rem;
  }

  .map-description {
    font-size: 1rem;
  }

  .unveling-title {
    font-size: 2rem;
  }

  .unveling-title-video {
    font-size: 2rem;
  }

  .unveling-description {
    font-size: 1rem;
  }

  .line3 {
    top: 5%;
  }

  .line4 {
    bottom: 9%;
  }

  .about-text {
    bottom: 0%;
  }
}

@media only screen and (max-width: 991px) {
  .custom-container {
    width: 100%;
    margin: auto;
  }

  .unveling-title {
    font-size: 2rem;
  }

  .unveling-title-video {
    font-size: 2rem;
  }

  .unveling-framing {
    font-size: 1rem;
  }

  .unveling-description {
    font-size: 1rem;
  }

  .video-description {
    font-size: 1rem;
  }

  .video-descript {
    font-size: 1rem;
  }

  #map-backk {
    min-height: 700px;
  }

  .cofig-title {
    font-size: 2rem;
  }

  .config-descreption .config-num {
    font-size: 1.4rem;
  }

  .map-description {
    font-size: 1rem;
  }

  .video-content-wrapper {
    width: unset;
  }
}

@media only screen and (max-width: 767px) {

  section.main-banner .video-banner {
    width: 100%;
    overflow: hidden;
    height: 100%;
  }

  section.main-banner {
    margin: 3.5rem auto auto auto;
  }

  header {
    top: 0;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.89);
    backdrop-filter: blur(12px);
  }

  .unveling-title {
    font-size: 1.6rem;
  }

  .unveling-title-video {
    font-size: 1.6rem;
  }

  .cofig-title {
    font-size: 1.8rem;
  }

  .config-descreption .config-num {
    font-size: 1.2rem;
  }

  .map-description {
    font-size: 1rem;
  }

  .unveling-framing {
    font-size: 0.9rem;
    line-height: unset;
  }

  .unveling-description {
    font-size: 1rem;
    line-height: unset;
  }

  .video-description {
    font-size: 1rem;
    line-height: unset;
  }

  .video-content-wrapper {
    width: unset;
  }

  .video-descript {
    font-size: 1rem;
    line-height: unset;
  }

  #map-backk {
    min-height: 700px;
  }

  .unveiling-config .config-back {
    height: 500px;
  }

  .full-video .video-back {
    height: 600px;
  }

  .unveiling-about .about-back {
    height: 700px;
  }

  .section-title {
    font-size: 1.6rem;
    margin: auto;
  }

  .con-title {
    padding: 0rem 1rem;
  }

  .section-subtitle {
    font-size: 1rem;
    text-align: center;
  }

  .full-videos .video-back-elevate {
    height: 100vh;
  }

  .main-banner .carousel-inner {
    height: 100vh;
  }

  .main-banner .carousel-inner .carousel-item {
    height: 100%;
  }

  .cust-slider {
    height: 600px;
  }

  .overview-iconic {
    padding: 1.5rem 0;
    max-width: 95%;
    margin: auto;
  }

  .ban-text {
    bottom: unset;
    left: 50%;
    top: 50%;
  }

  .ban-text2 {
    bottom: unset;
    left: 50%;
    top: 55%;
  }

  .line {
    top: 14%;
  }

  .line2 {
    bottom: 15%;
  }


  .leader-video .leader-back {
    height: 600px;
  }

  .line3 {
    top: 8%;
  }

  .line4 {
    bottom: 7%;
  }

  .overview-iconic3 {
    padding: 1.5rem 0;
    max-width: 95%;
    margin: auto;
  }

  .config-box {
    padding: 2rem;
    min-width: 90%;
    top: 43%;
  }

  .ban-text::after {
    width: 20px;
  }

  .ban-text::before {
    width: 20px;
  }

  .about-text {
    bottom: -5%;
  }

  .glass-box {
    width: 405px;
    height: 400px;
  }

  .video-content-wrapper {
    width: unset;
  }

}

@media only screen and (max-width: 576px) {
  .line3 {
    top: 8%;
  }

  .about-text {
    bottom: -17%;
  }

  .line4 {
    bottom: 13%;
  }

  .config-box {
    padding: 2rem;
    min-width: 90%;
    top: 50%;
  }

  .glass-box {
    width: 400px;
    height: 400px;
  }

  .video-content-wrapper {
    width: unset;
  }
}

.project-carousel .owl-nav {
  gap: 1rem;
}

.project-carousel .arrow {
  height: 80px;
  width: 80px;
}

.project-carousel .owl-dots button {
  width: 15px;
  height: 15px;
}


.invalid-feedback {
  color: #fff !important;
}

.checkbox-label {
  font-size: 1rem;
  text-transform: capitalize;
  font-weight: 400;
  font-style: normal;
}

.form-check-input {
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 213, 141, 0.12);
  background-color: #A62F3C;
}

.form-check-input.is-valid:checked, .was-validated .form-check-input:valid:checked {
  background-color: var(--bs-form-valid-color);
}

/* *********chatbot css */
#kenytChatBubble.style1 {
  bottom: 10% !important;
}