@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit/Outfit-Regular.ttf');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit/Outfit-Medium.ttf');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit/Outfit-Medium.ttf');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit/Outfit-Bold.ttf');
  font-weight: 700;
  font-display: swap;
}

:root {
  --green: #48b18a;
  --gray: #19191b;
  --lightgreen: #2a3431;
  --gold: #cba857;
  --golden-grad: linear-gradient(45deg, #c58958, #FCF6BA, #c58958, #FBF5B7, #c58958);
  --golden-grad2: linear-gradient(45deg, #c58958, #FCF6BA, #c58958);
}

body {
  color: #fff;
  background-color: #292416;
  font: 400 14px/1.4 "Outfit", sans-serif;
  overflow-x: hidden;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

a:hover {
  text-decoration: none;
}

.bright100 {
  -ms-filter: brightness(50);
  filter: brightness(50);
}

.my_15{
  margin-top:15px!important;
  margin-bottom:15px!important;
}

/*header*/
header {
  width: 100%;
  padding: 3px 20px;
  float: left;
  position: fixed;
  /* display: flex; */
  align-items: center;
  justify-content: space-between;
  top: 0;
  z-index: 999;
  transition: all 300ms ease-in-out;
}

.logo {
  width: 250px;
  position: relative;
  min-height: 1px;
  transition: all 300ms ease-in-out;
  overflow: hidden;
  margin-left: 21px;
  /* background: #ffff; */
  padding: 8px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 20px;
  padding-left: 20px;
  font-size: 16px;
}
.navbar-dark .navbar-nav .nav-link {
  color: #fff !important;
}
.scrl .navbar-dark .navbar-nav .nav-link {
  color: #000 !important;
}

.key-box {
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  box-shadow: inset 4px 4px 0 0 rgb(189 149 65 / 70%);
  width: 90%;
}
.slider-content h5.amn-cnt{
  font-size: 19px;
}
.slider-content h5.price1 {
  margin-top: -5px;
  font-size: 26px;
  margin-bottom: 6px;
}
.logo img {
  image-rendering: -webkit-optimize-contrast;
  transition: all 300ms ease-in-out;width: 75%
}

.logo img.scrl-logo {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  /* filter: invert(1); */
}

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

.headerBtns {
  display: flex;
  align-items: center;
}
img.img-fluid.Investo-img {
    background-color: #fff;
    padding: 5px;
    margin-left: 15px;
    width: auto;
    height: 49px;
}.inner-content-box h6{    margin-bottom: -12px;}
.inner-content-box h6 img {
    width: 18px;
    filter: invert(1);padding-right: 5px
}
.headerBtns .btn.btn-gold:hover{
  color: #fff;
}

.headerBtns .btn.btn-gold::after{
  background-color: var(--gray);
}

header.scrl {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

div#navbarSupportedContent {
  justify-content: end;
}
.navbar.navbar-expand-lg.navbar-dark img {
  width: 200px;
  filter: invert(1) brightness(7.5);
}
header.scrl nav img{
  /* filter: invert(1) brightness(7.5); */
  filter: unset !important;
}
header.scrl .logo {
  width: 220px;
 filter: invert(1);
}

header.scrl .logo img {
    opacity: 0;
    visibility: hidden;
}

header.scrl .logo img.scrl-logo{
    opacity: 1;
    visibility: visible;
}

header.scrl .btn {
  height: 30px;
  font-size: 13px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  background-color: #fff;
  min-width: 150px;
  height: 45px;
  font-size: 14px;
  letter-spacing: 1px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  outline: none;
  z-index: 1;
}

.btn:focus{
  box-shadow: none;
  outline: none;
}

.btn-gray {
  color: #fff;
  background-color: var(--gray);
}

.btn-gold {
  color: #000;
  background: var(--golden-grad2);
}

.btn-gold:hover {
  color: #000;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.25);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  z-index: -1;
}

.btn::after {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  background-color: #fff;
}

.btn-gray::after {
  background-color: #fff;
}

.btn-gold:before {
  background-color: rgba(0, 0, 0, 0.25);
}

.btn.btn-white::after {
  background-color: #1c1c22;
}

.btn:hover::before,
.btn:hover::after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.btn-white {
  color: var(--gray);
  background-color: #fff;
}

.btn-white:hover {
  color: #fff;
}

.btn.btn-white::before {
  background-color: rgba(0, 0, 0, 0.15);
}

.btn.btn-white-hover::before {
  background-color: rgba(31, 135, 112, 0.6);
}

.btn.btn-whatsapp {
  min-width: 45px;
  background: #fff;
}

.btn.btn-whatsapp i {
  font-size: 25px;
}

.banner {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #000;
  z-index: 1;
}

.banner .carousel-inner,
.banner .carousel-inner .carousel-item {
  position: relative;
  height: 100%;
}

.banner .carousel-inner .carousel-item {
  background: var(--gray) center no-repeat;
  background-size: cover;
  transition-duration: 1s;
  position: relative;
  z-index: 1;
}

.banner .carousel-inner .carousel-item::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  top: 0;
  background: rgb(0 0 0 / 17%);
  z-index: 0;
}

.slider-content {
  position: absolute;
  left: 40px;
  /* top: 24%; */
  bottom: 5%;
  z-index: 9;
  width: 40%;
}

.slider-content h1 {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.9vw;
  color: #fff2c3;
  text-shadow: 0px 0px 10px rgb(0 0 0 / 78%);
}

.slider-content .location{
  /* letter-spacing: 2px; */
  font-weight: 300;
  font-size: 18px;
  margin: 10px 0 10px;
}
.slider-content h5 {
  /* text-transform: uppercase; */
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
  /* margin-bottom: 8px; */
  padding: 5px 11px 5px 6px;
  color: #ffffff;
  /* background: var(--golden-grad); */
  display: inline-block;
}

.slider-content h5.pay-pln {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.2vw;
  letter-spacing: 1px;
  margin-bottom: 8px;
  padding: 5px 15px 6px 10px;
  color: #000;
  background: var(--golden-grad);
  display: inline-block;
}
.slider-content h5.key-cnt {
  font-size: 17px !important;
  margin-bottom: -4px;
}
.banner-typology1 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 2px;
  margin-top: 10px;
  padding: 10px 20px;
  color: #000;
  background: var(--golden-grad);
  display: inline-block;
}
.banner-typology1 .zoom-in-out-element{
  font-size: 12px;
  margin-bottom: 0px;
}
.zoom-in-out-element {
  animation: zoom-in-zoom-out 1.5s ease infinite;
  font-size: 14px !important;
  padding: 3px 25px !important;
}
@keyframes zoom-in-zoom-out {
  0% {
    scale: 100%;
  }
  50% {
    scale: 118%;
  }
  100% {
    scale: 100%;
  }
}
.scrollDown {
  position: absolute;
  left: 5vw;
  bottom: 50px;
  padding-left: 20px;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #fff;
  z-index: 9;
}

.scrollDown span {
  font-size: 13px;
  display: inline-block;
}

.scrollDown img {
  position: absolute;
  left: 0;
  transform-origin: center center;
  font-size: 18px;
  z-index: 2;
  animation: updown 1.2s linear infinite;
}

@keyframes updown {
  0% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-10px);
  }
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pb-8 {
  padding-bottom: 4rem;
}

