:root {
  --primary-color: #dead3c;
  --bg-light-grey: #f8f8f8;
  --bg-dark-grey: #707070;
  --theme-primary-color: #2a2a2a;
}

* {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  box-sizing: border-box;
}

html,
body {
  width: 100vw;
}

::-webkit-scrollbar {
  width: 7.5px;
}

::-webkit-scrollbar-thumb {
  background: #dead3c;
}

.highlights *::-webkit-scrollbar {
  display: none;
}

:focus-visible {
  outline: none !important;
}

:focus {
  box-shadow: none !important;
}

button:focus,
input:focus {
  border: 1px solid #1a1a1a;
}

@font-face {
  font-family: BuenosAires;
  src: url(../fonts/BuenosAires-Thin.ttf);
  font-weight: 100;
  font-display: swap;
}

@font-face {
  font-family: BuenosAires;
  src: url(../fonts/BuenosAires-Light.ttf);
  font-weight: 200;
  font-display: swap;
}

@font-face {
  font-family: BuenosAires;
  src: url(../fonts/BuenosAires-Book.ttf);
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: BuenosAires;
  src: url(../fonts/BuenosAires-Regular.ttf);
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: BuenosAires;
  src: url(../fonts/BuenosAires-SemiBold.ttf);
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: BuenosAires;
  src: url(../fonts/BuenosAires-Bold.ttf);
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: BuenosAires;
  src: url(../fonts/BuenosAires-Black.ttf);
  font-weight: 900;
  font-display: swap;
}

input,
textarea,
button,
select,
option {
  font-family: BuenosAires !important;
  font-weight: 400;
}

input::placeholder {
  font-family: BuenosAires !important;
  font-weight: 400;
}

p,
a,
label,
span {
  font-family: BuenosAires;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 0px;
  text-decoration: none;
}

:focus,
:focus-visible {
  outline: none;
  box-shadow: none;
}

a:hover {
  color: unset;
  text-decoration: none;
}

ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.title-main {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  gap: 10px;
}

h2.title {
  font-family: BuenosAires;
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 0px;
  text-transform: capitalize;
}

h3.sub-title {
  font-size: 25px;
  font-weight: 400;
}

.title-desc {
  font-size: 14px;
  font-weight: 350;
}

.title-span {
  color: var(--primary-color);
  font-size: inherit;
  font-weight: inherit;
  text-wrap: nowrap;
}

.side-space {
  padding-left: 6%;
  padding-right: 6%;
}

.space-between {
  padding-top: 70px;
  padding-bottom: 70px;
}

.space-between-short {
  padding-top: 0px;
  padding-bottom: 0px;
}

.container-fluid {
  padding: 0px;
}

.light-bg {
  background-color: var(--bg-light-grey);
}

.dark-bg {
  background-color: var(--bg-dark-grey);
}

/* Header CSS: Start */
#header {
  background: #fff;
  position: fixed;
  width: 100vw;
  z-index: 999;
}

.header-hidden {
  transform: translateY(-100%);
}

.header-visible {
  transform: translateY(0);
}

.mobile-menu {
  display: none;
}

.logo {
  width: auto;
  text-align: center;
  position: relative;
  margin: 10px 0px;
}

.logo img {
  width: auto;
  height: 75px;
  float: left;
}

.menu-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.menu-list-item a {
  color: #000;
  transition: 0.3s all ease;
  font-weight: 300;
  text-wrap: nowrap;
}

.menu-list-item a.active,
.menu-list-item a:hover {
  text-shadow: #1a1a1a;
  color: var(--primary-color);
}

.vtp-btn {
  color: #343434;
  background-color: var(--primary-color);
  padding: 8px 14px;
  gap: 5px;
  text-transform: capitalize;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  width: fit-content;
  margin: 0 auto;
  border: none;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  transition: 0.3s all ease;
}

.vtp-btn::before,
.vtp-btn::after {
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 100%;
}

.vtp-btn::before {
  content: "";
  background: #000;
  width: 120%;
  height: 0;
  padding-bottom: 120%;
  top: -110%;
  left: -10%;
  border-radius: 50%;
  transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}

