body,
button {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif
}

.bannerIntroText,
.offerText {
  text-transform: capitalize;
  letter-spacing: normal
}

.headerLink,
.map-link-text,
.visually-hidden {
  white-space: nowrap
}

.aboutSection .floorPlanSectionTitle,
.bannerMainTitle,
.bannerPrice,
.price-title,
.quoteTitle,
.tourHeading {
  -webkit-text-fill-color: transparent
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

body {
  background-color: #000;
  color: #fff
}

.mainHeader {
  background: linear-gradient(135deg, #ffffff 0, #ffffff 100%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.headerContainer {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px
}

.headerLogo {
  display: flex;
  align-items: center
}

.headerLogo img {
  height: 60px;
  width: auto
}

.burgerMenu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001
}

.burgerMenu span {
  width: 28px;
  height: 3px;
  background-color: #060612;
  margin: 4px 0;
  transition: .4s cubic-bezier(.25, .46, .45, .94);
  border-radius: 2px;
  transform-origin: center
}

.burgerMenu.active span:first-child {
  transform: rotate(-45deg) translate(-6px, 7px)
}

.burgerMenu.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.burgerMenu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -7px)
}

.headerNav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
  margin: 0 50px
}
@media (max-width:1280px) {
  .headerNav {
    gap: 10px;
    margin: 0 20px;
  }
}

.headerLink {
  color: #c2892e;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
  transition: color .3s
}

.headerLink:hover {
  color: #4dd4ac
}

.headerContactSection {
  display: flex;
  align-items: center;
  gap: 15px
}

.headerContact,
.headerWhatsapp {
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  color: #fff;
  transition: .3s;
  text-decoration: none
}

.headerContact {
  background-color: rgba(255, 255, 255, .15)
}

.headerWhatsapp {
  background: linear-gradient(135deg, #25d366 0, #1ebe57 100%)
}

.headerContact:hover {
  background-color: rgba(255, 255, 255, .25);
  transform: translateY(-2px)
}

.headerWhatsapp:hover {
  background: linear-gradient(135deg, #1ebe57 0, #25d366 100%);
  transform: translateY(-2px)
}

.bannerSectionMain {
  width: 100%;
  background: linear-gradient(135deg, #0a1828 0, #152838 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  overflow-x: hidden
}

.bannerCarouselContainer {
  display: flex;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  height: auto;
  align-items: stretch
}

.bannerImageSection {
  flex: 0 0 75%;
  position: relative;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0
}

.bannerImageContainer {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center
}

/* .bannerImageContainer::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56.25%;
  flex: none
} */

.bannerSlides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden
}

.bannerSlide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none
}

.bannerSlide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateZ(0)
}

.bannerSlide picture,
.bannerSlide img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block
}

.bannerNav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 24, 40, .45);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  z-index: 3
}

.bannerNav:hover {
  background: rgba(10, 24, 40, .75);
  transform: translateY(-50%) scale(1.05)
}

.bannerPrev {
  left: 16px
}

.bannerNext {
  right: 16px
}

.bannerDots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 10px;
  z-index: 3;
  pointer-events: none
}

.bannerDots.has-multiple {
  display: flex
}

.bannerDot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: all .3s ease;
  pointer-events: auto
}

.bannerDot.active {
  background: #e5b973;
  transform: scale(1.1)
}

.bannerPropertyImage
/* ,.map-image-container img  */
, .map-image-container iframe
{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.bannerImageSection:hover .bannerPropertyImage::-webkit-media-controls-panel {
  display: none !important;
}

.bannerImageSection:hover .bannerPropertyImage::-webkit-media-controls-play-button {
  display: none !important;
}

.bannerImageSection:hover .bannerPropertyImage::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.bannerImageSection:hover .bannerPropertyImage::-webkit-media-controls-enclosure {
  display: none !important;
}

.bannerImageSection:hover .bannerPropertyImage::-webkit-media-controls {
  display: none !important;
}

.bannerContentSection {
  flex: 0 0 25%;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #0a1828 0, #152838 100%);
  color: #fff;
  min-height: 100%;
  align-self: stretch
}

.amenitiesDownload,
.bannerIntroSection,
.galleryDownload {
  text-align: center
}

.bannerIntroText {
  font-size: 16px;
  color: #e8eef3;
  font-weight: 400;
  margin-bottom: 12px
}

.bannerMainTitle {
  font-size: 36px;
  font-weight: 700;
  margin: 8px 0;
  background: linear-gradient(135deg, #e5b973 0, #e5b973 50%, #e5b973 100%);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.1
}

.bannerSubtitleText {
  font-size: 16px;
  margin: 6px 0;
  color: #e8eef3;
  font-weight: 400
}

.bannerDescriptionSection {
  margin-bottom: 20px;
  text-align: center
}

.bannerPropertyDescription {
  font-size: 16px;
  margin: 0;
  color: #e8eef3;
  line-height: 1.5;
  font-weight: 400
}

.bannerPrice {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #e5b973 0, #e5b973 50%, #e5b973 100%);
  -webkit-background-clip: text;
  background-clip: text;
  display: block;
  margin-top: 8px;
  line-height: 1.2
}

.bannerOfferSection {
  margin: 10px 0;
  text-align: center
}

.bannerOffer {
  background: linear-gradient(135deg, rgba(229, 185, 115, .15) 0, rgba(229, 185, 115, .15) 100%);
  border: 2px solid rgba(229, 185, 115, .3);
  border-radius: 12px;
  padding: 15px 20px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: .3s
}

.bannerOffer:hover {
  border-color: rgba(229, 185, 115, .5);
  background: linear-gradient(135deg, rgba(229, 185, 115, .2) 0, rgba(229, 185, 115, .2) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 185, 115, .3)
}

.bannerOffer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
  animation: 3s infinite shimmer
}

@keyframes shimmer {
  0% {
    left: -100%
  }

  100% {
    left: 100%
  }
}

.offerText {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #e5b973;
  margin-bottom: 5px
}

.quoteCheckboxWrapper,
.quotePhoneWrapper {
  display: flex;
  gap: 12px
}

.quoteForm {
  background: linear-gradient(135deg, rgba(10, 24, 40, .8) 0, rgba(21, 40, 56, .8) 100%);
  padding: 20px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4)
}

.quoteTitle {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #e5b973 0, #e5b973 50%, #e5b973 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-align: center
}

.quoteSubTitle {
  font-size: 14px;
  margin-bottom: 15px;
  color: #b8c5d0;
  text-align: center;
  font-weight: 400
}

.quoteInput,
.quotePhoneInput,
.quoteSelect {
  width: 100%;
  padding: 10px 12px;
  margin: 8px 0;
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .95);
  color: #333;
  font-size: 13px;
  transition: .3s;
  font-family: inherit
}

.quotePopupClose,
.quoteSubmit {
  border: none;
  transition: .3s;
  cursor: pointer
}

.quoteInput:focus,
.quotePhoneInput:focus,
.quoteSelect:focus {
  border-color: #e5b973;
  outline: 0;
  box-shadow: 0 0 0 4px rgba(229, 185, 115, .15);
  background: #fff
}

.quoteSelect {
  flex: 0 0 40%;
  cursor: pointer
}

.quotePhoneInput {
  flex: 1
}

.quoteCheckboxWrapper {
  color: #b8c5d0;
  align-items: flex-start;
  margin: 8px 0;
  font-size: 9px;
  line-height: 1.5
}

.highlightsList li,
.overviewDescription {
  line-height: 1.8;
  color: #e8eef3;
  font-size: 16px
}

.quoteCheckboxWrapper input[type=checkbox] {
  margin-top: 4px;
  width: 14px;
  height: 14px;
  cursor: pointer
}

.quoteCheckboxWrapper a {
  color: #4dd4ac;
  text-decoration: none
}

.quoteCheckboxWrapper a:hover {
  text-decoration: underline
}

.quoteSubmit {
  width: 100%;
  padding: 10px 25px;
  background: linear-gradient(135deg, #e5b973 0, #e5b973 50%, #e5b973 100%);
  color: #0a1828;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 6px;
  box-shadow: 0 4px 15px rgba(229, 185, 115, .3);
  position: relative;
  overflow: hidden
}

.amenitiesDownloadBtn::before,
.floorPlanCta::before,
.galleryDownloadBtn::before,
.map-cta::before,
.overviewBrochureButton::before,
.price-get-details::before,
.quoteSubmit::before,
.requestButton::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  animation: 3s infinite shimmer
}

.amenitiesDownloadBtn:hover,
.floorPlanCta:hover,
.galleryDownloadBtn:hover,
.map-cta:hover,
.overviewBrochureButton:hover,
.quoteSubmit:hover,
.requestButton:hover {
  background: linear-gradient(135deg, #e5b973 0, #e5b973 50%, #e5b973 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(229, 185, 115, .5)
}

.floorPlanCta:active,
.map-cta:active,
.overviewBrochureButton:active,
.price-get-details:active,
.quoteSubmit:active,
.requestButton:active {
  transform: translateY(-1px)
}

.quoteIcon {
  margin-right: 10px;
  font-size: 20px
}

.quotePopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(5px)
}

.quotePopupOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer
}

.quotePopupContent {
  position: relative;
  background: linear-gradient(179deg, #fffef342 0, #00183682 100%);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  border: 1px solid rgba(255, 255, 255, .1);
  animation: .3s ease-out popupSlideIn
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: scale(.8) translateY(-50px)
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0)
  }
}

.quotePopupClose {
  position: absolute;
  top: 15px;
  right: 15px;
  background: 0 0;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px
}

.quotePopupClose:hover {
  background: rgba(255, 255, 255, .2)
}

.quotePopup .quoteForm {
  background: 0 0;
  padding: 0;
  border: none;
  box-shadow: none
}

.quotePopup .quoteTitle {
  font-size: 28px;
  margin-bottom: 8px;
  text-align: center
}

.quotePopup .quoteSubTitle {
  font-size: 16px;
  margin-bottom: 30px;
  text-align: center
}

.quotePopup .quoteInput,
.quotePopup .quotePhoneInput,
.quotePopup .quoteSelect {
  font-size: 16px;
  margin: 12px 0;
  padding: 10px 25px
}

.quotePopup .quoteSubmit {
  margin-top: 20px;
  font-size: 15px;
  padding: 10px 25px
}

.overviewSection {
  background: linear-gradient(135deg, #0a1828 0, #152838 100%);
  padding: 80px 0
}

.overviewContainer {
  margin: 0 auto;
  padding: 0 40px;
  width: 100%
}

.overviewDescriptionSection {
  margin-bottom: 60px;
  text-align: center
}

.overviewContent {
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 500px
}

.overviewTextSection {
  flex: 1;
  padding-right: 20px
}

.amenitiesTitle,
.galleryTitle,
.highlightsTitle,
.map-title,
.overviewTitle {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #e5b973 0, #e5b973 50%, #e5b973 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative
}

.overviewDescription {
  margin-bottom: 40px;
  text-align: justify
}

.highlightsList {
  list-style: none;
  margin-bottom: 40px
}

.highlightsList li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative
}

.highlightsList li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #e5b973;
  font-weight: 700;
  font-size: 20px
}

.overviewBrochureButton {
  background: linear-gradient(135deg, #e5b973 0, #e5b973 50%, #e5b973 100%);
  color: #0a1828;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
  box-shadow: 0 4px 15px rgba(229, 185, 115, .3);
  display: block;
  margin: 0 auto;
  position: relative;
  overflow: hidden
}

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

.overviewImage {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
  border: 2px solid rgba(229, 185, 115, .2);
  transition: transform .3s
}

.amenitiesSlide:hover,
.gallerySlide:hover,
.overviewImage:hover,
.videoThumbnail:hover {
  transform: scale(1.02)
}

.amenitiesSection,
.floorPlanSection,
.gallerySection,
.priceSection {
  background: linear-gradient(135deg, #0a1828 0, #152838 100%);
  padding: 80px 0;
  opacity: 0;
  transform: translateY(50px);
  transition: .8s ease-out
}

.amenitiesSection.is-visible,
.floorPlanSection.is-visible,
.gallerySection.is-visible,
.priceSection.is-visible {
  opacity: 1;
  transform: translateY(0)
}

.amenitiesContainer,
.galleryContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%
}

.amenitiesCarousel,
.galleryCarousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
  margin-bottom: 40px
}