.bg-lightgreen {
  background-color: #2a3431 !important;
}

.bg-green {
  background-color: var(--green) !important;
}

.bg-gray {
  background-color: var(--gray) !important;
}

.text-green {
  color: var(--gold) !important;
}

.props {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.props.prop-tl {
  width: 20%;
  top: 0%;
  left: -2%;
  opacity: 0.1;
}

.props.prop-br {
  width: 60%;
  bottom: 0%;
  right: 0;
  background-color: #1f2624;
  opacity: 0.3;
}

.props.prop-br img {
  mix-blend-mode: screen;
  opacity: 0.1;
}

.position-relative {
  z-index: 1;
}

.bg-frwd-slash::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgb(75 75 75 / 10%);
  clip-path: polygon(100% 0, 100% 100%, 75% 50%);
  z-index: -1;
}

.heading-container {
  margin-bottom: 3.5rem;
}

.short-border {
  width: 100px;
  height: 3px;
  background-color: var(--red);
  border-radius: 10px;
  display: table;
  margin: 2rem auto 0;
}

.heading-container h6 {
  font-weight: 700;
  width: 70%;
  margin: 0 auto;
}

.heading {
  display: table;
  margin-bottom: 9px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.heading h2 {
  font-weight: 300;
  font-size: 33px;
  text-transform: uppercase;
  margin-bottom: 0;
  color: var(--gold);
  background: var(--golden-grad);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.readmore.location-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  display: block;
  text-align: -webkit-center;
}
img.img-fluid.shadow-lg {

  width: 500px !important;
  object-fit: cover;
}
a.btn.btn-gold.footer-btn {
  /* width: auto !important; */
  min-width: unset;
}
.heading.never-title{
      margin-bottom: 28px;
}
.never-main{
  padding-bottom: 85px;
}
.never-main li{
    font-size: 18px;
padding-bottom: 6px;
line-height: 24px;

}
.heading.never-title h2 {
    font-weight: 600;
    font-size: 2vw !important;
    }

.heading h5 {
  font-weight: 200;
  font-size: 1.4vw;
  text-transform: uppercase;
  margin-bottom: 0;
}

.overview-text-container .inner-box {
  width: 100%;
}

.row.flex-row-reverse .overview-text-container .inner-box {
  margin-right: 0;
  margin-left: auto;
}

.overview-text-container h5 {
  font-weight: 200;
  font-size: 17px;
  line-height: 26px;
  text-align: center;
}
.overview-text-container p {
  font-size: 14px;
  line-height: 24px;
}

.in-numbers {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3em;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.in-numbers li {
  margin-right: 5%;
  flex-grow: 1;
}

.pre-launch-main{
      padding-bottom: 4.5rem;
}

.heading.pre-tit h2{
  font-weight: 600;
  font-size: 2.5vw !important;
}
.box1 h4 {
    text-align: center;
    padding: 15px 0px 5px 0px;
    font-size: 1.5em;
}
.in-numbers li:last-child {
  margin-right: 0;
}

.in-numbers li h2 {
  display: flex;
  align-items: flex-end;
}

.in-numbers li h2 small {
  font-size: 60%;
  margin: 0 10px;
}

.in-numbers li h6 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 4px;
}

.img-wrap {
  position: relative;
  z-index: 1;
}

/*.img-fluid.h-100 {
  object-fit: cover;
}*/

.img-wrap span {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 2px 10px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.highlights_section ul ul{
  margin-left:20px;
}

.highlights_section ul li{
  line-height: 28px;
  font-size: 16px;
}

/*.walkghthrough .img-wrap {
  overflow: hidden;
}

.walkghthrough .img-wrap img {
  animation: zoom 35s linear infinite;
}

@keyframes zoom {
  50% {
    transform: scale(1.5);
  }
}*/

/*.walkghthrough p{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  background: rgb(0 0 0 / 20%);
  z-index: 9;
}

.walkghthrough a {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  line-height: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  text-align: center;
  background: var(--golden-grad2);
  color: #000;
  z-index: 2;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.walkghthrough a:hover {
  background: var(--golden-grad);
  outline: 1px solid var(--gold);
}*/

.readmore {
  width: 100%;
  display: flex;
  margin-top: 2rem;
}

.readmore.center {
  justify-content: center;
}

.readmore a {
  color: #fff;
}

.btnContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
}

.amenities-wrapper{
  /* background: url(../img/green-bg.jpg) center / cover no-repeat fixed; */
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 40px 0px;
}

.amenities-wrapper::before{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgb(0 0 0 / 92%);
  backdrop-filter: grayscale(1);
  z-index: -1;
}

.amenities-text-container{
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

h5{
  font-weight: 200;
  font-size: 1.5vw;
}

.amenities-text-container ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0;
}

#myVideo{width: 100%;height: 100%;}

.amenities-text-container ul li{
  max-width:25%;
  flex:0 0 25%;
  padding: 20px;
  backdrop-filter: brightness(1.3) blur(2px);
}

.amenities-text-container ul li .img-wrap img{
  max-width: 70px;
  margin: 0 auto 10px;
}

.amenities-text-container ul li span{
  display: block;
  text-transform: uppercase;
}

.layoutSlider, .laybox{
  width: 100%;
  position: relative;
}

.layimg{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: var(--lightgreen);
}

.layimg img{
  display: block;
  mix-blend-mode: lighten;
  max-width: 90%;
  margin: 0 auto;
  transition: all 300ms ease-in-out;
}

.layimg img:hover{
  cursor: pointer;
  /* mix-blend-mode: color-dodge; */
}

.laydets{
  width: 100%;
  display: table;
  margin-top: 0px;
  margin-left: 10px;
  position: relative;
  z-index: 9;
  color: var(--gold);
}

.laydets small {
  text-transform: uppercase;
}

.laydets h5 {
    font-size: 2.2vw;
}

.laysize{
    width: calc(100% - 20px);
    margin: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgb(0 0 0 / 13%);
    height: 100%;
}

.laysize ul {
    flex: 0 0 79%;
    max-width: 92%;
    display: flex;
    width: 100%;
    margin-top: 12px;
}

.laysize ul li{
    flex-grow: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    text-align: center;
    font-size: 18px;
    padding: 0 10px;
        width: 20%;
}
.laysize ul li:nth-child(3){
  border-right: none;
}
.laysize ul li:last-child{
    border-right: 0;
}

.laysize ul li strong{
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold);
    font-size: 80%;
    letter-spacing: 1px;
}