.vtp-btn::after {
  content: "";
  background: #000;
  transform: translate3d(0, -100%, 0);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.vtp-btn span {
  display: flex;
  color: #343434;
  align-items: center;
  gap: 5px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 10;
}

.vtp-btn:hover span,
.vtp-btn:hover svg g path {
  fill: #fff;
  color: #fff;
  animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

#Overview .vtp-btn:hover span,
#Overview .vtp-btn:hover svg g path {
  fill: unset;
  color: unset;
  animation: unset;
}

@keyframes MoveScaleUpInitial {
  to {
    transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }
}

@keyframes MoveScaleUpEnd {
  from {
    transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.vtp-btn:hover::before {
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.vtp-btn:hover::after {
  transform: translate3d(0, 0, 0);
  transition-duration: 0.05s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}

form .vtp-btn {
  padding: 12px 30px;
  border-radius: 45px;
}

.desktop-menu {
  position: relative;
}

.header-bg {
  position: absolute;
  top: 23%;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(7px);
  background: #00000073;
  height: 53%;
  width: 100%;
  border-radius: 30px;
  display: none;
  align-items: center;
  z-index: -1;
}

ul.right-menu {
  margin-right: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Header CSS: End */

#Banner {
  overflow: hidden;
}
form#contact_form {
  overflow: hidden;
}

.banner img {
  width: 100%;
  object-fit: cover;
  object-position: top;
  height: auto;
}

@media (min-width: 1025px) {
  .banner img {
    height: 100vh;
	height: auto;
    aspect-ratio: 16 / 8;
  }
}

.banner-slide {
  height: 100%;
  width: 100vw;
}

.banner-slide video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.owl-carousel .owl-item .mobile {
  display: none;
}

#Banner {
  height: 100vh;
}

@media (max-width: 552px) {
  #Banner {
    height: 100vh;
  }

  #Banner .mobile {
    height: 100vh;
	height: auto;
    aspect-ratio: 9 / 15;
  }
}

/* Banner END */

/* Overview START */

#Overview {
}

.overview-right {
  height: 575px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
}

.overview-right img {
  height: 85%;
  width: 83%;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
}

.overview-content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.overview-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 25px;
}

.overview-inner-img {
  width: 310px;
  height: 75px;
}

.overview-animate {
  width: 100%;
}

.text-rotator {
  position: relative;
  height: 175px;
  overflow: hidden;
}

.text-rotator::before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 2px;
  width: 10px;
  height: 3px;
  background: #dead3c;
}

.text-rotator ul {
  width: 100%;
  padding: 0;
  padding-left: 20px;
  margin: 0;
  list-style: none;
  position: relative;
  top: 0;
  transition: all 0.5s;
}

.text-rotator li {
  font-size: 21px;
  font-weight: 500;
  height: 35px;
  line-height: 35px;
  text-align: left;
  opacity: 0.5;
  transition: all 0.5s;
}

.text-rotator li.active {
  opacity: 1;
  color: #343434;
}

.text-rotator li.previous,
.text-rotator li.next {
  opacity: 0.4;
}

.text-rotator li.first,
.text-rotator li.last {
  opacity: 0.16;
}
/* new css */

/* Overview END */

/* Highlights START */
.highlights {
  position: relative;
  height: 100vh;
  transition: all 0.3s ease;
  overflow-y: hidden;
}

.highlights .title-main {
  position: sticky;
  top: 0px;
}

.highlights .highlights-bg {
  width: 550px;
  height: 500px;
  display: flex;
  justify-content: flex-end;
  border-radius: 15px;
  position: absolute;
  top: 100px;
  right: 6%;
  z-index: 2;
}

.highlights-bg img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlights-content {
  position: relative;
  z-index: 3;
  padding: 0 10px;
  margin: -10px 0px;
  width: 100%;
  height: 60vh;
  overflow-y: auto;
}

.highlights-box-wrapper {
  padding-bottom: 100px;
}

.highlights-box-wrapper .row {
  padding-top: 10px;
  row-gap: 25px;
}

.highlights-box {
  width: 235px;
  height: 175px;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  border-radius: 15px;
  box-shadow: 0px 2px 11px 0px #15151529;
  backdrop-filter: blur(1px);
  background: #fff;
  border: 1px solid var(--primary-color);
}

.highlights-text p {
  color: #000;
  text-align: center;
}

/* Highlights END */

/* Eleveate START */

