@font-face {
    font-family: Roboto;
    src: url(../fonts/Roboto-Regular.html);
    font-weight: 400;
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/Roboto-Medium.html);
    font-weight: 500;
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/Roboto-Bold.html);
    font-weight: 700;
}

@font-face {
    font-family: Roboto;
    src: url(../fonts/Roboto-Black.html);
    font-weight: 900;
}

@font-face {
    font-family: Raleway;
    src: url(../fonts/Raleway-Regular.html);
    font-weight: 400;
}

@font-face {
    font-family: Raleway;
    src: url(../fonts/Raleway-Medium.html);
    font-weight: 500;
}

@font-face {
    font-family: Raleway;
    src: url(../fonts/Raleway-SemiBold.html);
    font-weight: 600;
}

@font-face {
    font-family: Raleway;
    src: url(../fonts/Raleway-Bold.html);
    font-weight: 700;
}

:root{
    --drk-blue:#000;
    --yellow:#deb64b;
    /* --yellow:#50c7d2;--yellow:#edb901; */
}

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

.dev-logo {
   width: 130px;
    background: #fff;
    /* filter: invert(1); */
}

#navbarNavAltMarkup {
    justify-content: right;
}

.scrl{
    background-color: var(--drk-blue);
    transition: ease-in-out 0.20s;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.404);
}

.mobile-section {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    display: none;
    box-shadow: 0 -3px 15px rgb(0 0 0 / 10%);
  }
  .mobile-section .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .mobile-section .btn:not(:last-child):before {
    position: absolute;
    content: "";
    width: 1px;
    height: 25px;
    background-color: #333;
    display: block;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    left: unset;
  }

  .btn_yellow {
    background-color:#deb64b;
    padding: 10px 25px;
    font-weight: 500;
    height: 50px;
    color: #fff !important;
  }
.banner {
    background:#131428;
    background-size: cover;
    background-repeat: no-repeat;
    height: 103vh;
    overflow: hidden;
    margin-top: 73px;
}

.banner .container{
    max-width: 100%;
}

.banner-img .carousel-inner{
    border: 5px solid var(--yellow);
border-top-right-radius: 20%;
  border-bottom-right-radius: 20%;
    border-left: 0;
    margin-top: -30px;
    height: calc(100vh + 60px);
    padding: 20px;
    padding-left: 0;
}

.banner-img .carousel-indicators .active {
    opacity: 1;
    transform: scale(1.2);
}

.banner-img .carousel-inner .carousel-item{
    border-top-right-radius: 20%;
    border-bottom-right-radius: 20%;
    overflow: hidden;
}

.banner-img .carousel-inner div{
    height:100%;
}

.banner-img .circle {
    overflow: hidden;
    position:relative;
}

.banner-img .circle img{
    object-fit: cover;
    height:100%;
}


.banner-img .carousel-indicators {
    bottom: 4%;                                                                                  
}

.banner-img .carousel-indicators li {
    width: 29px;
    height: 12px;
    border: 5px solid var(--yellow);
    background-color: transparent;


}

.banner-img .carousel-control-next {
    right: 4%;
}

.banner-img .carousel-control-next, .carousel-control-prev {
    width: 6%;
    background-color: var(--yellow);
    height: 10%;
    top: 43%;
}

.bann-right-col{
    position: relative;
    overflow: hidden;
}

.col-md-6.bann-right-col::before {
    content: '';
    position: absolute;
    top: -13%;
    left: 0px;
    width: 54px;
    height: 243px;
    background: var(--yellow);
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    transform: rotate(324deg);
}

.col-md-6.bann-right-col::after {
    content: '';
    position: absolute;
    bottom: -7%;
    left: 22%;
    width: 54px;
    height: 243px;
    background: var(--yellow);
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    transform: rotate(152deg);
}
.banner-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 5px;
	background:#1d2d20;}

.banner-hilight {
    color: #fff;
}
.banner-hilight ul {
    flex-wrap: wrap;
    justify-content: flex-end;
}
.banner-hilight ul li {
    flex: 0% 40%;
    height: 40px;
    max-width: 100%;
    flex: 0 0 37.33%;
    list-style-type: none;
    border: 1px solid var(--yellow);
    font-size: 15px;
    font-weight: 400;
    padding-right: 2px;
    align-items: center;
    background: #0000008a;
}
.banner-hilight {
    margin-top: 3%;
}
.banner-hilight ul li span{
    font-weight: 700;
  color: var(--yellow);
  padding: 9px;
}