.location-advantages{
  height: 100%;
}

.location-advantages .loc-advant{
  height: 390px;
}

.location-advantages .loc-advant .swiper-slide{
  padding: 5px 10px;
  background-color: var(--gray);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.loc-advant .swiper-slide figure{
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid rgb(255 255 255 / 10%);
  display: flex;
  align-items: center;
  /* justify-content: center; */
  transition: all 300ms ease-in-out;
}

.loc-advant .swiper-slide figure:hover{
  transform: translateY(2px);
  box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
}

.loc-advant .swiper-slide figure .img-wrap{
  width: 35%;
  margin-right: 15px;
  border-right: 1px solid rgb(255 255 255 / 10%);
}
.loc-advant .swiper-slide figure .img-wrap img{
  max-width: 50px;
  margin: 0 auto;
  display: block;
}

.loc-advant .swiper-slide figure figcaption{
  width: 100%;
  position: relative;
  padding: 10px 0;
  z-index: 1;
}

.loc-advant .swiper-slide figure figcaption strong{
  font-size: 26px;
}

.loc-advant .swiper-slide figure figcaption strong small{
  display: inline-block;
  font-size: 12px;
}

.loc-advant .swiper-slide figure p{
  margin-bottom: 0;
  /* padding-top: 10px; */
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.proximity{
  margin-top: 3rem;
  padding: 10px 20px;
  border: 1px solid rgb(255 255 255 / 10%);
}

.proximity h4{
  font-weight: 200;
  margin-bottom: 20px;
  font-size: 2vw;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.proximity h4 small{
  color: var(--gold);
  font-weight: 200;
  font-size: 70%;
}

.proximitySlider{
  padding-bottom: 40px;
}

.proximitySlider .swiper-wrapper{
  display: flex;
}

.proximitySlider .swiper-slide{
  width: calc(100% / 5);
  text-align: center;
}

.proximitySlider .swiper-slide figure{
  border-right: 1px solid rgb(255 255 255 / 10%);
  padding: 0 10px;
  margin-bottom: 0;
}

.proximitySlider .swiper-slide .img-wrap img{
  max-width: 50px;
  display: block;
  margin: 0 auto 10px;
}

.proximitySlider .swiper-slide figcaption{
  text-transform: uppercase;
  font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
}

.gallery .swiper-slide.img-wrap{
  background-color: #000;
}

.gallery .swiper-slide img{
  width: 100%;
  height: 400px;
  object-fit: cover;
  opacity: 0.8;
}

.gallery .swiper-slide .gal-title{
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  transform: translate(-50%,0);
  z-index: 9;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.gallery .swiper-slide .gal-title h2{
  text-transform: uppercase;
  letter-spacing: 1vw;
  font-weight: 200;
  font-size: 2vw;
}

.contact-wrapper.bg-frwd-slash::before{
  background-color: rgb(0 0 0 / 10%);
}

/* Customize modal */
.modal-backdrop.show {
  opacity: 0.9;
  background: var(--lightgreen);
}
.my_modal .modal-content{
  background-color: #19191b;
  padding: 30px 20px;
}
.my_modal .modal-header .close{
  right: 6px;
    top: 22px;
}
.my_modal .modal-body{
  padding: 0;
}
.modal-content {
  border: none;
  border-radius: 0;
  background: none;
}
.modal-header {
  background: none;
  color: var(--darkblue);
  border-bottom: none;
  border-radius: 0;
  padding: 0;
}
.modal-header .modal-title {
  font-weight: 200;
  font-size: 24px;
}
#modalVideo.modal-header .close {
    top: 5px;}

.modal-header .close {
    position: absolute;
    right: -10px;
    top: 40px;
    z-index: 2;
    text-shadow: none;
    padding: 0;
    margin-right: 0;
    font-weight: 100;
    font-size: 24px;
    opacity: 1;
    color: #fff;
    line-height: 25px;
    width: 25px;
    height: 25px;
    text-align: center;
    border-radius: 50%;
    background-color: #222222;
    transition: all 300ms ease-in-out;
    outline: none;
}
.close:not(:disabled):not(.disabled):focus, .close:not(:disabled):not(.disabled):hover{
    opacity: 1;
    background-color: var(--gold);
}

.mobile-section {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9;
}


.mobile-section .btn:not(:last-child) {
    border-right: 1px solid #333;
}
.mobile-section .btn {
    flex-grow: 1;
    font-size: 12px;
    letter-spacing: 0.3px;
    position: relative;
}

.videoModal .modal-body {
  background-color: var(--beige);
  padding: 0;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 20%);
  border: 5px solid #fff;
}
.videoModal .modal-body iframe {
  height: 420px;
  display: block;
}
/* Customize modal */

/* Custom swiper */
.swiper-pagination-bullet {
  background-color: #fff;
}
.swiper-pagination-bullet-active {
  background-color: var(--gold);
  transform: scale(1.5);
}

.swiper-button-next, .swiper-button-prev{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: var(--gold);
    text-align: center;
    box-shadow: 0 1rem 2rem rgb(0 0 0 / 30%);
    transition: all 300ms ease-in-out;
}

.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 20px;
    color: #000;
}
/*
.swiper-button-next:hover, .swiper-button-prev:hover{
    background-color: var(--gray);
    color: #fff;
}
.swiper-button-next:hover .swiper-button-next:after, .swiper-button-prev:hover .swiper-button-prev:after {
    font-size: 20px;
    color: #fff !important;
}*/
/* Custom swiper */

.form-group {
  margin-bottom: 10px;
}

.form-group .form-control {
  border-radius: 0;
  padding: 10px 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  outline: none;
}

.form-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.form-group .form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--gold);
}