.elevate {
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.elevate-desc {
  display: flex;
  justify-content: center;
  transition: 0.4s all ease;
}

.elevate-image {
  height: 550px;
  width: 100%;
  object-fit: cover;
  object-position: top;
  display: flex;
  align-items: flex-end;
}

.elevate-image img {
  height: auto;
  width: auto;
  max-height: 525px;
  object-fit: contain;
  object-position: top;
  transition: 0.4s all ease;
  transform: scaleY(0);
  opacity: 0;
}

.elevate-image.elevate-right img {
  margin-left: auto;
}

.animate .elevate-left img {
  transform-origin: bottom left;
  animation: growFromBottomLeft 1.75s forwards;
}

.animate .elevate-right img {
  transform-origin: bottom right;
  animation: growFromBottomRight 1.75s forwards;
}

@keyframes growFromBottomLeft {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes growFromBottomRight {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.elevate-desc .title-span {
  opacity: 0;
  width: 0;
  display: inline-block;
  overflow: hidden;
  line-height: 30px;
  white-space: nowrap;
}

.animate .elevate-desc .title-span {
  animation: typewriter 1s steps(20, end) forwards;
  animation-delay: 2s;
}

@keyframes typewriter {
  0% {
    opacity: 0;
    width: 0;
  }

  1% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    width: 100%;
  }
}

.elevate-inner-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  transition: 0.4s all ease;
}

.elevate-inner-title h2.title {
  text-transform: none;
}

.elevate-inner-title .title-span {
  opacity: 0;
  font-size: 48px;
  line-height: 60px;
  display: flex;
}

.elevate-inner-title .letter {
  color: var(--primary-color);
  transition: color 0.4s ease;
  font-size: 48px;
  line-height: 60px;
}

.elevate-inner-title .letter.glow {
  color: #dead3c77;
  text-shadow: #dead3c77;
}

.animate .elevate-inner-title .title-span {
  animation: fadeIn 1.5s forwards 3s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.elevate-inner-span-mob {
  display: none !important;
}

/* Eleveate END */

/* Gallery START */

.gallery {
  padding-right: 0px;
  position: relative;
  z-index: 1;
}

.gallery-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 3;
}

.gallery-nav {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
}

.gallery-nav .prev,
.gallery-nav .next {
  width: 45px;
  height: 30px;
  padding: 4px 10px;
  border-radius: 30px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gallery .item {
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

.gallery-slide {
  position: relative;
  height: 500px;
  width: 750px;
  overflow: hidden;
  border-radius: 15px;
  transition: all 8s ease;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.zoom-active.gallery-slide {
  height: 650px;
  width: 100%;
}

.zoom-active.gallery-slide a {
  display: flex;
  height: 100%;
  width: 100%;
}

.gallery-slide a {
  display: flex;
  height: 100%;
  width: 100%;
}

.gallery-slide img {
  border-radius: 15px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 8s ease;
}

.gallery-slide .gallery-desc {
  position: absolute;
  bottom: 0px;
  padding-bottom: 30px;
  padding-left: 30px;
  font-size: 30px;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 0 5px #1d1c1c94;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.75s ease, opacity 0.75s ease;
}

.gallery-slide.zoom-active .gallery-desc {
  transform: translateY(0);
  opacity: 1;
}

.gallery .owl-carousel .owl-stage-outer {
  overflow: visible;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.gallery .owl-item {
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.125, 0, 1, 1),
    opacity 0.6s cubic-bezier(0.125, 0, 1, 1);
}

.gallery .owl-item.active {
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.125, 0, 1, 1),
    opacity 0.6s cubic-bezier(0.125, 0, 1, 1);
}

/* Gallery END */

/* Amenities START */

.wrapper {
  width: 100%;
  margin-inline: auto;
  column-count: 3;
  gap: 20px;
  height: 100%;
}

.amenities-stick {
  display: flex;
  flex-direction: column;
  gap: 25px;
  transform: scale(0.6);
  transition: transform 1.5s ease;
}

.amenities-stick a {
  display: flex;
  height: 100%;
  width: 100%;
}

.image-lg {
  height: 500px;
}

.amenities-stick.rev.image-lg {
  height: 550px;
}

.image-sm {
  height: 400px;
}

.amenities-stick img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 1.5s ease;
}

.image-lg,
.image-sm {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 25px;
}

/* .amenities-stick.in-view.image-lg img,
.amenities-stick.in-view.image-sm img{
    transform: scale(1.2);
} */

.amenities-stick.in-view.image-lg,
.amenities-stick.in-view.image-sm {
  transform: scale(1);
}

.ame-desc {
  position: absolute;
  font-size: 25px;
  font-weight: 400;
  color: #ffffff;
  /* -webkit-text-stroke: 1px rgba(0, 0, 0, 0.6); */
  text-shadow: 0 0 10px #1a1a1a50;
  top: 0px;
  bottom: 0px;
  right: 20px;
  height: 100%;
  display: flex;
  transform: translateY(0px);
  padding: 20px 0px;
  transition: all 2s ease;
  transition-delay: 0.75s;
}

.amenities-stick.in-view .ame-desc {
  transform: translateY(85%);
}

/* Amenities END */

/* Project START */

.project ul.nav-pills {
  gap: 5px;
  justify-content: center;
}

.project button.nav-link {
  color: #1a1a1a;
  border: 1px solid;
  border-color: transparent;
  transition: all 0.3s ease !important;
  box-sizing: border-box;
}

.project button.nav-link:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.project button.nav-link.active {
  border: 1px solid;
  background-color: var(--primary-color);
}

.project button.nav-link.active:hover {
  color: #fff;
}

.project-slide {
  height: 500px;
  width: 700px;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}

.project-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}

.project-carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  margin: auto;
}