.amenitiesTrack {
  display: flex;
  transition: transform .5s ease-in-out;
  will-change: transform;
  width: 600%
}

.amenitiesSlide {
  width: 16.666%;
  position: relative;
  cursor: pointer;
  transition: transform .3s
}

@media (max-width:1024px) {

  .headerContainer,
  .overviewContainer {
    padding: 0 30px
  }

  .headerNav {
    /* gap: 25px */
    /* display: none; */
  }
  .burgerMenu {
    display: flex
  }
  .headerContactSection {
    display: none
  }
  .headerNav.active,
  .headerNav.active .headerLink {
    opacity: 1;
    transform: translateY(0)
  }
  .headerNav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0a1828 0, #152838 100%);
    flex-direction: column;
    padding: 30px 20px;
    gap: 25px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: .5s cubic-bezier(.25, .46, .45, .94);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .6);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    margin: 0;
    backdrop-filter: blur(10px)
  }

  .headerNav.active {
    visibility: visible
  }

  .headerLink {
    font-size: 15px
  }

  .overviewContent {
    gap: 40px
  }

  .overviewTitle {
    font-size: 42px
  }

  .highlightsTitle {
    font-size: 32px
  }

  .amenitiesTrack {
    width: 100%
  }

  .amenitiesSlide {
    flex: 0 0 100%;
    width: 100%
  }
}

@media (min-width:1025px) {
  .amenitiesCarousel {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px
  }

  .amenitiesNext,
  .amenitiesPrev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10
  }

  .amenitiesTrack {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px
  }

  .amenitiesSlide {
    width: calc(33.333% - 14px);
    flex-shrink: 0;
    margin: 0
  }

  .amenitiesPrev {
    left: 10px
  }

  .amenitiesNext {
    right: 10px
  }
}

.amenitiesImageContainer {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden
}

.amenitiesImage,
.galleryImage,
.price-floor-plan img,
.tourImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s
}

.amenitiesLightboxClose:hover,
.amenitiesSlide:hover .amenitiesImage,
.galleryLightboxClose:hover,
.gallerySlide:hover .galleryImage,
.mobileBottomBar a:hover {
  transform: scale(1.1)
}

.amenitiesTextOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .8));
  color: #fff;
  padding: 30px 20px 20px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, .8)
}

.amenitiesDownloadBtn,
.amenitiesNext,
.amenitiesPrev,
.galleryDownloadBtn,
.requestButton {
  color: #0a1828;
  box-shadow: 0 4px 15px rgba(229, 185, 115, .3);
  transition: .3s;
  cursor: pointer
}

.amenitiesNext,
.amenitiesPrev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(229, 185, 115, .9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 10
}

.amenitiesPrev,
.galleryPrev {
  left: 20px
}

.amenitiesNext,
.galleryNext {
  right: 20px
}

.amenitiesNext:hover,
.amenitiesPrev:hover,
.galleryNext:hover,
.galleryPrev:hover {
  background: #e5b973;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(229, 185, 115, .5)
}

.amenitiesDownloadBtn,
.galleryDownloadBtn,
.requestButton {
  background: linear-gradient(135deg, #e5b973 0, #e5b973 50%, #e5b973 100%);
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  overflow: hidden
}

.amenitiesLightbox,
.galleryLightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(10px)
}

.amenitiesLightbox.active,
.galleryLightbox.active {
  display: flex
}

.amenitiesLightboxContent,
.galleryLightboxContent {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center
}

.amenitiesLightboxImage,
.galleryLightboxImage {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .5)
}

.floorPlanCta,
.galleryNext,
.galleryPrev,
.price-get-details {
  box-shadow: 0 4px 15px rgba(229, 185, 115, .3)
}

.amenitiesLightboxClose,
.galleryLightboxClose {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(229, 185, 115, .9);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: .3s
}

.amenitiesLightboxNext,
.amenitiesLightboxPrev,
.galleryLightboxNav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(229, 185, 115, .9);
  border: none;
  color: #0a1828;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: .3s
}

.map-dropdown-btn,
.price-row {
  justify-content: space-between
}

.amenitiesLightboxPrev,
.galleryLightboxPrev {
  left: 5px
}

.amenitiesLightboxNext,
.galleryLightboxNext {
  right: 5px
}

.amenitiesLightboxNext:hover,
.amenitiesLightboxPrev:hover,
.galleryLightboxNav:hover {
  background: #e5b973;
  transform: translateY(-50%) scale(1.1)
}

.amenitiesLightboxTitle {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, .8)
}

.amenitiesLightboxCounter {
  position: absolute;
  background: #e5b973;
  top: 5px;
  left: 5px;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 4px 12px;
  border-radius: 20px
}

.price-card::before,
.price-title {
  background: linear-gradient(135deg, #e5b973 0, #e5b973 50%, #e5b973 100%)
}

.price-heading-container {
  text-align: center;
  margin-bottom: 30px
}

.price-title {
  font-size: 36px;
  font-weight: 700;
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
  margin: 0
}

.price-container {
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  gap: 30px;
  place-content: center;
}

.price-card {
  background: rgba(255, 255, 255, .05);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(229, 185, 115, .2);
  transition: .3s;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px
}

.floorPlanCard:hover,
.price-card:hover {
  transform: translateY(-10px);
  border-color: rgba(229, 185, 115, .5);
  box-shadow: 0 20px 40px rgba(229, 185, 115, .2)
}

.price-floor-plan {
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  height: 200px
}

.aboutSectionQr img:hover,
.floorPlanCard:hover img,
.price-card:hover .price-floor-plan img,
.videoThumbnail:hover .tourImage {
  transform: scale(1.05)
}

.price-details {
  color: #fff
}

.price-row {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  line-height: 2
}

.connectivity-item:last-child,
.price-row:last-child {
  border-bottom: none
}

.price-label {
  font-size: 16px;
  font-weight: 500;
  color: #b8c5d1
}

.price-value {
  font-size: 16px;
  font-weight: 600;
  color: #fff
}

.price-value.highlight {
  color: #e5b973;
  font-size: 18px;
  font-weight: 700
}

.price-get-details,
.price-get-details:hover {
  background: linear-gradient(135deg, #e5b973 0, #e5b973 50%, #e5b973 100%);
  color: #0a1828
}

.price-get-details {
  text-decoration: none;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 16px;
  transition: .3s;
  display: inline-block;
  position: relative;
  overflow: hidden;
  border: none
}

.price-get-details:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(229, 185, 115, .5)
}

.galleryLightboxTitle,
.galleryTextOverlay {
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, .8);
  text-align: center
}

.galleryTrack {
  display: flex;
  transition: transform .5s ease-in-out;
  will-change: transform;
  width: 700%
}

.gallerySlide {
  width: 14.285%;
  position: relative;
  cursor: pointer;
  transition: transform .3s
}

@media (max-width:1024px) {
  .amenitiesContainer {
    padding: 0 30px
  }

  .amenitiesTitle,
  .price-title {
    font-size: 42px
  }

  .amenitiesImageContainer {
    height: 350px
  }

  .price-container {
    padding: 0 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px
  }

  .price-floor-plan {
    height: 180px
  }

  .galleryTrack {
    width: 100%
  }

  .gallerySlide {
    width: 100%;
    flex: 0 0 100%
  }
}

@media (min-width:1025px) {
  .galleryCarousel {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px
  }

  .galleryNext,
  .galleryPrev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10
  }

  .galleryTrack {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px
  }

  .gallerySlide {
    width: calc(33.333% - 14px);
    flex-shrink: 0;
    margin: 0
  }

  .galleryPrev {
    left: 10px
  }

  .galleryNext {
    right: 10px
  }
}

.galleryImageContainer {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden
}

.galleryTextOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .8));
  color: #fff;
  padding: 30px 20px 20px;
  font-size: 24px;
  display: none
}

.galleryNext,
.galleryPrev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(229, 185, 115, .9);
  border: none;
  color: #0a1828;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: .3s;
  z-index: 1000;
  pointer-events: auto
}

.galleryLightboxTitle {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 24px;
  display: none
}

.galleryLightboxCounter {
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: #e5b973;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 4px 12px;
  border-radius: 20px
}

@media (max-width:1024px) {
  .galleryContainer {
    padding: 0 30px
  }

  .galleryTitle {
    font-size: 42px
  }

  .galleryImageContainer {
    height: 350px
  }
}

.floorPlanSectionTitle {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #e5b973;
  margin-bottom: 30px;
  position: relative
}

.floorPlanCarousel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px
}

.floorPlanSlides,
.floorPlanSlidesContainer {
  display: contents
}

.floorPlanCard {
  background: rgba(255, 255, 255, .05);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(229, 185, 115, .2);
  transition: .3s;
  position: relative;
  overflow: hidden
}

.floorPlanCard::before,
.floorPlanOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px
}

.floorPlanCard::before {
  content: '';
  background: linear-gradient(135deg, rgba(229, 185, 115, .1) 0, rgba(229, 185, 115, .05) 100%);
  z-index: -1
}

.floorPlanCard img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: transform .3s
}

.floorPlanCard h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 15px
}

.floorPlanOverlay {
  background: rgba(0, 0, 0, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s
}

.floorPlanButton,
.floorPlanButton:hover {
  background: linear-gradient(135deg, #e5b973 0, #e5b973 100%)
}

.floorPlanCard:hover .floorPlanOverlay,
.map-image-container:hover .map-overlay {
  opacity: 1
}

.floorPlanButton {
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: .3s
}

.floorPlanButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(229, 185, 115, .3)
}

.floorPlanIndicators,
.floorPlanNext,
.floorPlanPrev {
  display: none
}

.floorPlanCta {
  background: linear-gradient(135deg, #e5b973 0, #e5b973 50%, #e5b973 100%);
  color: #0a1828;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
  display: block;
  margin: 40px auto 0;
  position: relative;
  overflow: hidden
}

.aboutSection,
.mapSection,
.virtualTourSection {
  background: linear-gradient(135deg, #0a1828 0, #152838 100%);
  padding: 80px 0;
  color: #fff
}

.footerWrapper,
.map-container,
.tourContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px
}

.map-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start
}

.map-left {
  position: relative
}

.map-image-container {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 12px;
  border: 2px solid rgba(229, 185, 115, .3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
  overflow: hidden
}

.map-cta,
.map-link {
  box-shadow: 0 4px 15px rgba(229, 185, 115, .3)
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  border-radius: 12px
}

.map-link,
.map-link:hover {
  background: linear-gradient(135deg, #e5b973 0, #e5b973 100%);
  color: #0a1828
}

.map-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: .3s
}

.map-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 185, 115, .4)
}

.map-link-icon {
  font-size: 16px
}

.map-right {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.map-dropdown {
  background: rgba(255, 255, 255, .05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  overflow: hidden;
  transition: .3s
}

.map-dropdown:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(229, 185, 115, .3)
}

.map-dropdown-btn {
  width: 100%;
  background: 0 0;
  border: none;
  color: #fff;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: .3s
}

.connectivity-item:hover,
.map-dropdown-btn:hover {
  background: rgba(229, 185, 115, .1)
}

.map-dropdown-btn.active {
  background: rgba(229, 185, 115, .15);
  color: #e5b973
}

.map-arrow {
  transition: transform .3s;
  font-size: 18px
}

.map-arrow.active {
  transform: rotate(180deg);
  color: #e5b973
}

.map-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s;
  background: rgba(0, 0, 0, .2)
}

.map-dropdown-content.active {
  max-height: 300px
}

.connectivity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: background .3s
}

.connectivity-item .location {
  font-size: 16px;
  font-weight: 400;
  color: #e8eef3;
  flex: 1
}

.connectivity-item .time {
  font-size: 14px;
  font-weight: 600;
  color: #e5b973;
  background: rgba(229, 185, 115, .1);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap
}