.my-nav-bar a.nav-item.nav-link {
    color: #000;
  font-weight: 700;
    margin-left: 10px;
    position: relative;
    z-index: 2;
}

.my-nav-bar a.nav-item.nav-link.last{
    color:#212529;
}

.my-nav-bar .last {
            background: var(--yellow);
}

.my-nav-bar a.nav-item.nav-link span {
    border-bottom: 1px solid var(--yellow);
    position: absolute;
    bottom: 0;
    width: 96%;
    left: 2px;
    display: block;
    z-index: -1;
}

.my-nav-bar a.nav-item.nav-link:hover span {
    border-bottom-width: 40px;
    transition: 0.50s;
}
.my-nav-bar a.nav-item.nav-link:hover {
    color: var(--drk-blue);
}


.banner-logo h1 {
   font-size: 43px;
  font-weight: 700;
  letter-spacing: 1px;
}
.banner-logo {
    color: #fff;
}

.banner-logo h1 span {
    color: var(--yellow);
}

.location-b {
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 14px;
    font-size: 17px;
}
.location-b span {
    color: var(--yellow);
}
.typo-bann {
    
}

.typo-bann {
    width: fit-content;
margin: 8px;
  border-radius: 10px;
  padding: 6px 2% 9px 17%;

}
.typo-bann h2 {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 21px;
 color:#fff;
    text-transform: uppercase;
}
.typo-bann h2 span {
    font-size: 30px;
}


.my-nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
	background: #fff;
}

.banner-form {
    width: 100%;
    padding: 10px;
    border-radius: 26px;
    margin-top: 1px;
    margin-left: auto;
}   
.banner-form .form div {
    width: 100%;
}    
.banner-form .form-group  {
    margin-bottom: 0;
}                                                                                              
.banner-form .form-group input {
    width: 100%;
    height: 46px;
    border-radius: 6px;   
    padding-left: 10px;
    margin-bottom: 5px;
}



.form-btn{
    background: var(--yellow);
    color: var(--drk-blue);
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: 800ms ease all;
    outline: none;
    text-decoration: none;
    border: 2px solid #000;
    position: relative;
}