.fixed-form {
  position: absolute;
  bottom: 50px;
  right: 30px;
  width: 470px;
  padding: 10px 20px 20px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 4px 4px 0 0 rgb(189 149 65 / 70%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 1000;
  transition: all 300ms ease-in-out;
      z-index: 1;
}

.fixed-form .formFooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.fixed-form .formFooter button {
  width: 100px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  padding: 0;
  transition: all 300ms ease-in-out;
  outline: none;
}

/*.fixed-form.scrl {
  width: 100%;
  right: 0;
  bottom: 0;
  transform: translateY(0);
  padding: 2px 20px;
  background-color: #000;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.fixed-form.scrl h5 {
  display: none;
}

.fixed-form.scrl .col-12 {
  flex: 1 0 0;
  margin-bottom: 0;
}

.fixed-form.scrl .form-group .form-control {
  padding: 5px 0px;
}

.fixed-form.scrl .formFooter {
  margin-top: 0;
}

.fixed-form.scrl .formFooter button {
  height: 30px;
  line-height: 30px;
}*/

/*Footer*/
.footer-area {
  background: #000;
  color: #fff;
  position: relative;
  z-index: 1;
}

.footer-contact{
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.footer-contact .fcontact h4{
  margin-bottom: 0;
}

.footer-contact .fcontact h4 a{
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 200;
} 

.footer-contact .fcontact h4 a:hover span{
  color: var(--gold);
}

.footer-contact .fcontact h4 a i{
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  background-color: var(--gold);
  border-radius: 50%;
  margin-bottom: 15px;
}

.disclaimer{
  text-align: center;
}

.disclaimer p{
  margin-bottom:7px;
  color:#ababab;
}

.disclaimer p a{
  color:#fff;
}

.copyright{
  text-align: right;
  padding-left: 5%;
}

.copyright p a{
  color: var(--gold);
}
.copyright p a:hover{
  color: #fff;
}

.button-top {
  background: rgba(29, 29, 29, 0.32);
  position: fixed;
  cursor: pointer;
  right: 20px;
  bottom: -20px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  pointer-events: none;
  transition: all 500ms ease;
  z-index: 99;
}

.button-top.scrl {
  bottom: 60px;
  opacity: 1;
  pointer-events: auto;
}

.button-top:hover {
  background: var(--golden-grad2);
  color: #000;
}
/*Footer*/


.video_modal{width:100%;height:400px;}
button.btn.btn-gold.btn-video {
    margin-left: 20px;
}

.heading p{
  font-size: 16px;
  line-height: 28px;
}

.w-100.float-left.py-8.bg-lightgreen.layout-wrapper.pricelist-container {
    padding-top: 100px;
    padding-bottom: 100px;
}
.loct-point li{
  font-size: 16px;
  line-height: 28px;
}
.strip_section{
  padding: 15px!important;
}

.floorplan-container {
    padding-top: 120px;
}
div#location {
  padding-top: 120px;
}
div#gallery {
  padding-top: 100px;
}
.my-bt{
  margin-top: 22%;
}
.floor_div{
  position: relative;
}
.floor_btnn{
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  margin: 0;
}
.banner .carousel-inner .carousel-item::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  top: 0;
  background: rgb(0 0 0 / 60%);
  z-index: 1;
}
.banner .carousel-inner .carousel-item::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  top: 0;
  background: rgb(0 0 0 / 20%);
  z-index: 1;
}
div#overview {
  padding-top: 120px;
}
div#highlight {
  padding-top: 120px !important;
  background: #000;
  padding-bottom: 120px;
}
div#modalWithBannner .custom-row{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center}
div#modalWithBannner .custom-row .custom-col-1{width:calc(60%);padding: 10px;}
div#modalWithBannner .custom-row .custom-col-2{width:calc(40%);padding: 10px;padding-right: 20px;}
div#modalWithBannner .modal-dialog.modal-dialog-centered.modal-lg{max-width:1000px}
div#modalWithBannner button.close.videoClose{position:absolute;top:20px;right:20px;z-index:9;opacity:1;text-shadow:none;color:#fff;font-size:33px}
div#modalWithBannner .modal-body.bg-gray {padding: 0px;}    