.map-cta {
  background: linear-gradient(135deg, #e5b973 0, #e5b973 50%, #e5b973 100%);
  color: #0a1828;
  border: none;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
  margin-top: 20px;
  position: relative;
  overflow: hidden
}

.tourRow {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap
}

.tourColumn {
  flex: 1;
  max-width: 660px;
  text-align: center;
  background: rgba(255, 255, 255, .05);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: .3s
}

.tourVideoWrapper,
.videoThumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 15px
}

.tourColumn:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(229, 185, 115, .3);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .3)
}

.tourHeading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #e5b973 0, #e5b973 50%, #e5b973 100%);
  -webkit-background-clip: text;
  background-clip: text
}

.tourVideoWrapper {
  margin-bottom: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4)
}

.videoThumbnail {
  width: 100%;
  height: 300px;
  cursor: pointer;
  transition: transform .3s
}

.playButtonOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .3);
  transition: background .3s
}

.aboutSection .floorPlanSectionTitle,
.playButton {
  background: linear-gradient(135deg, #e5b973 0, #e5b973 50%, #e5b973 100%)
}

.videoThumbnail:hover .playButtonOverlay {
  background: rgba(0, 0, 0, .5)
}

.videoThumbnail:hover video::-webkit-media-controls-panel {
  display: none !important;
}

.videoThumbnail:hover video::-webkit-media-controls-play-button {
  display: none !important;
}

.videoThumbnail:hover video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.videoThumbnail:hover video::-webkit-media-controls-enclosure {
  display: none !important;
}

.videoThumbnail:hover video::-webkit-media-controls {
  display: none !important;
}

.playButton {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: .3s;
  box-shadow: 0 8px 25px rgba(229, 185, 115, .4)
}

.playButton:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(229, 185, 115, .6)
}

.playButton::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 20px solid #0a1828;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent
}

.aboutSection .floorPlanSectionTitle {
  text-align: center;
  margin-bottom: 30px;
  font-size: 36px;
  font-weight: 700;
  -webkit-background-clip: text;
  background-clip: text;
  position: relative
}

.aboutSectionDescription {
  margin: 0 auto;
  padding: 0 40px;
  font-size: 16px;
  line-height: 1.8;
  color: #e8eef3;
  text-align: center;
  font-weight: 400
}

.readMoreLink {
  color: #e5b973 !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: .3s;
  display: inline-block;
  position: relative
}

.readMoreLink:hover {
  color: #e5b973 !important;
  transform: translateY(-2px)
}

.readMoreLink::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #e5b973 0, #e5b973 100%);
  transition: width .3s
}

.readMoreLink:hover::after {
  width: 100%
}

.footerDisclaimer,
.footerLinks p {
  font-size: 14px;
  text-align: center
}

.footerContainer {
  background: linear-gradient(135deg, #0a1828 0, #152838 100%);
  color: #fff;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.footerList {
  margin-bottom: 30px
}

.footerAdvertiser,
.footerProjectNumber,
.footerRegistration {
  font-size: 14px;
  line-height: 1.6;
  color: #e8eef3;
  margin-bottom: 5px;
  text-align: center
}

.footerPrivacy,
.footerTerms,
.reraLink {
  color: #e5b973;
  text-decoration: none;
  font-weight: 600;
  transition: .3s
}

.footerPrivacy:hover,
.footerTerms:hover,
.reraLink:hover {
  color: #e5b973;
  text-decoration: underline
}

.footerDisclaimer {
  max-width: 1000px;
  margin: 0 auto 30px;
  padding: 0 40px;
  line-height: 1.6;
  color: #e8eef3;
  font-style: italic
}

.footerDisclaimer strong {
  color: #e5b973;
  font-weight: 600
}

.footerLinks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 0 40px
}

.aboutSectionQr {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap
}

.aboutSectionQr img {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .3);
  transition: transform .3s
}

.footerLinks p {
  color: #e8eef3;
  margin: 0
}

@media (max-width:1024px) {
  .quotePopupContent {
    padding: 30px 25px;
    margin: 20px;
    width: calc(100% - 40px)
  }

  .quotePopup .quoteTitle {
    font-size: 24px
  }

  .offerText,
  .quotePopup .quoteSubTitle {
    font-size: 14px
  }

  .quotePopup .quoteInput,
  .quotePopup .quotePhoneInput,
  .quotePopup .quoteSelect {
    font-size: 15px;
    padding: 12px 14px
  }

  .quotePopup .quoteSubmit {
    font-size: 16px;
    padding: 14px
  }

  /* .headerNav.active,
  .headerNav.active .headerLink {
    opacity: 1;
    transform: translateY(0)
  } */

  .headerContainer {
    height: 70px;
    padding: 0 20px
  }

  .headerLogo img {
    height: 65px
  }

  /* .burgerMenu {
    display: flex
  } */

  /* .headerNav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0a1828 0, #152838 100%);
    flex-direction: column;
    padding: 30px 20px;
    gap: 25px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: .5s cubic-bezier(.25, .46, .45, .94);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .6);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    margin: 0;
    backdrop-filter: blur(10px)
  }

  .headerNav.active {
    visibility: visible
  } */

  .headerLink {
    font-size: 18px;
    padding: 12px 0;
    text-align: center;
    width: 100%;
    opacity: 0;
    transform: translateY(-20px);
    transition: .3s
  }

  .headerNav.active .headerLink:first-child {
    transition-delay: 0.1s
  }

  .headerNav.active .headerLink:nth-child(2) {
    transition-delay: 0.15s
  }

  .headerNav.active .headerLink:nth-child(3) {
    transition-delay: 0.2s
  }

  .headerNav.active .headerLink:nth-child(4) {
    transition-delay: 0.25s
  }

  .headerNav.active .headerLink:nth-child(5) {
    transition-delay: 0.3s
  }

  .headerNav.active .headerLink:nth-child(6) {
    transition-delay: 0.35s
  }

  .headerNav.active .headerLink:nth-child(7) {
    transition-delay: 0.4s
  }

  .headerNav.active .headerLink:nth-child(8) {
    transition-delay: 0.45s;
    margin-top: 0px;
  }

  /* .headerContactSection {
    display: none
  } */

  .bannerSectionMain {
    padding-top: 70px;
    padding-bottom: 20px
  }

  .bannerCarouselContainer {
    flex-direction: column;
    align-items: stretch
  }

  .bannerImageSection {
    flex: none;
    order: 1;
    width: 100%;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center
  }

  .bannerImageContainer::before {
    padding-top: 125%
  }

  .bannerContentSection {
    flex: none;
    order: 2;
    padding: 40px 25px;
    min-height: auto
  }

  .bannerMainTitle {
    font-size: 40px;
    text-align: center
  }

  .bannerIntroText,
  .bannerPropertyDescription,
  .bannerSubtitleText {
    text-align: center;
    font-size: 15px
  }

  .bannerPrice {
    font-size: 28px
  }

  .bannerOfferSection {
    margin: 15px 0
  }

  .bannerOffer {
    padding: 12px 16px
  }

  .quoteForm {
    padding: 30px 25px;
    max-width: 600px;
    margin: 0 auto;
  }

  .quoteSubTitle,
  .readMoreLink {
    font-size: 15px
  }

  .aboutSection,
  .amenitiesSection,
  .floorPlanSection,
  .gallerySection,
  .mapSection,
  .overviewSection,
  .priceSection,
  .virtualTourSection {
    padding: 60px 0
  }

  .amenitiesContainer,
  .footerLinks,
  .footerWrapper,
  .galleryContainer,
  .map-container,
  .overviewContainer,
  .tourContainer {
    padding: 0 20px
  }

  .overviewDescriptionSection {
    margin-bottom: 40px
  }

  .overviewContent {
    flex-direction: column;
    gap: 40px;
    text-align: center
  }

  .overviewTextSection {
    padding-right: 0;
    order: 1
  }

  .overviewImageSection {
    order: 2
  }

  .overviewTitle {
    font-size: 36px;
    margin-bottom: 25px
  }

  .overviewDescription {
    font-size: 16px;
    text-align: justify;
    margin-bottom: 30px
  }

  .highlightsTitle {
    font-size: 28px;
    margin-bottom: 25px
  }

  .highlightsList li {
    font-size: 16px;
    text-align: left
  }

  .overviewBrochureButton,
  .price-get-details {
    padding: 12px 30px;
    font-size: 16px
  }

  .amenitiesTitle,
  .floorPlanSectionTitle,
  .galleryTitle,
  .map-title,
  .price-title {
    font-size: 36px;
    margin-bottom: 40px
  }

  .amenitiesImageContainer,
  .galleryImageContainer,
  .map-image-container {
    height: 300px
  }

  .amenitiesTextOverlay,
  .galleryTextOverlay {
    font-size: 20px;
    padding: 25px 15px 15px
  }

  .amenitiesLightboxNext,
  .amenitiesLightboxPrev,
  .amenitiesLightboxClose,
  .amenitiesNext,
  .amenitiesPrev,
  .galleryLightboxNav,
  .galleryNext,
  .galleryPrev,
  .galleryLightboxClose {
    width: 40px;
    height: 40px;
    font-size: 16px
  }

  .amenitiesLightboxPrev,
  .galleryLightboxPrev {
    left: 5px
  }

  .amenitiesLightboxNext,
  .galleryLightboxNext {
    right: 5px
  }

  .amenitiesLightboxTitle,
  .galleryLightboxTitle {
    font-size: 20px;
    bottom: -50px
  }

  .amenitiesLightboxCounter {
    font-size: 14px;
    top: auto;
    bottom: -70px;
    background-color: transparent;
    color: #e5b973;
    left: 50%;
    transform: translateX(-50%)
  }

  .price-container {
    padding: 0 20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px
  }

  .price-card {
    background: rgba(255, 255, 255, .05);
    border-radius: 20px;
    padding: 15px;
    border: 1px solid rgba(229, 185, 115, .2);
    transition: .3s;
    position: relative
  }

  .price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(229, 185, 115, .1) 0, rgba(229, 185, 115, .05) 100%);
    border-radius: 20px;
    z-index: -1
  }

  .price-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 185, 115, .5);
    box-shadow: 0 20px 40px rgba(229, 185, 115, .2)
  }

  .price-floor-plan {
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px
  }

  .price-floor-plan img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s
  }

  .price-card:hover .price-floor-plan img {
    transform: scale(1.05)
  }

  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    line-height: 2
  }

  .price-row:last-child {
    border-bottom: none
  }

  .price-label {
    font-size: 12px;
    color: #b8c5d1;
    font-weight: 500
  }

  .price-value {
    font-size: 12px;
    color: #fff;
    font-weight: 600
  }

  .price-value.highlight {
    color: #e5b973;
    font-size: 14px;
    font-weight: 700
  }

  .galleryLightboxCounter {
    font-size: 14px;
    top: auto;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: 0 0;
    color: #e5b973
  }

  .floorPlanCarousel {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 0 !important;
    max-width: 100% !important
  }

  .floorPlanSlidesContainer {
    display: block !important;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    position: relative
  }

  .floorPlanSlides {
    display: flex !important;
    will-change: transform;
    display: flex !important;
    transition: transform .5s;
    width: 300%
  }

  .floorPlanCarousel {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative
  }

  .floorPlanCard {
    width: 33.333%;
    flex-shrink: 0;
    margin: 0;
    padding: 15px;
    box-sizing: border-box
  }

  .floorPlanCard img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px
  }

  .floorPlanCard h3 {
    font-size: 15px;
    margin-bottom: 10px;
    text-align: center
  }

  .floorPlanOverlay {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    border-radius: 12px
  }

  .floorPlanButton,
  .floorPlanButton:hover {
    background: linear-gradient(135deg, #e5b973 0, #e5b973 100%)
  }

  .floorPlanCard:hover .floorPlanOverlay {
    opacity: 1
  }

  .floorPlanButton {
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: .3s
  }

  .floorPlanButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 185, 115, .3)
  }

  .floorPlanNext,
  .floorPlanPrev {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(229, 185, 115, .8);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: .3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10
  }

  .floorPlanPrev {
    left: 10px
  }

  .floorPlanNext {
    right: 10px
  }

  .floorPlanNext:hover,
  .floorPlanPrev:hover {
    background: #e5b973;
    transform: translateY(-50%) scale(1.1)
  }

  .floorPlanIndicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px
  }

  .floorPlanDot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(229, 185, 115, .3);
    cursor: pointer;
    transition: .3s
  }

  .floorPlanDot.active {
    background: #e5b973;
    transform: scale(1.2)
  }

  .floorPlanCta {
    padding: 12px 30px;
    font-size: 16px;
    margin-top: 30px
  }

  .map-content {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .map-dropdown-btn {
    padding: 16px 20px;
    font-size: 15px
  }

  .connectivity-item {
    padding: 12px 20px
  }

  .connectivity-item .location,
  .footerLinks p {
    font-size: 13px
  }

  .connectivity-item .time {
    font-size: 12px;
    padding: 3px 10px
  }

  .map-cta,
  .requestButton {
    padding: 14px 28px;
    font-size: 15px
  }

  .tourRow {
    gap: 30px
  }

  .tourColumn {
    max-width: 100%;
    padding: 25px
  }

  .tourHeading {
    font-size: 24px;
    margin-bottom: 20px
  }

  .videoThumbnail {
    height: 250px
  }

  .playButton {
    width: 70px;
    height: 70px
  }

  .playButton::before {
    border-left: 18px solid #0a1828;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent
  }

  .aboutSection .floorPlanSectionTitle {
    font-size: 36px;
    margin-bottom: 30px
  }

  .aboutSectionDescription {
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.7
  }

  .footerContainer {
    padding: 50px 0 25px
  }

  .footerAdvertiser,
  .footerProjectNumber,
  .footerRegistration {
    font-size: 13px;
    margin-bottom: 10px
  }

  .footerDisclaimer {
    padding: 0 20px;
    font-size: 12px;
    margin-bottom: 25px
  }

  .footerLinks {
    gap: 20px
  }

  .aboutSectionQr {
    gap: 15px
  }

  .aboutSectionQr img {
    height: 100px !important
  }
}