.project-carousel {
  display: flex;
  transition: transform 0.5s ease;
}

.project-carousel-item {
  min-width: 100%;
  width: 600px;
  height: 400px;
  box-sizing: border-box;
}

.project-carousel-item img {
  width: 100%;
  height: auto;
}

.tabs-main-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.large_amenities_section .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #313131;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: 0.3s all ease !important;
}

.large_amenities_section .nav-link {
  color: #313131;
  border: 1px solid;
  border-color: #313131;
  transition: 0.3s all ease !important;
}

.large_amenities_section .nav-link:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  transition: 0.3s all ease;
}

.large_amenities_section .nav-pills {
  transition: 0.3s all ease;
  gap: 15px;
}

.carousel-wrap .nav-link {
  border-radius: 40px;
}

.amenitiesCarousel .item img {
  height: 320px;
  border-radius: 10px;
  object-fit: cover;
}

.amenitiesCarousel .owl-item {
  transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
}

.amenitiesCarousel .owl-item.center-item {
  transform: scale(1.2);
  z-index: 10;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.7s ease-in-out;
}

.amenitiesCarousel .owl-item:not(.center-item) {
  transform: scale(1);
}

.amenitiesCarousel .owl-item:not(.center-item) .amenities-text-box {
  display: none;
}

.amenities-text-box {
  display: none;
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  transition: opacity 0.2ms ease-in-out;
}

.amenities-box {
  display: none;
  background-color: #d5aa48;
  width: 75%;
  padding: 5px;
}

.amenities-box p {
  color: #1a1a1a;
}

.owl-dots {
  position: relative;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  border: none !important;
}

#Banner .owl-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding-bottom: 25px;
  margin: 0px;
}

button.owl-dot {
  height: 8px;
  width: 8px;
  background: #000 !important;
  border-radius: 50%;
}

#Banner button.owl-dot {
  background: #fff !important;
}

#Banner button.owl-dot.active,
button.owl-dot.active {
  background-color: var(--primary-color) !important;
}

.master .item img {
  height: 320px;
  width: auto;
  margin: 0 auto;
  border-radius: 10px !important;
  object-fit: contain;
}

/* Project END */

/* Unit Plan start */
.unit-text {
  width: 70%;
}

.unit_plan_section {
  background-color: #f5f5f5;
}

.custom_width {
  width: 80%;
  margin: auto;
}

.unit-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  height: 400px;
  border-radius: 15px;
  position: relative;
  padding: 110px 4px;
  overflow: hidden;
}