.form_heading {
    font-size: 22px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.banner-form .form-head {
    color: #fff;
}

.price-sec {
    position: absolute;
    bottom: 17%;
    z-index: 24;
    left: 36%;
}

.bann-pice {
    background: var(--yellow);
    width: 112%;
    text-align: center;
    border-radius: 44px;
    border: 8px solid var(--drk-blue);
}
.bann-pice h1 {
    font-size: 22px;
    display: grid;
    padding: 10px 0;
    font-weight: 400;
    /* color:#fff; */
}

.bann-pice h1 span {
    font-size: 42px;
    font-weight: 700;
}
.banner-dot {
    position: absolute;
    left: 9%;
    max-width: 10%;
    bottom: 35%;
}

.banner-dot-3 {
    position: absolute;
    left: 10%;
    max-width: 3%;
    top: 12%;
}



.btn-11 {
    position: relative;
    background: var(--yellow);
    width: 100%;
    overflow: hidden;
    color: #000;
    font-size: 21px;
    font-weight: 500;
  }

  .btn-11 span{
    color: var(--drk-blue);
    z-index: 2;
    position: relative;
    font-size: 19px;
    font-weight: 700;
  }

  .btn-11:hover span {
    color: var(--yellow);
    transition: 1.50s;
  }

  .btn-11::before, .btn-11::after {
    position: absolute;
    top: 50%;
    content: "";
    width: 20px;
    height: 20px;
    background-color: #0d3f5b;
    border-radius: 50%;
  }
  .btn-11::before {
    left: -20px;
    transform: translate(-50%, -50%);
  }
  .btn-11::after {
    right: -20px;
    transform: translate(50%, -50%);
  }
  .btn-11:hover {
    color: #cecee1;
  }
  .btn-11:hover::before {
    -webkit-animation: criss-cross-left 0.8s both;
            animation: criss-cross-left 0.8s both;
    -webkit-animation-direction: alternate;
            animation-direction: alternate;
  }
  .btn-11:hover::after {
    -webkit-animation: criss-cross-right 0.8s both;
            animation: criss-cross-right 0.8s both;
    -webkit-animation-direction: alternate;
            animation-direction: alternate;
  }
  .btn-15 {
    position: relative;
    background: var(--yellow);
   
    overflow: hidden;
    color: #000;
    font-size: 21px;
    font-weight: 500;
  }

  .btn-15 span{
    color: var(--drk-blue);
    z-index: 2;
    position: relative;
    font-size: 16px;
    font-weight: 700;
  }

  .btn-15:hover span {
    color: var(--yellow);
    transition: 1.50s;
  }

  .btn-15::before, .btn-11::after {
    position: absolute;
    top: 50%;
    content: "";
    width: 20px;
    height: 20px;
    background-color: #0d3f5b;
    border-radius: 50%;
  }
  .btn-15::before {
    left: -20px;
    transform: translate(-50%, -50%);
  }
  .btn-15::after {
    right: -20px;
    transform: translate(50%, -50%);
  }
  .btn-15:hover {
    color: #cecee1;
  }

  @-webkit-keyframes criss-cross-left {
    0% {
      left: -20px;
    }
    50% {
      left: 50%;
      width: 20px;
      height: 20px;
    }
    100% {
      left: 50%;
      width: 475px;
      height: 475px;
    }
  }
  
  @keyframes criss-cross-left {
    0% {
      left: -20px;
    }
    50% {
      left: 50%;
      width: 20px;
      height: 20px;
    }
    100% {
      left: 50%;
      width: 475px;
      height: 475px;
    }
  }
  @-webkit-keyframes criss-cross-right {
    0% {
      right: -20px;
    }
    50% {
      right: 50%;
      width: 20px;
      height: 20px;
    }
    100% {
      right: 50%;
      width: 475px;
      height: 475px;
    }
  }
  @keyframes criss-cross-right {
    0% {
      right: -20px;
    }
    50% {
      right: 50%;
      width: 20px;
      height: 20px;
    }
    100% {
      right: 50%;
      width: 475px;
      height: 475px;
    }
  }
.overview{
   
	margin: 50px 0px;
  display: flex;
  align-items: center;
}

.over-img {
    padding-right: 5%;
    height: 58vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.over-img img {
    height: 100%;
    object-fit: cover;
}

.over-text h1 {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--drk-blue);
    position: relative;
    align-items: center;
}
.over-text h4 {
    margin-bottom: 15px;
}
.out-txt {
    display: flex;
    align-items: center;
    height: 100%;

}

.over-text {
    z-index: 23;
    position: relative;
}

.overview{
    background-size: cover;
    background-repeat: no-repeat;
}

.text-bg-over {
    position: relative;
    overflow: hidden;
}



@keyframes myany{
    from{
        transform: scale(1.0);
    }
    to{
        transform: scale(1.1);
    }
}

.bton {
    background: var(--yellow);
    color: var(--drk-blue);
    padding: 32px 16px;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
}
.bton h1 {
    writing-mode: tb;
    font-weight: 700;
}
.over-text p {
    font-size: 15px;
    color: #000;
    font-weight: 500;
    text-align: justify;
}

.over-text h1 span {
    background: var(--yellow);
    width: 35%;
    height: 4px;
    display: block;
    margin-left: 27px;
}


.box {
    text-align: center;
    background: var(--drk-blue);
    padding: 58px 22px;
    color:#fff;
    border: 2px solid var(--yellow);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}
.box::before {
    content: '';
    position: absolute;
    left: -57%;
    top: -61%;
    width: 400px;
    height: 400px;
    background: #51c6ff21;
    border-radius: 400px;
    border: 24px solid #0000001c;
}

.box:hover.box::before{
    left: -50%;
    top: -50%; 
    transition: all 0.50s ;
}


.p-box {
    width: fit-content;
    padding: 5px 31px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 24px;
    color:var(--yellow);
    z-index: 2;
    position: relative;
}


.p-box h1 {
    font-size: 41px;
    font-weight: 700;
    z-index: 2;
    position: relative;
}
.box h2 {
    font-size: 25px;
    margin: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    z-index: 2;
    position: relative;
}
.box h2 span{
    font-size: 19px;
    font-weight: 600;
}

.box h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 22px;
}