@media (max-width:480px) {
  .quotePopupContent {
    padding: 25px 20px;
    margin: 15px;
    width: calc(100% - 30px)
  }

  .quotePopup .quoteTitle {
    font-size: 22px
  }

  .offerText,
  .quotePopup .quoteSubTitle {
    font-size: 13px
  }

  .quotePopup .quoteInput,
  .quotePopup .quotePhoneInput,
  .quotePopup .quoteSelect {
    font-size: 14px;
    padding: 10px 12px
  }

  .quotePopup .quoteSubmit {
    font-size: 15px;
    padding: 12px
  }

  .headerContainer {
    height: 65px;
    padding: 0 15px
  }

  .headerLogo img {
    height: 55px
  }

  .headerNav {
    top: 65px;
    padding: 25px 15px
  }

  .bannerSectionMain {
    padding-top: 65px;
    padding-bottom: 15px
  }

  .bannerContentSection {
    padding: 15px 20px
  }

  .bannerMainTitle {
    font-size: 36px
  }

  .bannerOfferSection {
    margin: 12px 0
  }

  .bannerOffer {
    padding: 10px 14px
  }

  .quoteForm {
    padding: 25px 20px
  }

  .amenitiesSection,
  .floorPlanSection,
  .gallerySection,
  .overviewSection,
  .priceSection {
    padding: 40px 0
  }

  .amenitiesContainer,
  .footerLinks,
  .footerWrapper,
  .galleryContainer,
  .map-container,
  .overviewContainer,
  .tourContainer {
    padding: 0 15px
  }

  .overviewDescriptionSection {
    margin-bottom: 30px
  }

  .highlightsTitle,
  .overviewTitle {
    font-size: 24px
  }

  .overviewDescription {
    font-size: 15px
  }

  .highlightsList li {
    font-size: 15px;
    margin-bottom: 12px
  }

  .amenitiesDownloadBtn,
  .galleryDownloadBtn,
  .overviewBrochureButton,
  .requestButton {
    padding: 10px 25px;
    font-size: 15px
  }

  .aboutSection .floorPlanSectionTitle,
  .amenitiesTitle,
  .galleryTitle,
  .map-title,
  .price-title {
    font-size: 24px;
    margin-bottom: 25px
  }

  .amenitiesImageContainer,
  .galleryImageContainer,
  .map-image-container {
    height: 250px
  }

  .amenitiesTextOverlay,
  .galleryTextOverlay {
    font-size: 18px;
    padding: 20px 10px 10px
  }

  .amenitiesLightboxClose,
  .amenitiesLightboxNext,
  .amenitiesLightboxPrev,
  .amenitiesNext,
  .amenitiesPrev,
  .galleryLightboxClose,
  .galleryLightboxNav,
  .galleryNext,
  .galleryPrev {
    width: 35px;
    height: 35px;
    font-size: 14px
  }

  .amenitiesLightboxPrev,
  .galleryLightboxPrev {
    left: 0
  }

  .amenitiesLightboxNext,
  .galleryLightboxNext {
    right: 0
  }

  .amenitiesLightboxClose,
  .galleryLightboxClose {
    top: -35px
  }

  .amenitiesLightboxTitle,
  .galleryLightboxTitle {
    font-size: 18px;
    bottom: -40px
  }

  .amenitiesLightboxCounter,
  .footerLinks p,
  .galleryLightboxCounter {
    font-size: 12px
  }

  .price-container {
    padding: 0 15px;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
  }

  .price-card {
    background: rgba(255, 255, 255, .05);
    border-radius: 15px;
    padding: 12px;
    border: 1px solid rgba(229, 185, 115, .2);
    transition: .3s;
    position: relative
  }

  .price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(229, 185, 115, .1) 0, rgba(229, 185, 115, .05) 100%);
    border-radius: 15px;
    z-index: -1
  }

  .price-card:hover {
    transform: translateY(-3px);
    border-color: rgba(229, 185, 115, .5);
    box-shadow: 0 15px 30px rgba(229, 185, 115, .2)
  }

  .price-floor-plan {
    height: 100px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 12px
  }

  .price-floor-plan img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s
  }

  .price-card:hover .price-floor-plan img {
    transform: scale(1.05)
  }

  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    line-height: 2
  }

  .price-row:last-child {
    border-bottom: none
  }

  .price-label {
    font-size: 10px;
    color: #b8c5d1;
    font-weight: 500
  }

  .price-value {
    font-size: 10px;
    color: #fff;
    font-weight: 600
  }

  .price-value.highlight {
    color: #e5b973;
    font-size: 12px;
    font-weight: 700
  }

  .price-get-details {
    padding: 6px 7px;
    font-size: 10px
  }

  .floorPlanSectionTitle {
    font-size: 24px;
    margin-bottom: 25px;
    color: #e7ba77
  }

  .floorPlanCarousel {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    position: relative;
    max-width: 100%
  }

  .floorPlanSlidesContainer {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    position: relative
  }

  .floorPlanSlides {
    display: flex !important;
    transition: transform .5s ease-in-out;
    width: 300%
  }

  .floorPlanCard {
    padding: 12px;
    width: 33.333%;
    flex-shrink: 0;
    margin: 0;
    box-sizing: border-box
  }

  .floorPlanCard img {
    height: 150px;
    margin-bottom: 12px
  }

  .floorPlanCard h3 {
    font-size: 15px;
    margin-bottom: 8px
  }

  .floorPlanOverlay {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    border-radius: 12px
  }

  .floorPlanButton,
  .floorPlanButton:hover {
    background: linear-gradient(135deg, #e5b973 0, #e5b973 100%)
  }

  .floorPlanCard:hover .floorPlanOverlay {
    opacity: 1
  }

  .floorPlanButton {
    color: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    border: none;
    font-weight: 600;
    font-size: 10px;
    cursor: pointer;
    transition: .3s
  }

  .floorPlanButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 185, 115, .3)
  }

  .floorPlanNext,
  .floorPlanPrev {
    width: 35px;
    height: 35px;
    font-size: 16px
  }

  .floorPlanPrev {
    left: 5px
  }

  .floorPlanNext {
    right: 5px
  }

  .floorPlanIndicators {
    display: none !important;
    justify-content: center;
    gap: 10px;
    margin-top: 20px
  }

  .floorPlanDot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(229, 185, 115, .3);
    cursor: pointer;
    transition: .3s
  }

  .floorPlanDot.active {
    background: #e5b973;
    transform: scale(1.2)
  }

  .floorPlanCta {
    padding: 10px 25px;
    font-size: 15px;
    margin-top: 25px
  }

  .aboutSection,
  .mapSection,
  .virtualTourSection {
    padding: 50px 0
  }

  .map-content,
  .tourRow {
    gap: 25px
  }

  .map-dropdown-btn {
    padding: 14px 16px;
    font-size: 15px
  }

  .connectivity-item {
    padding: 10px 16px
  }

  .connectivity-item .location,
  .readMoreLink {
    font-size: 14px
  }

  .connectivity-item .time {
    font-size: 14px;
    padding: 2px 8px
  }

  .map-cta {
    padding: 10px 25px;
    font-size: 15px;
    width: fit-content;
    margin: 0 auto
  }

  .tourColumn {
    padding: 20px
  }

  .tourHeading {
    font-size: 22px;
    margin-bottom: 18px
  }

  .videoThumbnail {
    height: 200px
  }

  .playButton {
    width: 60px;
    height: 60px
  }

  .playButton::before {
    border-left: 15px solid #0a1828;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent
  }

  .aboutSectionDescription {
    padding: 0 15px;
    font-size: 15px;
    line-height: 1.6
  }

  .clampText {
    margin-bottom: 12px
  }

  .footerContainer {
    padding: 40px 0 80px
  }

  .footerAdvertiser,
  .footerProjectNumber,
  .footerRegistration {
    font-size: 12px;
    margin-bottom: 8px
  }

  .footerDisclaimer {
    padding: 0 15px;
    font-size: 12px;
    margin-bottom: 20px
  }

  .footerLinks {
    gap: 15px
  }

  .aboutSectionQr {
    gap: 12px;
    align-items: center
  }

  .aboutSectionQr img {
    height: 80px !important
  }
}

.mobileBottomBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #031725;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, .1);
  padding: 10px;
  z-index: 100;
  gap: 10px;
  border-top: 1px solid #b5945f
}

.callButton,
.pdfButton,
.whatsappButton {
  background-color: transparent
}

.mobileBottomBar a {
  flex: 1;
  text-align: center;
  padding: 5px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  overflow: visible
}

.callButton,
.pdfButton {
  border-right: 1px solid #b5945f
}

.mobileBottomBar svg {
  width: 20px;
  height: 20px;
  fill: white
}

@media (min-width:1024px) {
  .mobileBottomBar {
    display: none
  }
}

.clampText {
  display: -webkit-box;
  margin-bottom: 15px;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidedownloadBtn {
  display: inline-flex;
  align-items: center;
  padding: 5px 16px;
  gap: 10px;
  background-color: #0f2b4c;
  /* optional background */
  border: 1px solid #e5b973;
  cursor: pointer;
  position: fixed;
  bottom: 50%;
  right: 25px;
  transform: rotate(-90deg);
  transform-origin: right center;
  animation: bounce 5s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(10px) rotate(-90deg);
  }

  50% {
    transform: translateX(0) rotate(-90deg);
  }
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-content img {
  vertical-align: middle;
}

.btn-text {
  font-size: 16px;
  color: #fff;
}

.pdf-icon {
  transform: rotate(90deg);
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    font-family: 'Nunito', sans-serif !important;
    font-size: 16px !important;
    overflow-x: hidden;
    font-weight: 300 !important;
}

body,
html {
    overflow-x: hidden;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    outline: none;
}

p {
    margin-bottom: 10px;
    line-height: 23px;
}

img {
    margin-bottom: 0px;
}

.mr0 {
    margin: 0 !important;
}

.pd0 {
    padding: 0 !important;
}

/*-------------- CSS Resetter ----------*/

/* width */

::-webkit-scrollbar {
    width: 6px;
}

/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: #e2bb6c;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/*--------------------------------------------------------------------*/

.nav-width {
    width: 90%;
}

/*-------------------menu---------------------*/

#hide-menu {
    position: fixed;
    z-index: 9999;
    width: 100%;
    padding: 5px 0px;
    top: 0;
    height: 70px;
    /* transition: top 0.3s; */
}