.more_enquire {
  padding: 120px 0;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  position: relative;
}
.more_enquire::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #00000094;
  z-index: 1;
}
.more_enquire .content {
  position: relative;
  z-index: 999;
}
.more_enquire h3{
  font-size: 35px;
  margin-bottom: 18px;
}

.more_enquire .sub_heading {
  font-size: 22px;
  margin-bottom: 18px;
}
.more_enquire .btn{
  display: block;
  margin: 0 auto;
}
.slider-content h5.key_high {
  margin-bottom: 2px;
  padding: 4px 5px;
  font-size: 16px;
  text-transform: capitalize;
}
.slider-content h5.banner_typo {
  /* text-transform: uppercase; */
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.8px;
  /* margin-bottom: 8px; */
  padding: 5px 4px 3px 6px;
  color: #ffffff;
  /* background: var(--golden-grad); */
  display: inline-block;
  margin-bottom: 4px;
}
.about_devloper p{
  font-size: 16px;
  text-align: justify;
  font-weight: 300;
}
i.fa.fa-video-camera {
  font-size: 21px;
  margin-right: 10px;
}
@media(max-width:1500px){
  div#modalWithBannner .modal-dialog.modal-dialog-centered.modal-lg {
    max-width: 850px;
}
}
@media(max-width:1480px){
  .video_modal{width:100%;height:300px;}
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 16px;
}
 
}