.unit-container::before {
  content: "";
  background-image: url(../images/unit-img.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  z-index: -1;
  animation: unitzoomin 10s ease-in-out infinite;
}

@-webkit-keyframes unitzoomin {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes unitzoomin {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.unit-container-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

.unit-container-item p,
.unit-container-item span {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.unit-container-item .unit-BHK {
  font-size: 45px;
  font-weight: 700;
}

.unit-container-item .unit-price {
  font-size: 25px;
  font-weight: 600;
}

.gradient-border-plans {
  position: relative;
  height: 100%;
}

.gradient-border-plans::after {
  content: "";
  position: absolute;
  right: 0;
  width: 2px;
  height: calc(100% + 220px);
  border: 2px solid #ffffff;
  z-index: 1;
}
/* Bank Crousal start */

.over_brands {
  list-style: none;
  padding: 0;
  margin: 175px 0 0;
  margin: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  position: relative;
}

.marquee-content {
  display: flex;
  gap: 30px;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0px);
  }

  to {
    transform: translateX(-100%);
  }
}

.ob_li {
  flex-shrink: 0;
}

.ob_li img {
  height: 40px;
  object-fit: contain;
}

/* Bank Crousal End */
/* Unit Plan start */

/* About VTP Start*/
.about-main {
  background-image: url("../images/about-img.webp");
  background-size: cover;
  width: 100%;
  height: 593px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.about-text {
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0px 4px 20px 0px #00000026;
  width: 595px;
  height: 400px;
  padding: 65px 30px;
  position: absolute;
  transform: translateY(20);
  transition: opacity 0.5s ease, transform 0.5s ease, bottom 0.5s ease;
  margin-bottom: 12px;
}

.about-animation {
  opacity: 1;
  transform: translateY(0);
  bottom: 10px;
}

.about-text.initial {
  transform: translateY(20px);
  bottom: -50px;
}

/* Adbout VTP  Ends*/

/* Snapsht CSS: starts */
.grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.gradient-border {
  position: relative;
}

.gradient-border::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0px;
  height: 100%;
  border: 1px solid #34343433;
}

.grid-items .counter {
  font-weight: 700;
}

/* Snapsht CSS: Ends */

/* Location start*/
.location {
  position: relative;
}

.location .vtp-btn {
  position: absolute;
  bottom: 0px;
  right: 0px;
  margin-bottom: 100px;
  margin-right: 6%;
  padding: 8px 20px;
  border-radius: 45px;
}

.map-container {
  position: relative;
}

.location-item {
  margin-bottom: 20px;
}

.loc-main {
  display: flex;
  justify-content: end;
}

.location-item span {
  color: #dead3c;
  font-size: 18px;
  font-weight: 400;
  line-height: 25.21px;
  text-align: right;
}

.point {
  position: absolute;
  width: 15px;
  height: 15px;
}

.point-1 {
  top: 46px;
  left: 416px;
}

.point-2 {
  top: 127px;
  left: 337px;
}

.point-3 {
  top: 214px;
  left: 297px;
}

.point-4 {
  top: 317px;
  left: 288px;
}

.point-5 {
  top: 439px;
  left: 323px;
}

.point-6 {
  top: 531px;
  left: 402px;
}

.location-item p {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-align: right;
}

.location-item:nth-child(1) {
  animation-delay: 2s;
  position: absolute;
  top: 27px;
  left: 210px;
}

.location-item:nth-child(2) {
  animation-delay: 4s;
  position: absolute;
  top: 107px;
  left: 64px;
}

.location-item:nth-child(3) {
  animation-delay: 6s;
  position: absolute;
  top: 194px;
  left: 81px;
}

.location-item:nth-child(4) {
  animation-delay: 8s;
  position: absolute;
  top: 295px;
  left: 37px;
}

.location-item:nth-child(5) {
  animation-delay: 10s;
  position: absolute;
  top: 423px;
  left: 48px;
}

.location-item:nth-child(6) {
  animation-delay: 12s;
  position: absolute;
  top: 520px;
  left: 43px;
}

.location-map {
  width: 100%;
  max-width: 400px;
  margin-left: 40px;
}

.location-map img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.loc-img-main {
  border: 3px dashed #dead3c;
  padding: 24px;
  border-radius: 704px;
  height: 605px;
  width: 1058px;
  overflow: hidden;
}

.loc-mob-img {
  border: 3px dashed #dead3c;
  padding: 10px;
  border-radius: 704px;
  overflow: hidden;
}

.ellipse-ico {
  position: relative;
  margin-bottom: 15px;
}

.ellipse-ico span {
  color: #dead3c;
  font-size: 18px;
  font-weight: 400;
  line-height: 25.21px;
}

.ellipse-ico::before {
  position: absolute;
  content: "";
  background-image: url(../images/ellipse.png);
  background-repeat: no-repeat;
  background-size: 12px;
  height: 19px;
  width: 12px;
  top: 8px;
  /* transform: translateY(-50%); */
  left: -22px;
}

.loc-ul {
  padding-left: 8px;
}

.location-img {
  width: 100%;
  height: 100%;
  border-radius: 704px;
}

/* Location end */

/* Construction START */

.construction {
  background: #f5f5f5;
}

.construction-video {
  display: flex;
  justify-content: center;
  align-items: center;
}

.construction-video iframe {
  border-radius: 10px;
  height: 500px;
  width: 890px;
}

/* Construction END */

/* Philosophy section starts */

.philosophy-wrapper {
  height: 583px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: auto;
}

.philosophy_section_1,
.philosophy_section_2,
.philosophy_section_3 {
  height: 100%;
  width: 100%;
  flex-shrink: 0;
  position: sticky;
  top: 0;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.philosophy_section_1,
.philosophy_section_3 {
  background-color: #f8f8f8;
}

.philo-img {
  border-radius: 15px;
  max-height: 310px;
}

.philo-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  /* gap: 15px; */
}

span.philo-title {
  font-weight: 900;
  font-size: 45px;
  line-height: 63px;
  color: #dead3c;
  mix-blend-mode: luminosity;
}

/* Philo section 2  */
.philosophy_section_2 {
  background-color: #707070;
}

/* Philosophy section overlap css */

/* Philosophy section ends */

/* Promise section starts */
.promise_section {
  position: relative;
  overflow: hidden;
}

.zoomin {
  position: absolute;
  background-image: url(../images/promise/promisebg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-animation: zoomin 15s ease-in infinite;
  animation: zoomin 15s ease-in infinite;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

@-webkit-keyframes zoomin {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes zoomin {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }

  100% {
    transform: scale(1);
  }
}

.promise-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 125px;
}

.promise-grid-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.promise-icon {
  width: 40px;
  height: 40px;
}

.promise-txt {
  font-size: 18px;
  font-weight: 600;
  color: #dead3c;
}

.oav-desc p {
    text-transform: capitalize;
}

.promise-grid-item p {
  color: #fff;
}

/* Promise section ends */

/* Form section starts */
.form_section {
  position: relative;
}

.arch-1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -3;
}

.arch-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -3;
}

.enquire-form {
  background-color: #f8f8f8;
  padding: 40px;
  margin: auto;
  border-radius: 15px;
}

.form-custom {
  box-shadow: none;
  border: none;
  border-radius: 7px;
  border-bottom: 1px solid #dead3c;
  color: #343434;
  padding: 20px;
  appearance: auto;
}

.form-custom::placeholder {
  font-size: 14px;
  font-style: italic;
}

.form-custom:disabled,
.form-custom[readonly] {
  background-color: #fff;
  color: #343434;
  font-size: 14px;
  font-style: italic;
}

.form-custom:focus {
  box-shadow: none;
}

.monarque-map {
  height: 400px;
  width: 100%;
  border-radius: 15px;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .monarque-map {
    height: 300px;
  }
}

@media (max-width: 552px) {
  .monarque-map {
    height: 250px;
    margin-bottom: 0rem;
  }
}

/* Promise section ends */

/* Footer CSS: Start */

.footer-bottom {
  background: #f9f9f9;
  padding-top: 50px;
  padding-bottom: 15px;
  position: relative;
}

.footer-bottom img {
  background: #fff;
  display: block;
  margin: 0 auto;
  border-radius: 2px;
  height: 129px;
  width: 127px;
}

.qr-main {
  display: flex;
  justify-content: space-evenly;
}

.footer-bottom .qr_info {
  margin: 15px 0;
  text-align: center;
}

.footer-bottom a {
  color: #343434;
}

.footer-bottom hr {
  margin-bottom: 16px;
}

.footer-bottom-text-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-text-wrapper::after {
  content: "";
  position: absolute;
  top: -12px;
  right: 0px;
  width: 100%;
  height: 1px;
  background: #ffffff8f;
}

.border-next {
  position: relative;
  margin-right: 10px;
}

.form-custom {
  height: 50px;
}

.form-control:focus {
  border-color: #343434;
}

/* Footer CSS: End */

/* Mobile Menu CSS: Start */
ul.header-btn-mobile {
  display: none;
}

ul.header-btn-mobile a {
  text-decoration: none;
  letter-spacing: 0;
  color: #fff;
  text-transform: uppercase;
}

ul.header-btn-mobile li {
  position: relative;
}

ul.header-btn-mobile {
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 0px;
  background: #1a1a1a75;
  backdrop-filter: blur(2px);
  padding: 10px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  position: fixed;
  bottom: -1px;
  width: 100vw;
}

ul.header-btn-mobile li img {
  height: 18px;
  width: 18px;
}

.pre-con {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pre-con span {
  color: #fff;
  font-size: 12px !important;
  line-height: 16px !important;
}

a.pre-con svg {
  height: 35px;
  width: 18px;
}

.foot-btn {
  background: #3a333087;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 42px;
}

.foot-btn-sm {
  width: 40px;
}

.foot-btn-sm svg {
  height: 18px;
  width: 18px;
}

.foot-btn-lg {
  width: 125px;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px !important;
  font-weight: 300;
}

/* Mobile Menu CSS: End */

/* Fixed Btn Css: Start */

a.enquire-fixed {
  right: -40px;
  transform: rotate(270deg);
  top: 45%;
  position: fixed;
  z-index: 999;
  line-height: 20px !important;
  border-radius: 0px;
  padding: 10px 16px;
  box-shadow: 0 0 5px #1a1a1a75 !important;
}

.float-button-desktop {
  position: fixed;
  left: 35px;
  bottom: 30px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.float-button-desktop .whatsapp-icon img {
  height: 40px;
  width: 40px;
}

/* Fixed Btn Css: End */

/* Enquiry Modal CSS: Start */

#enquiry_form form input {
  padding: 10px 20px;
}

#form_wrapper .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

#form_wrapper .checkbox input[type="checkbox"] {
  margin-top: 4px;
}

form .form-group {
  margin-bottom: 10px !important;
}

.checkbox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-top: 10px;
}