.navbar-default {
    background: #333333;
    /*background: url("../images/menu-bg.jpg");*/
    background-size: 215px;
    margin-bottom: 0px;
    border: none;
    border-radius: 0;
    transition: ease all 0.5s;
}

.navbar-default.fixHeader {
    background: rgba(255, 255, 255, 0.9);
    transition: ease all 0.5s;
}

.navbar-default .navbar-nav>li>a {
    color: #000000;
    text-shadow: none;
    transition: ease all 0.5s;
}

.navbar-default .navbar-nav>li>a:last-child {
    margin-right: 0;
}

.navbar-default .navbar-nav>li>a:focus {
    color: #fff;
    text-shadow: none;
    transition: ease all 0.5s;
}

.navbar-default .navbar-nav>li>a:hover {
    color: #ffffff;
    transition: ease all 0.5s;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
    background-image: none;
    box-shadow: none;
    background: transparent;
    color: #224e22;
}

.navbar-brand>img {
    width: 196px;
    padding: 6px;
    margin-top: 2px;
        margin-left: 30px;
}

.navbar-brand>img.nav-logo {
    width: 380px;
    margin-top: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .navbar-brand {
        padding: 0px;
    }
}

.nav-logo2 {
    width: 120px;
    margin-top: 2px;
    margin-left: 15px;
}

/*------------Navbar center-------*/

.navbar .navbar-nav {
    display: inline-block;
    float: none !important;
    vertical-align: top;
}

.navbar .navbar-collapse {
    text-align: end;
}

/*-------------------*/

@media (max-width: 767px) {
    .navbar-nav {
        margin: initial !important;
    }
    .navbar-collapse {
        padding-bottom: 10px;
    }
    .navbar-brand>img {
        width: 195px;
        float: left;
        margin-top: 2px;
        margin-left: 30px;
    }
    .navbar-brand>img.nav-logo {
        width: 90px;
        margin-top: 0;
        position: absolute;
        top: 3px;
        right: 80px;
        padding: 0;
    }
    .navbar-brand {
        padding: 0px;
    }
    .navbar-default .navbar-toggle {
        border: none !important;
        background: #3c763d;
    }
    .navbar-default .navbar-toggle .icon-bar {
        background-color: #ffffff !important;
    }
}

.nav-call {
    border: 2px solid #000000;
    border-radius: 7px;
    padding: 3px 15px !important;
    color: #fff !important;
    margin-top: 10px;
    background: #d8b068;
    margin-left: 10px;
}

.navbar-nav>li>a {
    line-height: 30px !important;
    margin-right: 10px;
    padding-left: 7px;
    padding-right: 7px;
    outline: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Oswald;
    font-weight: 500;
}

.navbar-inverse .navbar-brand:focus,
.navbar-inverse .navbar-brand:hover {
    outline: none;
}

.menu-overlay {
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: -100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.6s;
}

.menu-overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 0;
}

.menu-overlay a {
    padding: 8px;
    text-decoration: none;
    color: #ffff;
    display: block;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: Oswald;
    font-weight: 500;
}

.menu-overlay a span {
    border-left: 3px solid #d2ac68;
    border-right: 3px solid #d2ac68;
    padding: 0 14px;
    padding-top: 3px;
}

.menu-overlay a:hover,
.menu-overlay a:focus {
    color: #f1f1f1;
}

.menu-overlay .closebtn {
    position: absolute;
    top: 1px;
    right: 10px;
    font-size: 48px;
}

.global-sec {
    padding: 70px 0;
}

/*--------------------------------------------*/

#home-carousel {
    overflow: hidden;
    height: 100vh;
}

.carousel-control {
    background-image: none !important;
}

#home-carousel .carousel-inner .item .slide {
    width: 100%;
    height: 100vh;
    /*-webkit-animation: zoomin 40s ease-in infinite;*/
    /*animation: zoomin 40s ease-in infinite;*/
    /*transition: all .4s ease-in-out;*/
}

#home-carousel .carousel-inner .item:nth-child(2) img {
    /* filter: brightness(0.8); */
}

#home-carousel .carousel-inner .item:nth-child(3) img {
    /* filter: brightness(0.8); */
}

#home-carousel .carousel-inner .item .zoom {
    -webkit-animation: zoomin 60s ease-in infinite;
    animation: zoomin 60s ease-in infinite;
    transition: all .4s ease-in-out;
}

@-webkit-keyframes zoomin {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.3)
    }
    100% {
        transform: scale(1)
    }
}

@keyframes zoomin {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.3)
    }
    100% {
        transform: scale(1)
    }
}

@-webkit-keyframes zoomout {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(.5)
    }
    100% {
        transform: scale(1)
    }
}

.carousel-caption {
    width: 100%;
    left: 0;
    top: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animation delays */

.anim-item1 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.anim-item2 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.anim-item3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.carousel-caption h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-img1 {
    position: absolute;
    width: 20%;
    top: 24%;
    right: 40%;
    z-index: -1;
}

/*-----------------------------------------------------------------------*/

#home-carousel {
    margin-top: 69px;
}

.overview {
    width: 100%;
    position: relative;
}

.vh100 {
    height: 100vh;
}

.overview {
    width: 100%;
}

.home {
    /*background: url(../images/menu-bg.jpg) repeat;*/
    text-align: center;
}

.life-head {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.life-head h2 {
    font-family: Oswald;
    margin-bottom: 0;
    font-size: 28px;
    line-height: 35px;
    margin-top: 0;
    font-weight: 300;
    text-transform: uppercase;
    text-align: right;
}

.life-head span {
    font-family: Oswald;
    letter-spacing: 1px;
    font-weight: 400;
    display: block;
    text-align: right;
    line-height: 22px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.life-head p {
    text-align: right;
    /* margin-bottom: 0; */
    line-height: 26px;
}

.home-head {
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0px;
}

.overviewbg {}

.overviewbg img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.downtown {}

.home-head h2 {
    font-family: Oswald;
    margin-bottom: 0;
    font-size: 35px;
    line-height: 48px;
    margin-top: 0;
    font-weight: 300;
    text-transform: uppercase;
    text-align: left;
}

.home-head p {
    text-align: left;
    margin-bottom: 0;
    line-height: 27px;
    font-size: 18px;
}

.home-back {
    /*background-image: url(../images/revel.png);*/
    background-position: center;
}

.headline {
    height: 2px;
    background: #e2bb6c;
    width: 70px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 30px;
}

.headline.right {
    margin: initial;
    float: right;
    margin-top: 20px;
    margin-bottom: 30px;
}

.headline.left {
    margin: initial;
    margin-top: 20px;
    margin-bottom: 30px;
}

.life-head .dflex {
    width: 100%;
}

.ocontent-wrap {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    /*background: #001836;*/
    color: #ffffff;
    background: url(../images/ba-patch.jpg);
    background-size: 750px;
}

.ocontent-wrap .dflex {
    width: 100%;
}

.sub-head {
    font-size: 20px;
    color: #000 !important;
    display: block;
}

.sec-head.white .sub-head {
    color: #ffffff !important;
}

.ocontent-wrap h3 {
    font-family: Oswald;
    font-size: 23px;
    line-height: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #fece7b;
}

.ocontent-wrap p {
    margin-bottom: 0;
    /* color: #3b3936; */
    font-size: 16px;
    line-height: 25px;
    /* font-weight: 900; */
}

.ocontent-wrap h4 {
    margin-bottom: 0;
    color: #fcb13b;
    font-size: 18px;
    line-height: 40px;
    font-weight: 900;
}

.oimg-wrap {
    position: relative;
}

.oimg-wrap p {
    margin-bottom: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 2px 10px;
    font-size: 13px;
}

.oimg-wrap img {
    width: 100%;
    height: 100vh;
    object-fit: initial;
    display: block;
}

.overview-carousel .owl-nav {
    margin-bottom: 0;
    margin-top: 0 !important;
    position: absolute;
    width: 33.33%;
    bottom: 50px;
}

.overview-carousel .owl-nav button {
    height: 42px;
    width: 42px;
    background: #fece7b !important;
    border-radius: 0 !important;
    outline: none !important;
    color: #001836 !important;
}

.life-carousel .owl-nav {
    margin-bottom: 0;
    margin-top: 0 !important;
    position: absolute;
    width: 33.33%;
    bottom: 45px;
}

.life-carousel .owl-nav button {
    height: 35px;
    width: 35px;
    background: #fff !important;
    border-radius: 0 !important;
    outline: none !important;
    color: #001836 !important;
}

#navinfo {
    width: 33.33%;
    position: absolute;
    text-align: center;
    bottom: 25px;
    z-index: 1;
    color: #fece7b;
    font-size: 18px;
    letter-spacing: 3px;
    font-family: Oswald;
    font-weight: 500;
}

#navinfo2 {
    width: 33.33%;
    position: absolute;
    text-align: center;
    bottom: 20px;
    z-index: 1;
    color: #fff;
    font-size: 18px;
    letter-spacing: 3px;
    font-family: Oswald;
    font-weight: 500;
}

.sec-head h2 {
    font-family: Oswald;
    margin-bottom: 0;
    font-size: 30px;
    line-height: 42px;
    margin-top: 0;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    border-top: none;
    border-bottom: 3px solid #001836;
    padding: 13px 0;
}

.sec-head h2 span {
    color: #fcaf17;
}

.sec-head h3 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 0px;
}

.developer {
    background: url("../images/menu-bg.jpg") repeat;
    text-align: center;
}

.developer p {
    color: #000;
    font-size: 17px;
}

.developer h4 {
    font-family: Oswald;
    font-size: 27px;
    margin-bottom: 10px;
    line-height: 31px;
    color: #222;
    font-weight: 300;
}

.life-head.contact {
    background: #0e0e0e;
    color: #222;
}

.life-head.contact span {
    font-family: Oswald;
    letter-spacing: 1px;
    font-weight: 400;
    display: block;
    text-align: right;
    margin-bottom: 20px;
}

.contactimg img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    display: block;
}

.main-contactwrap {
    width: 100%;
    height: 100vh;
    background: #ededed;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-contactwrap .dflex {
    width: 100%;
}

.contact-head h3 {
    font-family: Oswald;
    letter-spacing: 1px;
    font-weight: 400;
    display: block;
    margin-bottom: 0;
    text-transform: uppercase;
}

.contact-head .hline {
    height: 2px;
    background: #e2bb6c;
    width: 40px;
    margin-top: 10px;
    margin-bottom: 30px;
}

#contact-form input,
#contact-form select {
    height: 40px;
    border: none;
    width: 100%;
    background: transparent;
    margin-bottom: 0;
    padding-left: 10px;
    border-radius: 0 !important;
    color: #222222;
    border-left: none;
    box-shadow: none;
    border-bottom: 1px solid #ababab;
    outline: none;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: #a7a7a7;
}

#contact-form .form-group {
    height: 40px;
    margin-bottom: 23px;
    margin-top: 0;
}

#contact-form .input-group {
    width: 100%;
}

.form-control:focus {
    box-shadow: none !important;
}