@media(max-width:1400px){
  .key-box {
    padding: 21px;
}
}
@media (max-width: 1350px) {
  .key-box {
      padding: 20px 12px;
  }
}

/*responsive*/
@media (max-width: 1024px) {
  .logo img{width: 160px;}
  .logo h4{font-size: 14px;}
}


@media (max-width: 768px) {
  .logo {
    background: none;
    padding: 0px;
}
div#highlight {
  padding-top: 30px !important;
  padding-bottom: 50px;
}
div#overview {
  padding-top: 50px !important;
  padding-bottom: 10px;
}
.floorplan-container {
  padding-top: 50px;
}
div#location {
  padding-top: 50px;
}
  .banner{height: 600px;}
  .heading{/* margin-bottom: 25px; */}
  .overview-text-container h5, h5{font-size: 2vw;}
  .in-numbers{margin-top: 2rem; padding-top: 1.5rem;}
  .in-numbers li{margin-right: 0; padding-right: 5px;}
  .in-numbers li h2{font-size: 3vw;}
  .in-numbers li h6{letter-spacing: 0px;}
  .amenities-text-container{width: 100%;}
  .location-advantages{padding-left: 0;}
  .location-map{padding-right: 0;}
  .location-map img{height: 100%; object-fit: cover;}
  .laydets small{font-size: 13px;}
  .laydets h5{font-size: 4vw;}
  .laysize ul li{font-size: 16px;}
  .py-8{padding-bottom: 5rem; padding-top: 2rem;}
  .footer-contact .fcontact h4{font-size: 16px;}
    .video_modal{width:100%;height:300px;}
    .readmore {display: flex;}
  button.btn.btn-gold.btn-video {margin: 0px; margin-top: 10px;}