.checkbox label {
  line-height: 14px;
  font-size: 11px;
}

#enquiry_form .modal-content {
  background-color: var(--bg-light-grey);
  border-radius: 15px;
}

.breadcrumb-custom a {
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.breadcrumb-custom a:hover {
  border-bottom: 1px solid var(--primary-color);
}

form .recaptcha_field {
  height: 0;
  width: 0;
  opacity: 0;
  padding: 0 !important;
}

.error {
  color: red;
}

/* Enquiry Modal CSS: End */

/* Unit Plans New */
.unit-plans {
  /* background: var(--primary-color); */
  background: #f5f5f5;
  position: relative;
}

/* .unit-plans .title-main * {
    color: #fff;
} */

.unit-bg {
  position: absolute;
  z-index: 2;
  bottom: 0px;
  object-fit: contain;
  height: 100%;
  width: auto;
  /* pointer-events: none; */
}

.unit-left {
  left: 0px;
}

.unit-right {
  right: 0px;
}

table.unit-table {
  width: 100%;
  position: relative;
  z-index: 3;
  background-color: #fff;
  border-radius: 10px;
}

table.unit-table thead {
  /* background-color: #151515; */
  background: linear-gradient(111deg, #5dc4ed 0%, #0c508b 100%);
  border-radius: 10px;
}

table.unit-table thead tr {
  border-radius: 10px;
}

.border-rr {
  border-radius: 0px 10px 0 0;
}

.border-lr {
  border-radius: 10px 0 0 0;
}

table.unit-table thead th {
  color: #fff;
  font-size: 18px;
  font-weight: normal;
}

table.unit-table th,
table.unit-table td {
  text-align: center;
  padding: 15px 0px;
}

table.unit-table tr {
  border-bottom: 1px solid #f5f5f5;
}

table.unit-table tbody tr td {
  padding: 5px 0px;
  font-weight: 600;
  font-size: 15px;
}

.cost-btn {
  border: none;
  font-size: 15px;
  color: #151515;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: fit-content;
  flex-wrap: nowrap;
  text-transform: uppercase;
  font-weight: 500 !important;
  margin: 0 auto;
  transition: 0.3s all ease;
}

.cost-btn svg {
  width: auto;
  height: 30px;
  transition: 0.3s all ease;
}

.cost-btn svg path {
  transition: 0.3s all ease;
}

.cost-btn.sold {
  cursor: not-allowed;
  color: red !important;
}

.cost-btn:hover,
.cost-btn:hover svg path {
  color: #cf9925;
  fill: #cf9925;
  stroke: #cf9925;
}

@media (max-width: 552px) {
  td button.header-btn {
    letter-spacing: 0.5px;
    padding: 5px;
  }

  table.unit-table .cost-btn {
    font-size: 11px !important;
    gap: 2px;
    padding: 0;
  }

  table.unit-table tbody tr td {
    text-wrap: nowrap;
  }

  table.unit-table thead th {
    font-size: 12px;
  }

  table.unit-table th {
    font-size: 12px;
  }

  table.unit-table tbody tr td {
    font-size: 11px;
  }
}

.box-cta .vtp-btn {
  border-radius: 0px;
  padding: 8px 24px;
}

.btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
}

@media (max-width: 552px) {
  div#enquiry_form .modal-dialog {
    margin-right: 25px;
    margin-left: 25px;
  }
}