.box h3 span{
    font-size: 31px;
    font-weight: 600;
}

.price-list {
    background:#000;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0px;
    display: flex;
    align-items: center;
}

.price-list .box{
    margin-bottom: 20px;
}

.highlights {
    padding: 50px 0;
    display: flex;
    align-items: center;
}

.high-heading h1 {
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 14px;
    color: var(--drk-blue);
}

.high-box-img {
    max-width: 50%;
    margin: auto;
    box-shadow: 0px 0px 10px #000;
    margin-top: -9%;
    z-index: 9;
    position: relative;
}

.high-image {
    z-index: 1;
    position: relative;
    box-shadow: 0px 0px 10px #000;
}

.high-txt-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.high-text {
    background: var(--drk-blue);
    color: #fff;
    padding: 52px 56px;
    margin-left: -11%;
}

.high-text ul {
    list-style-type: none;
}
.high-text ul li {
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    display: flex;
    align-items: baseline;
}

.high-text ul li span{
    margin-right: 10px;
}

.high-text ul li span img {
    margin-right: 5px;
}

.amenities{
    display: flex;
    align-items: center;  
    flex-direction: row-reverse;
}

.amenities .bton{
position: absolute;
z-index: 3;
}

.bg {
    width: 100%;
    background: url(../assets/amenities/ami-1.html) no-repeat center;
    background-size: cover;
    z-index: 1;
    background-blend-mode: multiply;
    transition: background-image 1s ease;
  }
  
  .main-p{
    height: 85vh;
  }
  
  .pic-1 {
    position: relative;
    padding: 2rem 6px;
    color: #000;
    letter-spacing: 4px;
    text-indent: 2px;
    font-weight: 400;
    transition: opacity 0.5s ease;
    text-align: center;
    max-width: calc(33.33% - 20px);
    flex:0 0 calc(33.33% - 20px);
    background: #ffffffde;
    border: 2px solid var(--yellow);
    transition: 0.50s; 
    margin: 10px;
    box-shadow: 1px 1px 13px #0006;
  }
  
  section.mobile-section {
    display: none;
  }
  
  .p1-:hover {
    opacity: 1;
  }
  
  .main-p {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .projects {
    display: flex;
    flex-wrap: wrap;
  }
  
  
  .pic-1:hover {
    background: var(--yellow);
  
  }
  
  .pic-1 h4{
     font-size: 18px;
     font-weight: 500;
     cursor: pointer;
     text-transform: uppercase;
  }
  
  .floor-plan{
    background-image: url(../assets/banners/banner-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0px;
    display: flex;
    align-items: center;
    position: relative;
    margin: 50px 0;
    overflow: hidden;
  }

 

  .my-floor{
    display: flex;
    justify-content: center;
  }
  .my-floor .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: transparent;
}

.my-floor .my-nav-pill{
    width: 100%;
    display: flex;
}
.floor-plan li.nav-item {
    width: 33%;
}
.gallery .container{
    max-width: 80%;
}
.gallery {
    display: flex;
    align-items: center; 
    padding: 59px 0;
}

.gallery-1 {
    height: 300px;
    overflow: hidden;
    border-radius: 29px;
    box-shadow: 0px 0px 10px #00000073;
}


.gallery-1 :hover .gallery-img, .gallery-2 :hover .gallery-img{
    transform: scale(1.1);
    transition: 0.80s;
}

.gallery-img{
    height: 100%;
    object-fit: cover;
}

.gall-1 {
    height: 260px;
    margin-bottom: 19px;
    overflow: hidden;
    border-radius: 29px;
    /* width: 33%; */
    flex: 0 0 45%;
    margin-left: 16px;
}

.gallery-2 img {
    margin-bottom: 15px;
    box-shadow: 0px 0px 10px #00000073;
}

.gallery-2 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.loc-main-out{
    display: flex;
    align-items: center;
}

.floor-plan .tab-content .tab-pane{
        position: relative;
}
.my-buttn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 39%!important;
}

.location {
    background:#000;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 89px 0px;
    display: flex;
    align-items: center;
}

.location .loc-main-out div{
            width: 100%;
            height: 100%;
}


.location-box {
    position: relative;
    z-index: 2;
}