div#modalWithBannner .modal-dialog.modal-dialog-centered.modal-lg {
    max-width: 100%;
}
div#modalWithBannner button.close.videoClose{position:absolute;top:20px;right:unset;left:20px;z-index:9;opacity:1;text-shadow:none;color:#fff;font-size:33px;background-color:transparent}


div#modalWithBannner .custom-row {
    display: block;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
div#modalWithBannner .custom-row .custom-col-1 {
    width: calc(100%);
    padding: 10px;
    padding-right: 20px;
}
div#modalWithBannner .custom-row .custom-col-2 {
    width: calc(100%);
    padding: 10px;
    padding-right: 20px;
}
div#modalWithBannner .custom-row .custom-col-1 {
    width: calc(100%);
    padding: 0px;
    padding-right: 0px;
}


}

@media (max-width: 767px) {
  .navbar.navbar-expand-lg.navbar-dark img {
    width: 162px;
    filter: invert(1) brightness(7.5) !important;
}
header.scrl nav.navbar.navbar-expand-lg.navbar-dark {
  max-width: 100%;
  background: #000;
}
.scrl .navbar-dark .navbar-nav .nav-link {
  color: #fff !important;
}
nav.navbar.navbar-expand-lg.navbar-dark {
  background: #000;
}
  .d_sm_none{display:none!important;}
  .d_sm_block{display:block!important;}
  .intro-img{margin-top: 20px;}
  .overview-text-container .inner-box{width: 100%;}
  .h4, h4{font-size: 20px;}
  .laydets{text-align: center; margin-top: -10px;}
  .laysize{flex-wrap: wrap;}
  .laysize ul{max-width: 100%; flex: 0 0 100%; margin-bottom: 25px;}
  .laysize > div{margin: 0 auto;}
  .location-map, .disclaimer{padding-right: 15px;}
  .location-advantages, .copyright{padding-left: 15px;}
  .heading h2{font-size: 24px;}
  .heading h5{font-size: 14px;}
  .proximity h4{font-size: 20px;}
  .gallery .swiper-slide .gal-title h2{font-size: 20px;}
  .footer-contact{margin-bottom: 40px; padding-bottom: 35px;}
  .footer-contact .fcontact{flex: 1 0 50%; margin-bottom: 20px;}
  .copyright{text-align: left; margin-top: 30px;}
  .slider-content .location{font-size: 16px;}
  .amenities-text-container ul li{ max-width: 50%; flex: 0 0 50%;}
  .amenities-text-container ul li .img-wrap img{max-width: 50px;}
  .fixed-form {
    position: unset;
    right: unset;
    width: 100%;
    bottom: unset;
}
.mobile-section.scrl {
    display: flex!important;
}
.mob-img{
  height: 100%;
  object-fit: cover;
}
#banner{
  min-height: 400px;
}
}