.enq-btn {
  background: linear-gradient(111deg, #5dc4ed 0%, #0c508b 100%);
}

.enq-btn span {
  color: #fff;
}

.phn-pl-0 {
  padding-left: 0px;
}

.banner-slide img {
  object-fit: cover;
  object-position: center;
}

#township {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.township-row {
  row-gap: 50px;
}

.th-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 30px;
}

.township-highlights {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #2b2a6c;
  padding: 25px;
}

.township-ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.township-box {
  width: 100%;
  max-width: 250px;
  height: 100%;
  text-align: center;
  border-radius: 5px;
  gap: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.township-box p {
  text-align: center;
}

@media (max-width: 1024px) {
  .th-wrapper {
    gap: 50px;
  }
}

@media (max-width: 552px) {
  .township-row {
    row-gap: 30px;
  }

  .th-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .township-ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.unit-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 4;
}

.unit-title .text p {
  max-width: 90%;
}

.price-tag {
  background: #eadbc4;
  padding: 15px 10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-items: center;
  position: relative;
  width: 275px;
}

.price-tag::before,
.price-tag::after {
  content: "";
  z-index: 2;
  position: absolute;
  top: -1px;
  bottom: 0;
  height: 102%;
  width: 20px;
  background: url("../images/price-tag-elem.svg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}

.price-tag::before {
  right: -18px;
}

.price-tag::after {
  top: -1px;
  left: -18px;
  transform: scale(-1);
}

.tag-title {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tag-title .separator {
  width: 50%;
  height: 1px;
  background: #fff;
  margin: 2px 0px;
}

.price-tag p {
  font-size: 16px !important;
  width: 100%;
  text-align: center;
}

.price-tag p span {
  font-size: inherit !important;
  color: #000;
}

@media (max-width: 1024px) {
  .price-tag {
    width: 235px;
  }
}

@media (max-width: 991px) {
  .price-tag {
    width: 210px;
    right: 20px;
  }
}

@media (max-width: 552px) {
  .unit-title {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .unit-text,
  h2.title {
    width: 100%;
    text-align: center;
  }

  .price-tag {
    padding: 10px 5px;
    width: 165px;
    right: 0;
  }

  .price-tag p {
    font-size: 14px !important;
  }

  .price-tag::before,
  .price-tag::after {
    top: 0px;
    height: 100%;
  }

  .price-tag::before {
    right: -15px;
  }

  table.unit-table {
    margin-top: 1rem;
  }
}

/* Only vtp */
#brand_onlyvtp {
  height: auto;
  width: 100%;
  aspect-ratio: 16/3;
}

.brand_img_container {
  width: 100%;
  height: 100%;
}

.brand_img_container img {
  width: 100%;
  height: 100%;
}

@media (max-width: 552px) {
  #brand_onlyvtp {
    aspect-ratio: 1;
  }
}

.walkthrough_content_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

#youtubeiframe .equal-title {
  display: flex;
  gap: 30px;
  align-items: start;
}

.construction {
  background: url("/images/general/body-bg.webp");
}

.construction-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.frame-wrapper {
  display: flex;
  width: 100%;
  position: relative;
  padding: 0px 15px;
  margin-bottom: 15px;
}

.frame-wrapper::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 15px;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 3px;
  border-style: solid;
  border-radius: 15px;
  border-top: none;
  border-color: black;
}

.frame-wrapper iframe {
  position: relative;
  z-index: 2;
  border-radius: 15px;
}

#video {
  height: 100%;
  width: 100%;
  box-shadow: 0 0 10px #1a1a1a50;
  border-radius: 15px;
}