.contact-btn {
    font-family: Oswald;
    font-weight: 400;
    border-radius: 0;
    letter-spacing: 1px;
    font-size: 15px;
    width: 172px;
    height: 46px;
    line-height: 30px;
    color: #fff;
    border: 0 !important;
    background: linear-gradient(180deg, #d8b068 50%, #001836 0) no-repeat scroll 100% 100%/100% 210% #001836;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.contact-btn:hover,
.contact-btn:focus {
    background-position: 100% 0;
    color: #fff;
}

/******Enquiry now*********/

.contact-ehead h3 {
    font-family: Oswald;
    letter-spacing: 1px;
    font-weight: 400;
    display: block;
    text-align: center;
    font-size: 24px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.contact-ehead .hline {
    height: 2px;
    background: #e2bb6c;
    width: 40px;
    /* margin-top: 10px;
    margin-bottom: 30px; */
    margin: 15px auto;
}

#enq-form input,
#enq-form select {
    height: 40px;
    border: none;
    width: 100%;
    background: transparent;
    margin-bottom: 0;
    padding-left: 10px;
    font-size: 18px;
    border-radius: 0 !important;
    color: #222222;
    border-left: none;
    box-shadow: none;
    border-bottom: 1px solid #ababab;
    outline: none;
}

#enq-form input::placeholder,
#enq-form textarea::placeholder {
    color: #a7a7a7;
}

#enq-form .form-group {
    height: 40px;
    margin-bottom: 23px;
    margin-top: 0;
}

#enq-form .input-group {
    width: 100%;
}

.form-control:focus {
    box-shadow: none !important;
}