@media (max-width: 500px) {
  header.scrl .logo {
  width: auto;
  margin-left: 10px;
  margin-right: 10px;
}
  .carousel-indicators {
 
    bottom: -14px;
  }
  .highlights_section .inner-box  ul{
    margin-left: 15px
  }
  .loct-point{
    margin-left: 15px
  }
  body{font-size: 12px;}
  header{padding: 0px;}
  header.scrl .logo h4{font-size: 11px;}
  .logo{width: auto;}
  .logo img{width: 100% !important}
  .logo img.scrl-logo{width: 10%;}
  .headerBtns{flex-wrap: wrap; width: 155px;}
  .headerBtns a:first-child{width: 100%;}
  .btn.btn-whatsapp{min-width: 35px;}
  .btn.btn-whatsapp i{font-size: 22px;}
  .btn{min-width: 155px;height: 32px;font-size: 13px;letter-spacing: 0;padding-left: 10px;padding-right: 10px;margin-top: 10px;}
  .banner{height: 450px;}
  .slider-content {
    right: 40px;
    text-align: center;
    width: auto;
    top: 24%;
}
.slider-content .location {
    letter-spacing: 0px;
    font-weight: 300;
    font-size: 16px;
    /* margin: 10px 0 15px; */
}.slider-content h5 {
    font-size: 14px;
    font-weight: 600;
    font-size: 1.2vw;
    letter-spacing: 2px;
    margin-bottom: 2px;
    padding: 5px 7px 6px 7px;
    color: #ffffff;
    /* background: var(--golden-grad); */
    display: inline-block;
}.inner-content-box h6 {
    margin-bottom: -10px;
    margin-top: -4px;
    font-size: 13px;
}

.banner-typology1 {
  font-size: 14px;    text-transform: uppercase;
  font-weight: 600;
  font-size: 1.2vw;
  letter-spacing: 2px;
  margin-bottom: 2px;
  padding: 5px 7px 6px 7px;
  color: #000;
  background: var(--golden-grad);
  display: inline-block;
}
.banner-typology1 .zoom-in-out-element{
  font-size: 14px;
}
  .slider-content h1{font-size: 24px;letter-spacing: .9px;}
  .heading h2 {
    font-size: 21px;
}
  .slider-content h5{font-size: 20px;}
  .slider-content .readmore{justify-content: center;}
  .scrollDown{display: none;}
  .overview-text-container h5, h5{font-size: 16px;text-align: c;}
  .readmore{margin-top: 0;}
  .in-numbers li h2{font-size: 24px;}
  .in-numbers li h6{font-size: 12px;}
  .amenities-text-container ul, .laysize ul{flex-wrap: wrap;border: 1px solid #848484;}
  .laydets h5{font-size: 24px;    margin-top: 9px;}
  .laysize ul li{width: 100%;padding: 10px 0;border-right: none;border-bottom: 1px solid rgb(255 255 255 / 10%);font-size: 18px;}
  /* .fixed-form.scrl{padding: 2px;} */
  .fixed-form .formFooter button{width: auto; min-width: 100%;}
  .form-group .form-control{font-size: 12px;}
  .proximitySlider .swiper-slide{width: 50%;}
  .gallery .swiper-slide img{height: 340px;}
  .proximity h4 small{display: block;}
  .laysize .btn.btn-gold{
    margin: 0 auto;
  }
  .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto;
    top: 27%;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
    top: 27%;
}
.pre-launch-main {
    padding-bottom: 1.5rem;
}
.w-100.float-left.py-8.bg-lightgreen.layout-wrapper.pricelist-container {
    padding-top: 50px;
    padding-bottom: 50px;
}
.banner .carousel-inner .carousel-item::before{
  background:transparent
}
img.img-fluid.Investo-img {
    background-color: #fff;
    padding: 5px;
    margin-left: 15px;
    width: auto;
    height: 43px;
    margin-top: 10px;
    margin-left: 30px;
}
}

@media (max-width: 767px) {
  .slider-content {
      right: 40px;
      text-align: center;
      width: auto;
      top: 24%;
      position: relative;
      left: 0;
      padding: 30px 0;
  }
  .more_enquire h3 {
    font-size: 26px;
    margin-bottom: 14px;
}
.more_enquire .sub_heading {
  font-size: 19px;
  margin-bottom: 18px;
}
.inner-content-box {
  padding: 0 6px;
}
.slider-content h5.key_high {
  padding: 4px 6px;
  font-size: 14px;
}
div#gallery {
  padding-top: 30px;
}
.overview-text-container h5 {
 
  text-align: center;
}
}