.youtube-placeholder {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.youtube-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
  box-shadow: 0 0 10px #1a1a1a50;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  background: rgb(255 255 255);
  color: white;
  border-radius: 50%;
  padding: 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
}

@media (max-width: 1199px) {
  /* #construction iframe {
        height: 260px;
    } */

  .frame-wrapper {
    width: 100%;
  }

  #video {
    /* height: 280px;
        width: 550px; */
  }
}

@media (max-width: 992px) {
  #video {
    /* height: 300px;
        width: 100%; */
  }
}
@media (max-width: 768px) {
  .float-button-desktop {
    bottom: 90px;
    left: unset;
    right: 30px;
  }

  .float-button-desktop .whatsapp-icon {
    display: none;
  }
}
@media (max-width: 767px) {
  /* #construction iframe {
        width: 100%;
    } */

  #construction h2 {
    font-size: 25px;
    padding-bottom: 2px;
  }

  #video {
    /* height: 245px; */
    /* width: 100%; */
    margin-top: 0px;
  }

  .frame-wrapper::before {
    top: 10px;
    left: 0px;
    width: 100%;
  }
}




.enquire-form{
  position: relative;
}


.nextBtn{
  background: linear-gradient(90deg, #a2712f, #e7a83d 49.5%, #a2712f);
  margin: auto;
  padding: 9px 20px;
  border-radius: 50px;
  width: 100px;
  border: none;
  color: #fff;
}


.backBtn {
  border: 1px solid rgb(185, 147, 90);
  color: rgb(185, 147, 90);
  background: transparent;
  border-radius: 50px;
  height: 25px;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  position: absolute;
  top: 50px;
  left: 30px;
  padding: 0;
  padding-bottom: 1px;
}

.modal-body .backBtn{
  top: -10.5vh;
}

.backBtn:hover{
  background: linear-gradient(90deg, #a2712f, #e7a83d 49.5%, #a2712f);
}

.option-selector{
  /* padding: 30px; */
  display: flex;
  flex-direction: column;
}

.option-selector .form-check-label{
  font-size: 13px;
}


.option-selector .form-check-input{
  height: 1.6rem;
  width: 1.6rem;
  border-radius: 50%;
  border: 1px solid #E7A83D;
  flex-shrink: 0;
}

.option-selector .form-check-input:checked {
  background-color: #DB9E3B !important;
  border-color: #673828 !important; 
}

.modal-body ul{
  padding: inherit;
  list-style: disc;
}

.option-selector h5{
    color: #DB9E3B;
    font-weight: 600;
    margin: 10px 0px;
}