.enq-btn {
    font-family: Oswald;
    font-weight: 400;
    border-radius: 0;
    letter-spacing: 1px;
    font-size: 15px;
    /* width: 172px; */
    display: block;
    margin: 0px auto;
    height: 46px;
    line-height: 30px;
    color: #fff;
    border: 0 !important;
    background: linear-gradient(180deg, #fcaf17 50%, #001836 0) no-repeat scroll 100% 100%/100% 210% #001836;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.enq-btn:hover,
.enq-btn:focus {
    background-position: 100% 0;
    color: #fff;
}

/******Enquiry End*********/

.main-contactwrap p span {
    font-family: Oswald;
    font-weight: 400;
}

.sec-footer {
    padding: 20px 0;
}

.sec-footer .copy {
    margin-bottom: 0;
    text-align: center;
    line-height: 18px;
    font-family: Oswald;
    letter-spacing: 1px;
    font-weight: 400;
    color: #222;
    text-transform: uppercase;
}

.sec-footer .rera-disc {
    font-size: 12px;
    line-height: 18px;
    text-align: center;
}

.sec-footer .privacy {
    font-size: 11px;
    line-height: 16px;
    margin-top: 20px;
    margin-bottom: -10px;
}

.register-btn {
    /* transform: rotate(
90deg
 ); */
    font-family: Oswald;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
    text-transform: uppercase;
    padding: 9px 0;
    font-weight: 400;
    border-radius: 0;
    letter-spacing: 1px;
    font-size: 17px;
    width: 122px;
    color: #fff;
    border: 0 !important;
    background: linear-gradient( 180deg, #333 50%, #d8b068 0) no-repeat scroll 100% 100%/100% 210% #d8b068;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    outline: none !important;
}

.register-btn:hover,
.register-btn:focus {
    background-position: 100% 0;
    color: #fff;
}

.register-btn2 {
    /* transform: rotate(
90deg
 ); */
    font-family: Oswald;
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    text-transform: uppercase;
    padding: 9px 0;
    font-weight: 400;
    border-radius: 0;
    letter-spacing: 1px;
    font-size: 17px;
    width: 182px;
    color: #fff;
    border: 0 !important;
    background: linear-gradient( 180deg, #333 50%, #d8b068 0) no-repeat scroll 100% 100%/100% 210% #d8b068;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    outline: none !important;
}

.call-btn {
    transform: rotate(90deg);
    font-family: Oswald;
    position: fixed;
    top: 389px;
    right: -27px;
    z-index: 9999;
    text-transform: uppercase;
    padding: 9px 0;
    font-weight: 400;
    border-radius: 0;
    letter-spacing: 1px;
    font-size: 17px;
    width: 96px;
    color: #fff;
    border: 0 !important;
    background: linear-gradient(180deg, #d8b068 50%, #d2322f 0) no-repeat scroll 100% 100%/100% 210% #d3322f;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    outline: none !important;
}

.call-btn:hover,
.call-btn:focus {
    background-position: 100% 0;
    color: #fff;
}

.popup-btn {
    font-family: Oswald;
    font-weight: 400;
    padding: 8px 25px;
    border-radius: 4;
    display: block;
    margin: 0 auto;
    letter-spacing: 1px;
    font-size: 15px;
    color: #fff;
    border: 0 !important;
    background: linear-gradient(180deg, #222 50%, #d8b068 0) no-repeat scroll 100% 100%/100% 210% #d8b068;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.popup-btn:hover,
.popup-btn:focus {
    background-position: 100% 0;
    color: #fff;
}

.fcall {
    font-family: Oswald;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 1px;
}

.sec-otp {
    padding: 80px 0;
}

#otp-form input {
    height: 40px;
    border: none;
    padding-left: 9px;
    width: 100%;
    background: #ededed;
}

#otp-form .input-group-addon {
    background: #001836;
    color: #fff;
    border: 0;
}

.otp-formwrap {
    margin-top: 3em;
}

.otp-formwrap h1 {
    margin: 0px;
    font-size: 25px;
    text-align: center;
    margin-bottom: 10px;
    font-family: Oswald;
    letter-spacing: 2px;
    font-weight: 400;
}

.otp-formwrap p {
    text-align: center;
    margin-bottom: 20px;
}

.otp-formwrap img {
    width: 80px;
    margin: 0px auto;
    display: block;
    margin-bottom: 18px;
}

/* -------------------  TAB -----------------------*/

.mytab {
    text-align: center;
    border-bottom: none;
    margin-bottom: 40px;
    /*margin-top: 50px;*/
}

.mytab li {
    float: none !important;
    display: inline-block;
    margin-bottom: 10px;
    margin-left: -7px;
}

.mytab>li.active>a,
.mytab>li.active>a:hover,
.mytab>li.active>a:focus {
    color: #000;
    background-color: #fece7b;
    border: 1px solid #fece7b;
    cursor: pointer;
    border-radius: 0;
}

.mytab>li>a:hover,
.mytab>li>a:focus {
    color: #ffffff;
    /*padding: 9px 20px !important;*/
    border: 1px solid #ffffff;
    border-radius: 0;
    background-color: transparent;
    transition: ease all 0.5s;
}

.mytab>li>a {
    color: #fff;
    padding: 9px 20px !important;
    border: 1px solid #ffffff;
    border-radius: 0;
    font-size: 15px;
    font-weight: 400;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: ease all 0.5s;
    font-family: Oswald;
}

/*-------------------------------------------------*/

.mytab.amitab>li {
    margin-left: 0px;
}

.mytab.amitab>li>a {
    color: #333;
    border-color: #333;
}

.mytab.amitab>li>a:hover,
.mytab.amitab>li>a:focus {}

/*---------------gallery----------------------*/

.amenities-gallery .actual {
    margin-bottom: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    padding: 0px 10px 2px 10px;
    z-index: 99;
}

.overlayg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.overlayg.transparent {
    background: rgba(0, 0, 0, 0);
}

.overlayg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 2px dashed #383838;
    transform: scale(0.975);
    z-index: 99;
}

.overlayg.whiteborder::before {
    border: 2px dashed #fff;
}

.amenities-gallery {
    position: relative;
    width: 100%;
    overflow: hidden;
    transition: all 0.5s;
    margin-bottom: 10px;
    box-shadow: 0 10px 8px -6px rgba(0, 0, 0, 0.5);
}

.amenities-gallery img {
    width: 100%;
    display: block;
    height: 260px;
    object-fit: cover;
    transition: all 0.5s;
}

#location .amenities-gallery img {
    width: 100%;
    display: block;
    height: 390px;
    object-fit: cover;
    transition: all 0.5s;
}

.ami-overlay {
    width: 100%;
    height: 100%;
    background: rgba(254, 206, 123, 0.3);
    position: absolute;
    top: 0;
    transform: translate(-101%, 0);
    transition: all 1s;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.amenities-gallery:hover img {
    transform: scale(1.19);
    transition: all 0.5s;
}

.amenities-gallery:hover .ami-overlay {
    transform: translate(0%, 0);
    transition: all 0.5s;
    cursor: url(../images/hovericon.png), auto !important;
}

.amenities-gallery .ami-overlay h3 {
    color: #fff;
    font-size: 15px;
    text-align: center;
    line-height: 18px;
}

/*---Gallery Optional--*/

.gall-txt {
    text-align: center;
    margin-bottom: 0;
    color: #fff;
    font-family: Oswald;
    font-size: 20px;
    letter-spacing: 1px;
}

.gall-patch {
    color: #fff;
    position: absolute;
    bottom: 0px;
    right: 0;
    background: #333;
    font-size: 14px;
    padding: 0 10px;
}

.amenities-gallery.gall-fiximg img {
    height: 280px;
    object-fit: cover;
}

/*-------End Of Gallery ------------*/

.error {
    color: #ff0000;
}

/*----------Modal Design-------*/

.modal {
    z-index: 99999;
    background: rgba(185, 185, 185, 0.6);
}

.modal-content {
    background: url(../images/ba-patch.jpg);
    background-size: 500px;
}

.modal-body {
    background-size: cover;
    padding: 70px 0px 30px;
}

.modal-body .close {
    position: absolute;
    right: 5px;
    top: 5px;
    color: #fff;
    opacity: 1;
    outline: none;
}

.modal-body .close span {
    height: 30px;
    width: 30px;
    display: block;
    font-size: 26px;
}

.modal-body h3 {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 3px;
    margin-top: -35px;
    margin-bottom: 10px;
    font-family: Oswald;
}

.modal-body p {
    color: #fff;
    text-align: center;
    font-size: 15px;
    margin-bottom: 20px;
}

.modal-body img {
    width: 100px;
    margin: 0px auto;
    display: block;
    position: relative;
    top: -60px;
}

.modal-dialog {
    margin-top: 7% !important;
    z-index: 9999 !important;
}

/*---modal form--*/

/*-------------------------------*/

.modal-body form input,
.modal-body form select {
    height: 40px;
    border: 1px solid #ffffff;
    width: 100%;
    background: #fff;
    margin-bottom: 0;
    padding-left: 10px;
    border-radius: 0 7px 7px 0 !important;
    color: #222222;
    border-left: none;
    outline: none !important;
}

.modal-body form input::placeholder,
.modal-body form textarea::placeholder {
    color: #222222;
}

.modal-body form .input-group-addon {
    background: #fff;
    color: #d8b068;
    border: 1px solid #ffffff;
    border-right: 0;
    border-radius: 7px 0 0 7px;
}

.form-ico {
    font-size: 19px !important;
}

.modal-body form textarea {
    border: none;
    resize: none;
    /*background: #e4e4e4;*/
}

.modal-body form .form-group {
    height: 40px;
    margin-bottom: 23px;
    margin-top: 0;
}

.form-control:focus {
    box-shadow: none !important;
}

/*-----------Modal End --------*/

/*---mobile fix footer----*/

.fixed-footer-cust {
    background: #333333;
    text-align: center;
    padding: 10px 0px 10px 0px;
    width: 100%;
    position: fixed;
    bottom: 0px;
    z-index: 99;
}

.f-icon {
    height: 14px;
    width: 14px;
    padding-top: 4px;
}

.fix-link {
    color: #fff !important;
    font-size: 14px;
}

.div-line {
    border-right: 1px solid #fff;
}

.free-call:hover {
    color: #FFFFFF;
}

.i-am {
    padding: 0;
    background: transparent;
    border: none;
    background-image: none;
    box-shadow: none;
    outline: none !important;
}

.i-am2 {
    padding: 0;
    background: transparent;
    border-top: 3px solid;
    background-image: none;
    box-shadow: none;
    outline: none !important;
}

.i-am:hover,
.i-am:focus {
    background: transparent !important;
}

.i-am2:hover,
.i-am2:focus {
    background: transparent !important;
}

/*---mobile fix footer----*/

#pageloader {
    background: rgba(34, 34, 34, 0.9);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 9999999;
    top: 0;
}

.loading-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-wrap img {
    width: 100px;
    transform: rotateY(0deg);
    -webkit-animation: rotateAnimation 2.5s ease-in infinite;
    animation: rotateAnimation 2.5s ease-in infinite;
    transition: all 0.5s ease-in-out;
}

@-webkit-keyframes rotateAnimation {
    0% {
        transform: rotateY(0deg);
    }
    25% {
        transform: rotateY(90deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    75% {
        transform: rotateY(270deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

@keyframes rotateAnimation {
    0% {
        transform: rotateY(0deg);
    }
    25% {
        transform: rotateY(90deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    75% {
        transform: rotateY(270deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.sec-thankyou {
    padding: 50px 0;
}

.msgicon {
    height: 100px;
    width: 100px;
    border: 4px solid #fff;
    font-size: 39px;
    background: #29983c;
    color: #fff;
    border-radius: 50%;
    padding: 27px;
    text-align: center;
    margin: 0px auto;
    display: block;
}

.oops {
    text-align: center;
    font-size: 45px;
    margin-top: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 800;
}

.oops span {
    font-weight: 300;
}

.oops-subtitle {
    /*color: #fff;*/
    font-size: 18px;
}

.go-home {
    color: #2771c7;
    font-size: 19px;
    padding: 10px;
    width: 232px;
    margin: 0px auto;
    margin-top: 30px;
    border-radius: 5px;
    text-align: center;
    transition: ease 0.5s;
}

.go-home:hover {
    transition: ease 0.5s;
    color: #fff;
    background: #fcaf17;
    border-radius: 25px;
}

.oops-greet {
    color: #001836;
    font-size: 25px;
    /*font-weight: 600;*/
    margin-bottom: 15px;
}

.plushtbl {}

.plushtbl tbody tr {}

.plushtbl tbody tr td {}

.pincoderwap {}

.pincoderwap img {
    width: 100%;
    display: block;
}

.pincoderwap .txtwrap {
    background: #001836;
    padding: 10px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.pincoderwap p {
    margin-bottom: 0;
    color: #222;
    text-align: center;
    width: 100%;
    font-size: 17px;
    font-weight: 600;
}

.pincode-carousel .owl-nav {
    margin-top: 0;
}

.pincode-carousel .owl-nav button {
    height: 50px;
    width: 50px;
    background: #001836 !important;
    border-radius: 0 !important;
    outline: none !important;
    color: #fff !important;
}

.loc-wrap p {
    color: #001836;
    font-family: Oswald;
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.loc-wrap img {
    width: 100%;
    display: block;
    border: 1px solid #001836;
}

.plush-wrap {
    text-align: center;
    margin-bottom: 30px;
}

.plush-wrap img {
    width: 100px;
}

.plush-wrap p {
    margin-bottom: 0;
    font-size: 20px;
    margin-top: 10px;
    font-family: Oswald;
}

.plus-subhead {
    text-align: center;
    font-family: Oswald;
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 40px;
    margin-top: 40px;
}

.plush .txtwrap {
    height: 70px;
}

.resi-subhead {
    text-align: center;
    font-family: Oswald;
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.flat360 {
    width: 100%;
    height: 450px;
}

.prostatus {
    font-family: Oswald;
    font-size: 21px;
    margin-bottom: 10px;
}

.prostatus.right {
    text-align: right;
}

.pricing-wrap {
    border-radius: 13px;
    background: #002c46;
    box-shadow: 0px 0px 69px -23px #8e8e8e;
}

.pricing-wrap .inner {
    border-radius: 10px;
    transition: ease all 0.5s;
}

.pricing-wrap .inner:hover {
    transition: ease all 0.5s;
    transform: translateY(-15px);
}

.pricing-top {
    background: #001836;
    border-radius: 10px 10px 0 0;
    text-align: center;
    padding: 35px 0;
}

.pricing-wrap .pricing-top img {
    width: 40px;
}

.pricing-top h4 {
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
    letter-spacing: 2px;
}

.pricing-top h2 {
    font-family: Oswald;
    color: #fff;
    text-transform: uppercase;
    font-size: 23px;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: 800;
}

.pricing-top p {
    margin-bottom: 0;
    color: #fff;
    letter-spacing: 2px;
    font-size: 16px;
}

.pricing-bottom {
    background: #fff;
    padding: 30px 10px;
    min-height: 408px;
    border-radius: 0 0 10px 10px;
}

.pricing-bottom h4 {
    font-family: Oswald;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 500;
}

.pricing-feature {}

.pricing-feature li {
    height: 55px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d9d9d9;
}

.pricing-feature li span img {
    margin-right: 15px;
}

.pricing-feature li .pricetxt {
    width: 90%;
}

.pricing-feature li .pricetxt p {
    font-size: 14px;
    margin-bottom: 0;
    padding-top: 5px;
}

.price-note {
    margin-bottom: 0;
    margin-top: 20px;
}

.price-note span {
    font-weight: 600;
}

.statuslist {
    list-style: decimal;
    padding-left: 15px;
}

.statuslist li {
    margin-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.statuslist li:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.statuslist li p {
    margin-bottom: 3px;
    font-weight: 400;
}

.statuslist li ol {
    list-style: lower-alpha;
    padding-left: 18px;
}

.statuslist li ol li {
    margin-bottom: 5px;
    border-bottom: 0;
    padding-bottom: 0;
}

.statuslist li ol li:last-child {
    margin-bottom: 0;
}

#yt-video {
    width: 100%;
    height: 100vh;
    position: relative;
}

.ytplayer-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.ytplayer-container iframe {
    top: 0 !important;
}

.video-overlay {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    top: 0;
    width: 100%;
    height: 100vh;
}

.video-mainwrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.vwrap .head {
    color: #fff;
    text-transform: uppercase;
    font-size: 32px;
    letter-spacing: 1px;
    text-align: center;
    font-weight: 800;
    font-family: Oswald;
}

.vwrap .subhead {
    text-align: center;
    color: #fff;
    font-size: 20px;
    margin-top: 20px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.svgwrap {
    display: block;
    text-align: center;
}

.svgwrap svg {
    width: 70px;
    height: 70px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2px;
    margin-right: 0;
}

#videoicon:hover {
    cursor: pointer;
}

#videoicon path {
    stroke-dasharray: 161;
    stroke-dashoffset: 161;
    animation: line-animation 3s ease forwards infinite;
}

#videoicon polyline {
    stroke-dasharray: 75;
    stroke-dashoffset: 75;
    animation: line-animation 3s ease forwards infinite;
}

@keyframes line-animation {
    from {
        /*stroke-dashoffset: 300;*/
    }
    to {
        stroke-dashoffset: 0;
    }
}

.value-wrap {}

.value-wrap img {
    width: 60px;
}

.value-wrap h4 {}

.value-wrap p {}

.projects-wrap {
    border-radius: 10px;
    background: #222;
}

.projects-wrap .proinner {
    border-radius: 10px;
    transition: ease all 0.5s;
}

.projects-wrap .proinner:hover {
    transform: translateY(-10px);
    transition: ease all 0.5s;
}

.projects-wrap .project-upper {
    border-radius: 10px 10px 0 0;
}

.projects-wrap .project-upper img {
    width: 100%;
    display: block;
    border-radius: 10px 10px 0 0;
}

.projects-wrap .product-lower {
    background: #001836;
    color: #222;
    padding: 20px;
    border-radius: 0 0 10px 10px;
}

.projects-wrap .product-lower h4 {
    font-family: Oswald;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.projects-wrap .product-lower p {
    font-weight: 500;
}

.projects-wrap .product-lower p:last-child {
    margin-bottom: 0;
}

.projects-carousel .owl-stage-outer {
    padding-top: 15px;
}

.projects-carousel .owl-nav {
    margin-top: 20px;
}

.projects-carousel .owl-nav button {
    height: 50px;
    width: 50px;
    background: #fece7b !important;
    border-radius: 0 !important;
    outline: none !important;
    color: #222 !important;
}

.gery-bg {
    background: #ececec;
}

#droneelevation {
    width: 100%;
    height: 450px;
}

.sechead-logo {
    width: 170px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.main-heading {
    padding: 40px 0 55px;
    background: #f1f1f1;
}

.main-heading1 {
    padding: 30px 0 50px;
    /* background: #f1f1f1; */
}

.mainhead-wrap {}

.mainhead-wrap img {
    width: 530px;
    margin: 0 auto;
    display: block;
    position: relative;
    bottom: -3px;
}

.mainhead-wrap h2 {
    font-family: Oswald;
    margin-bottom: 0;
    font-size: 30px;
    line-height: 30px;
    margin-top: 0;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    /* border-top: 3px solid #222; */
    border-bottom: 3px solid #222;
    padding: 10px 0;
}

.mainhead-wrap .quote {
    font-family: Oswald;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 43px;
    margin-top: 0;
    font-weight: 400;
    /* text-transform: uppercase; */
    text-align: center;
    /* border-top: 3px solid #222; */
    /* border-bottom: 3px solid #222; */
    padding: 10px 0;
}

.mainhead-wrap h2 span {
    color: #fcaf17;
}

.headicon {
    width: 530px;
    margin: 0 auto;
    display: block;
    margin-bottom: -3px;
}

.dark-bg {
    background: #7d7769;
}

.sec-head.white h2 {
    color: #ffffff;
    border-top: none;
    border-bottom: 3px solid #ffffff;
}

.locwrap {
    display: flex;
    height: 100px;
    justify-content: center;
    align-items: center;
    border: 1px solid #222;
    margin-bottom: 30px;
    border-radius: 0;
    padding: 10px;
}

.locwrap i {
    color: #ad905d;
}

.locwrap i:before {
    font-size: 64px;
}

.locwrap img {
    width: 100%;
}

.locwrap p {
    margin-bottom: 0;
    line-height: 20px;
    font-weight: 400;
    font-size: 15px;
    padding-left: 7px;
}

.locwrap p span {
    font-family: Oswald;
    font-size: 20px;
    font-weight: 600;
    color: #404040;
}

.locsubhead {
    font-family: Oswald;
    font-size: 28px;
    line-height: 42px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
}

.locimg {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
    margin-top: 40px;
}

.sec-about {
    background: url('../images/ba-patch.jpg');
    background-size: 500px;
}

.footerlogo {
    width: 190px;
    padding: 10px;
    margin: 0 auto;
    display: block;
    margin-bottom: 10px;
    max-width: 100%;
}

.whatapp {
    width: 50px;
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 99;
}

.sec-newcity {
    background: #f1f1f1;
    padding-bottom: 70px;
}

.new-city .img-wrap {
    position: relative;
}

.new-city .img-wrap img {
    width: 100%;
    display: block;
}

.new-city .img-wrap p {
    position: absolute;
    margin-bottom: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    padding: 0 10px;
}

.new-city h3 {
    font-family: Oswald;
    font-size: 21px;
    line-height: 33px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 400;
}

.new-city p {
    text-align: center;
    margin-top: 10px;
}

.new-city h3 span {
    color: #fcaf17;
}

.newcity-line {
    background: #2d2d2d;
    height: 3px;
    width: 100px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 10px;
}

.wonder {
    list-style: disc;
    text-align: initial;
    line-height: 25px;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

.heading-02 {
    /* font-family: 'Intro'; */
    font-weight: 300;
    font-size: 14px;
    color: #000;
    line-height: 1.75rem;
    margin-bottom: 1rem;
}

.for-wonder {
    text-align: center;
    padding: 60px 110px;
    background: #001836;
    color: #fff;
}

.for-wonder h3 {
    font-family: Oswald;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.dir-name {
    margin: 5px 0px;
    padding: 1px 0px 5px;
    font-size: 16px;
    line-height: 25px;
}

.quote p {
    margin: 20px 0px;
}

.quote img {
    width: 70%;
}

/* .quote p:first-letter {
    float: left;
    font-weight: bold;
    font-size: 60px;
    font-size: 4rem;
    line-height: 40px;
    line-height: 3rem;
    height: 4rem;
    text-transform: uppercase;
} */

#home-carousel1 .item img {
    width: 100%;
}

.sec-config {
    background: url("../images/config-bg.jpg") center no-repeat;
    background-size: cover;
}

.configoverlay {
    background: rgba(0, 0, 0, 0.9);
}

/*---Configuration box----*/

.config-wrap {
    text-align: center;
    border-top: 10px solid #fff;
    border-bottom: 40px solid #fff;
    border-left: 10px solid #fff;
    border-right: 10px solid #fff;
    padding: 25px 0px;
    margin-bottom: 0px;
    transition: ease all 0.5s;
}

.config-wrap1 {
    text-align: center;
    border-top: 10px solid #d8b068;
    border-bottom: 40px solid #d8b068;
    border-left: 10px solid #d8b068;
    border-right: 10px solid #d8b068;
    padding: 25px 0px;
    margin-bottom: 20px;
    transition: ease all 0.5s;
}

.config-wrap:hover {
    border-color: #d0d0d0;
    -webkit-box-shadow: 0 10px 8px -6px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 10px 8px -6px rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 8px -6px rgba(0, 0, 0, 0.5);
    transform: translateY(-10px);
    transition: ease all 0.5s;
}

.config-wrap1:hover {
    border-color: #d0d0d0;
    -webkit-box-shadow: 0 10px 8px -6px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 10px 8px -6px rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 8px -6px rgba(0, 0, 0, 0.5);
    transform: translateY(-10px);
    transition: ease all 0.5s;
}

.config-wrap h3 span {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
}

.config-wrap1 h3 span {
    font-size: 22px;
    color: #fff;
    font-weight: 800;
}

.config-wrap h3,
.config-wrap1 h3 {
    font-size: 27px;
    font-weight: 800;
    margin-bottom: 30px;
}

.config-wrap p {
    font-size: 17px;
}

.config-line {
    height: 3px;
    background: #ffffff;
    width: 50px;
    margin: 0px auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.config-wrap h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
    color: #fff;
}

.config-wrap1 h2 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 30px;
}

.config-wrap h2 span {
    color: #fff;
}

.config-wrap1 h2 span {
    color: #fff;
}

.config-wrap .pricing_btn,
.config-wrap1 .pricing_btn {
    background: #ca1f26;
    border: none;
    font-size: 20px;
    color: #fff;
    width: 75%;
    padding: 7px 0;
    border-radius: 20px;
    margin: 5px 0px;
    font-weight: 600;
    outline: none;
}

/*--------------------------*/

/*-------------aminities--------*/

.amenities-icon {
    text-align: center;
    box-shadow: 1px 1px 25px #e0e0e0;
    /*box-shadow: 0 8px 8px -6px rgba(0, 0, 0, 0.2);*/
    padding: 15px;
    /*background: #f7f7f7;*/
    margin-bottom: 30px;
    transition: ease all 0.5s;
}

.amenities-icon:hover {
    transform: translateY(-10px);
    transition: ease all 0.5s;
}

.amenities-icon .icons-wrap {
    height: 90px;
    width: 90px;
    margin: 0px auto;
    border: 2px solid transparent;
    border-radius: 50%;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: ease all 0.5s;
}

.amenities-icon:hover .icons-wrap {
    border-radius: 0;
    border-color: #222;
    transition: ease all 0.5s;
}

.amenities-icon .icons-wrap i {
    color: #5f5f5f;
}

.amenities-icon .icons-wrap i:before {
    font-size: 60px;
}

.amenities-icon h3 {
    font-size: 17px;
    transition: ease all 0.5s;
    color: #222;
    min-height: 70px;
}

.amenities-icon:hover h3 {
    color: #222;
    transition: ease all 0.5s;
}

.amenities-icon .flex-wrap:before {
    content: "";
    position: absolute;
    height: 50px;
    width: 50px;
    background: #fece7b;
    z-index: -1;
    border-radius: 50%;
    opacity: 0.4;
    left: 50%;
    margin-left: -25px;
    top: 50px;
}

/*----------------------------*/

.sec-gallery {
    background: url("../images/ba-patch.jpg");
    background-size: 500px;
}

.over-view {
    text-align: center;
    /*margin-bottom: 20px;*/
}

.golde-icon {
    padding: 0 !important;
    margin-bottom: 20px !important;
    margin-top: 0 !important;
}

.golde-icon i {
    color: #d8b068 !important;
    margin: 0 !important;
    background: #333 !important;
}

.golde-icon .hi-icon:hover {
    background: #d8b068 !important;
    color: #FFFFFF !important;
}

.golde-icon .hi-icon:after {
    box-shadow: 0 0 0 2px #333 !important;
}

.over-view p {
    margin-bottom: 0;
    min-height: 69px;
    line-height: 19px;
}

.partnerlink {
    margin-top: 20px;
    margin-bottom: 0;
    text-align: center;
}

.partnerlink a {
    color: #000000 !important;
}

.covidlist {}

.covidlist li {
    line-height: 20px;
    margin-bottom: 12px;
    font-size: 17px;
    list-style: disc;
}

/*---- Accordition ----*/

.cst-accordion .panel {
    border-radius: 0;
    border: 0;
    margin-top: 0px;
    background: transparent;
    margin-bottom: 15px;
}

.cst-accordion a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border: 2px solid #ad905d;
    text-decoration: none;
    transition: ease all 0.5s;
    text-transform: uppercase;
    font-family: Oswald;
    letter-spacing: 1px;
    background: #ad905d;
}

.cst-accordion .panel-heading a.collapsed:hover,
.cst-accordion .panel-heading a.collapsed:focus {
    background-color: #ad905d;
    color: white;
    transition: all 0.2s ease-in;
}

.cst-accordion .panel-heading a.collapsed:hover::before,
.cst-accordion .panel-heading a.collapsed:focus::before {
    color: white;
}

.cst-accordion .panel-heading {
    padding: 0;
    border-radius: 0;
    /*text-align: center;*/
}

.cst-accordion .panel-heading a:not(.collapsed) {
    color: white;
    background-color: #ad905d;
    transition: all 0.2s ease-in;
}

/* Add Indicator fontawesome icon to the left */

.cst-accordion .panel-heading .accordion-toggle::before {
    font-family: 'FontAwesome';
    content: '\f00d';
    float: left;
    color: white;
    font-weight: lighter;
    transform: rotate(0deg);
    margin-right: 10px;
    transition: all 0.2s ease-in;
}

.cst-accordion .panel-heading .accordion-toggle.collapsed::before {
    color: #fff;
    transform: rotate(-135deg);
    transition: all 0.2s ease-in;
}

.cst-accordion .panel-body {
    padding: 15px;
    border: none !important;
    background: #f5f5f5;
    box-shadow: 0 8px 8px -6px rgba(0, 0, 0, 0.3);
}

.cst-accordion .panel-group .panel-heading {
    border-bottom: 0;
    background: transparent;
}

.cst-accordion .panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.loc-list {}

.loc-list li {
    line-height: 20px;
    margin-bottom: 8px;
    display: flex;
}

.loc-list li::before {
    content: "\f041";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-size: 13px;
    margin-right: 5px;
    position: relative;
    top: 3px;
    color: #ca1f26;
}

input[type="checkbox"] {
    height: 10px !important;
    border: none;
    width: unset !important;
}

/*----------------------*/

/*==================================================responsive css=======================================================================================================*/

@media (max-width: 1300px) {}

@media (min-width: 768px) {
    .nav-logowrap {
        float: right !important;
    }
}

@media (max-width: 767px) {
    .pdm-0 {
        padding: 0 !important;
    }
    .pd0-m {
        padding: 0 !important;
    }
    .nav-width {
        width: 100%;
    }
    .vh100 {
        height: initial;
    }
    #hide-menu {
        height: 60px;
    }
    .slide-img1 {
        width: 60%;
        top: 28%;
        right: 20%;
    }
    .carousel-caption h3 {
        font-size: 19px;
        width: 77%;
        margin: 0 auto;
        line-height: 25px;
    }
    .cover-content {
        height: initial;
        padding: 50px 20px;
    }
    .cover-img img {
        height: initial;
    }
    #home-carousel {
        height: initial;
        margin-top: 60px;
    }
    #home-carousel .carousel-inner .item .slide {
        height: initial;
    }
    .life-head {
        height: initial;
        padding: 75px 30px 40px 30px;
    }
    .life-head h2 {
        text-align: center;
        font-size: 30px;
    }
    .headline.right {
        float: none;
        margin: 0 auto;
        margin-top: 15px;
        margin-bottom: 30px;
    }
    .life-head p {
        text-align: center;
    }
    .home-head {
        height: initial;
        padding: 53px 30px 40px 30px;
    }
    .home-head h2 {
        text-align: center;
        font-size: 25px;
        line-height: 35px;
    }
    .home-head p {
        text-align: center;
    }
    .overview-carousel .owl-nav {
        width: 100%;
    }
    .life-carousel .owl-nav {
        width: 100%;
    }
    #navinfo {
        width: 100%;
    }
    #navinfo2 {
        width: 100%;
    }
    .call-btn {
        top: 44%;
    }
    .owl-carousel .owl-item img {
        height: initial;
    }
    .ocontent-wrap {
        height: 500PX;
        padding: 40px 35px 110px 35px;
        min-height: 640px;
    }
    .overview-carousel .ocontent-wrap {
        height: initial;
        min-height: 290px;
    }
    .sec-head h2 {
        font-size: 30px;
    }
    .developer h4 {
        font-size: 24px;
    }
    .life-head.contact span {
        text-align: center;
    }
    .contactimg img {
        height: initial;
    }
    .main-contactwrap {
        height: initial;
        padding: 50px 25px;
    }
    .sec-footer {
        margin-bottom: 40px;
    }
    .modal-dialog {
        margin-top: 20% !important;
    }
    .downtown {
        top: 0px;
    }
    .headline.left {
        margin: 0 auto;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    .pincoderwap .txtwrap {
        height: 60px;
    }
    .pincoderwap p {
        font-size: 15px;
        line-height: 19px;
    }
    .plush .txtwrap {
        height: 80px;
    }
    .flat360 {
        height: 300px;
    }
    .pricing-wrap .pricing-top img {
        width: 30px;
    }
    .pricing-bottom {
        min-height: initial;
    }
    .pricing-wrap {
        margin-bottom: 30px;
    }
    .life-head span {
        text-align: center;
    }
    .prostatus {
        text-align: center !important;
    }
    .mainhead-wrap h2 {
        font-size: 25px;
        line-height: 35px;
    }
    .sec-head.white h2 {
        font-size: 25px;
        line-height: 35px;
    }
    .locsubhead {
        font-size: 25px;
        line-height: 35px;
    }
    .whatapp {
        width: 40px;
        bottom: 60px;
    }
    .sec-newcity {
        padding-bottom: 50px;
    }
    .new-city {
        margin-bottom: 30px;
    }
    .new-city h3 {
        font-size: 20px;
        line-height: 25px;
    }
    .newcity-line {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .panel-group {
        margin-top: 35px;
    }
    .quote img {
        width: 90%;
    }
    .over-view p {
        min-height: 85px;
        line-height: 19px;
        font-size: 15px;
    }
    .amenities-icon h3 {
        font-size: 14px;
        min-height: 90px !important;
    }
    .mainhead-wrap img {
        width: 100%;
    }
    .headicon {
        width: 100%;
    }
}

.up-form {
    background: #f5f5f5;
    padding: 0px 0px 25px;
}

.reg-title {
    font-size: 18px;
    background: #d8b068;
    color: #fff;
    text-align: center;
    padding: 10px 0px;
    margin: 20px 0px;
}

#reg-form input,
#reg-form select {
    height: 40px;
    border-bottom: 2px solid #000;
    width: 100%;
    padding-left: 8px;
    background: #f5f5f5;
    border-top: none;
    border-left: none;
    border-right: none;
    box-shadow: none;
    border-radius: 0;
}

@media only screen and (max-width: 700px) {
    .up-form {
        background: #f5f5f5;
        padding: 0px 0px 1px;
    }
}

@media (min-width:769px) {
  .sidedownloadBtn {
    bottom: 50%;
  }
  
#whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
    text-align: right;
}