.out-box{
    position: relative;
}
.location-box::before {
    content: '';
    position: absolute;
    bottom: -6%;
    left: -17px;
    width: 131px;
    height: 119px;
    background: var(--yellow);
    z-index: -1;
    border-bottom-left-radius: 26px;
}


.location-box::after {
    content: '';
    position: absolute;
    top: -5%;
    right: -19px;
    width: 131px;
    height: 119px;
    background: var(--yellow);
    z-index: -1;
   border-top-right-radius: 26px;
}

.my-loc{
    display: flex;
    align-items: center;
	
}

.location-box img {
    border-radius: 30px;
    box-shadow: 0px 0px 10px #000;
	min-height: 322px !important;
}
.location-txt {
    color: #fff;
    padding: 27px;
}
.location-txt ul {
    list-style-type: none;
}

.location-txt ul li {
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-size: 16px;
    display: flex;
    align-items: center;
}
.location-txt ul li span {
    background: var(--yellow);
    color: var(--drk-blue);
    padding: 1px 13px;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    font-size: 25px;
    font-weight: 700;
    margin-right: 10px;
}


.my-modal .modal-content{
        background: #1e2e21;
  color: #fff;
  margin-top: 45%;
  border: 1px solid #deb64b;
}

.form-txt{
    text-align: center;
}
.form-txt p{
   margin-top: 10px;
}
.form-txt h1 span{
   color:var(--yellow);
}

.my-modal .modal-header .close {
    background: var(--yellow);
    opacity: 1;
}

.contact {
    background: #eee;
    padding: 58px 0;
}

.my-bottom-form .form-group {
    width: 100%;
}

.my-bottom-form .form-group input {
   padding-left: 10px;
  height: 43px;
  width: 100%
}

h4.form_heading.f-head {
    color: var(--yellow);
}

.form.form-botm {
    background: #333;
    padding: 23px;
    border-radius: 20px;
    text-align: center;
}

.my-bottom-form .btn-11 {
    width: 100%;
}


.dis {
  text-align: left;
  background: #222121;
  color: #fff;
  padding: 18px 0;
}

.about-1 h1 {
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 14px;
    color: var(--drk-blue);
}
.dis p{
    margin-bottom: 5px; 
    font-size: .75vw;
}

.contact hr{
    background: var(--drk-blue);
}
.dis p a {
    color: #fff;
}

.call-btn{
    display: none;
    z-index: 10;
}

.dekstop-view{display: block;}
.mobile-view{display: none;}

.modal-body .form-txt h1 {
    font-size: 26px;
}

.banner .col-lg-8{padding-right: 0px !important;
  padding-left: 0px !important;}
  .whybuy {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  padding-left: 0;
}
  .whybuyd li:hover {
  color: #000;
  background: #edb901;
}
.whybuyd li {
  background: #eaeaea;
    padding: 1px 10px 9px 14px;
    position: relative;
    list-style: none;
    cursor: pointer;
    margin: -8px;
    color: #000;
	    font-weight: 500;
}
.abcd{display:block}
.single{border: 2px solid var(--yellow);
  border-radius: 20px;
  margin-top: 5px;}
.single img{border-radius: 20px 20px 0px 0px;}
.single img:hover{transform: scale(1.1);
  transition: 0.80s;}
.single h5{color:#333; font-size:13px;text-align:center;font-weight:bold}
.enquiryBtn {
  position: fixed;
  left: 14px;
  bottom: 80px;
  z-index: 99;
}
.enquiryBtn a.whatsapp {
  background-color: #01c24a;
  margin-bottom: 5px;
}
.enquiryBtn a:hover {
  background-color: #fff;
  color: #000;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 50%);
}
.enquiryBtn a {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  text-align: center;
  background-color: var(--golden);
  position: relative;
  z-index: 1;
  transition: all 300ms ease-in-out;
  color:#fff;margin-bottom: 5px;
}


.fa-whatsapp {
  color: #fff;
  background: linear-gradient(#25d366,#25d366) 14% 84%/16% 16% no-repeat, radial-gradient(#25d366 60%,transparent 0);
}
.banner-logo h5 {
    font-size: 25px;
    font-weight: bold;
  }
  banner-logo h5 span {
    color: var(--yellow);
  }