:root{
    --brown:#c4996b;
    --darkBlue:#1e2731;
    --lightGray:#b3b3b3;
}


@font-face {
    font-family: Roboto_Thin;
    src: url('../fonts/Roboto/Roboto-Thin.ttf');
    font-display: swap;
}

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

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

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

@font-face {
    font-family: Raleway_Regular;
    src: url('../fonts/Raleway/static/Raleway-Regular.ttf');
    font-display: swap;
}

@font-face {
    font-family: Raleway_Medium;
    src: url('../fonts/Raleway/static/Raleway-Medium.ttf');
    font-display: swap;
}

@font-face {
    font-family: Raleway_Semibold;
    src: url('../fonts/Raleway/static/Raleway-SemiBold.ttf');
    font-display: swap;
}

@font-face {
    font-family: Raleway_Bold;
    src: url('../fonts/Raleway/static/Raleway-Bold.ttf');
    font-display: swap;
}

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

html{scroll-behavior: smooth;}

body{
   font-family: 'Khula', sans-serif;

    font-size:16px;
}

p{
    line-height:26px;
    letter-spacing: 0.5px;
}

.mw-100{
    max-width:100%!important;
}

.mx_-5{
    margin-left:-5px!important;
    margin-right:-5px!important;
}

.mx_-10{
    margin-left:-10px!important;
    margin-right:-10px!important;
}

.mx_-20{
    margin-left:-20px!important;
    margin-right:-20px!important;
}

.p_5{
    padding:5px!important
}

.p_10{
    padding:10px!important
}

.px_5{
    padding-left:5px!important;
    padding-right:5px!important;
}

ul,
ol{
    padding:0;
    margin:0;
}

.btn{
    border-radius: 0;
    box-shadow:none!important;
    border:none!important;
    position: relative;
}

.anm_btn,
.anm_btn_lg{
    overflow: hidden;
    position: relative;
    display: inline-block;
    border-radius: 0px;
    border:none!important;
}

.anm_btn .text,
.anm_btn_lg .text{
    position: relative;
    z-index: 9;
}

.anm_btn .button_circle,
.anm_btn_lg .button_circle_lg{
    background-color: red;
    border-radius: 1000px;
    position: absolute;
    left:0;
    top:0;
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    pointer-events: none;
    /*animation-timing-function: ease-in-out; */
}

.explode-circle {
    animation: explode 0.5s forwards;
}

.explode-circle-lg {
    animation: explode_lg 0.5s forwards;
}

.desplode-circle{
    animation: desplode 0.5s forwards;
}

.desplode-circle-lg{
    animation: desplode_lg 0.5s forwards;
}

.form-control{
    border-radius: 0;
    box-shadow:none!important;
}

.form-control:focus{
    border-color:var(--brown)
}

.dark_btn{
    background:#4f4b4b;
    color: #fff !important;
    padding: 10px 15px;
}

@keyframes explode {
    0% {
        width: 0px;
        height: 0px;
        margin-left: 0px;
        margin-top: 0px;
        background-color: rgba(42, 53, 80,0.2);
    }
    100% {
        width: 500px;
        height: 500px;
        margin-left: -250px;
        margin-top: -250px;
        background-color: rgb(196 153 107);
    }
}

@keyframes explode_lg {
    0% {
        width: 0px;
        height: 0px;
        margin-left: 0px;
        margin-top: 0px;
        background-color: rgba(42, 53, 80,0.2);
    }
    100% {
        width: 1400px;
        height: 1400px;
        margin-left: -700px;
        margin-top: -700px;
        background-color: rgb(196 153 107);
    }
}

@keyframes desplode {
    0% {
        width: 500px;
        height: 500px;
        margin-left: -250px;
        margin-top: -250px;
        background-color: rgb(196 153 107);
    }
    100% {
        width: 0px;
        height: 0px;
        margin-left: 0px;
        margin-top: 0px;
        background-color: rgba(42, 53, 80,0.2);
    }
}

@keyframes desplode_lg {
    0% {
        width: 1400px;
        height: 1400px;
        margin-left: -700px;
        margin-top: -700px;
        background-color: rgb(196 153 107);
    }
    100% {
        width: 0px;
        height: 0px;
        margin-left: 0px;
        margin-top: 0px;
        background-color: rgba(42, 53, 80,0.2);
    }
}

/* navbar */

.navbar{
    max-width: 120px;
    flex: 0 0 120px;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    padding:15px;
    z-index: 99;
    background:#fff;
}

.navbar:before{
    position:absolute;
    content:'';
    right:0;
    bottom:0;
    height:calc(100% - 100px);
    width:1px;
    background:rgba(0 0 0 / 10%);
}

.navbar .navbar-brand{
    margin: 0;
    padding: 0px 0 30px;
    height: fit-content;
}

.navbar .navbar-brand img{
    max-width:unset;
    width: 175%;
    white-space: nowrap;
    transition:all 100ms ease-in-out;
}

.navbar .navbar-brand.fixed img{
    width:100%;
}

.navbar .container{
    flex-wrap: wrap;
    max-width:100%;
    padding:0;
    width: 100%;
    height: 100%;
    justify-content: unset;
    align-items: unset;
    justify-content: center; 
}

.navbar .navbar-nav{
    flex-wrap: wrap;
}

.navbar .navbar-call{
    margin-top: auto;   
    display: flex;
    justify-content: center;
    /* width:100%; */
}

.navbar .call_btn{
    writing-mode: tb;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
}

.navbar .call_btn p{
    margin:0;
    line-height: 20px;
}

.navbar .call_btn span{
    display:block;
    font-family: 'Roboto_Bold';
    text-transform: uppercase;
    font-size: 15px;
}

.navbar .call_btn .btn{
    display: flex;
    align-items: center;
    border: 2px solid #ccc!important;
    padding: 20px 10px;
    font-size: 18px;
}

.navbar .call_btn .icon{
    transform: rotate(110deg);
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 10px;
}

.navbar .hamburger_menu{
    height: 52px;
    width: 52px;
    background: #c4996b;
    cursor: pointer;
    margin-left: auto;
    margin-right:10px;
    display:none;
}

.navbar .hamburger_menu a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.navbar .hamburger_menu img{
    filter: invert(1);
    max-width: 30px;
}

.navbar .navbar_links{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 99;
    height: 100vh;
    opacity:0;
    visibility: hidden;
    transition: all 100ms linear;
    -webkit-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
}

.navbar .navbar_links.show{
    visibility: visible;
    opacity: 1;
}

.navbar .navbar_links .navbar-nav{
    position: fixed;
    top: 0;
    right:-40%;
    width: 100%;
    max-width: 40%;
    height: 100%;
    background-color: var(--brown);
    z-index: 99;
    padding-top: 15px;
    transition: 0.3s all linear;
}

.navbar .navbar_links.show .navbar-nav{
    right:0;
}

.navbar .navbar_links a{
    color: #fff;
    padding: 10px 20px;
    font-size: 24px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    font-family: 'Roboto_Medium';
}

.navbar .navbar_links .backdrop{
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(0 0 0 / 90%);
    height: 100%;
    width: 100%;
    margin-left: unset;
    overflow: hidden;
    z-index: 9;
}

.navbar .navbar_links .close{
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 50px;
    color: #fff;
    z-index: 9;
    opacity: 0.5;
    font-weight: normal;
}


/* right_body */

.right_body{
    max-width: calc(100% - 120px);
    flex: 0 0 calc(100% - 120px);
    margin-left:auto;
}

/* banner section */

.banner_section{
    /* min-height:100vh; */
    display: grid;
    position: relative;
    z-index: 9;
}

.banner_section .left_col{
    padding-right:100px;
    padding-top:100px;
    position:relative;
}

.banner_section .left_col:before{
    position:absolute;
    content:'';
    top:0;
    right:0;
    height:100%;
    width:400px;
    background:#c39f2f;
}

.banner_section #banner_carousel,
.banner_section #banner_carousel div,
.banner_section .carousel-item img{
    height:100%;
}

.banner_section .carousel-item img{
    object-fit: cover;
    max-height:810px;
}

.banner_section .project_logo{
    max-width: 220px;
    max-height: 220px;
    object-fit: contain;
    margin-bottom: 0px; 
}

.banner_section .right_col{
    padding: 100px 75px 80px;
    background: #fff;
    position:relative;
    
}

.banner_section .right_col .banner_top_row{
    height:auto;
    display: flex;
    align-items: center;
}

.banner_section .banner_top_row .right{
    max-width:calc(100% - 220px);
    width: 100%;
    margin-left: 15px;
    position:relative;
    padding-left:15px;
}

.banner_section .banner_top_row .right:before{
    position:absolute;
    content:'';
    height:100%;
    width:1px;
    background:rgba(0 0 0 / 20%);
    left:0;
}

.banner_section .hamburger_menu{
    position: absolute;
    top: 0;
    right: 0;
    height: 80px;
    width: 80px;
    
    background: #000000;
    cursor: pointer;
}

.banner_section .hamburger_menu a{
    display: flex;
    align-items: center;
    justify-content: center;
    height:100%;
    width:100%;
}

.banner_section .hamburger_menu img{
    filter:invert(1);
    max-width:40px;
}

.banner_section .location{
    font-size: 18px;
    /* text-transform: uppercase; */
    letter-spacing: 0.5px;
    /* font-family: 'Roboto_Medium'; */
}

.banner_section .tagline{
    margin-top: 15px;
    text-transform: uppercase;
    max-width: fit-content;
    background: #1e2731;
    padding: 20px 40px;
    color: #fff;
    text-align: center;
}

.banner_section .tagline h3{
    font-family: 'Roboto_Medium';
    letter-spacing: 1px;
    font-size: 30px;
    margin-bottom:2px;
}
 
.blink-hard {
  animation: blinker 1s step-end infinite;
}
.blink-soft {
  animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
  50% {
        color: #c4996b;
  }
}

.blink-hard1 {
    animation: blinker1 1s step-end infinite;
  }

  @keyframes blinker1 {
    50% {
          color: #884240;
    }
  }


.banner_section .tagline p{
    letter-spacing: 3px;
    font-size: 17px;
    margin:0;
}

.banner_section .status,
.banner_section .status:hover{
    max-width: fit-content;
    padding: 15px 90px;
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 34px;
    text-align: center;
    margin: 25px 0 20px!important;
}

.banner_section .status span{
    display:block;
    text-transform: uppercase;
    font-size: 34px;
}

.banner_section .price{
    font-size:60px;
    margin-top: 0px;
    font-family: 'Roboto_Bold';
    color:
    var(--brown);
    max-width: fit-content;
}

.banner_section .price span{
    display: block;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 25px;
    font-family: 'Roboto_Regular';
    color:#333;
    text-align: center;
}

.banner_section .brochure_btn{
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    
}

.banner_section .brochure_btn .icon{
    max-width:30px;
    margin-right: 7px;
    filter: invert(1);
}

.banner_section .form_heading{
    margin-top:30px;
    margin-bottom: 15px;
    font-size:24px;
    letter-spacing: 0.5px;
    font-family: 'Roboto_Medium';
}

.banner_section .form,
.banner_section .form div{
    height:auto;
}

.banner_section .form .form-control{
    height:50px;
}


.banner_section .form button{
    width:100%;
    margin-top: 10px;
    height: 55px;
    letter-spacing: 1px;
}

#banner_carousel button{
    background: #848484a1;
    height: 55px;
    bottom: 0px;
    top: unset;
    opacity: 0.9;
}

#banner_carousel button img{
    max-width: 35px;
    filter:invert(1);
}

#banner_carousel .carousel-control-next{
    left:100%;
}

#banner_carousel .carousel-control-prev{
    right:0;
    left:unset;
}

/* bottom_contents */

.bottom_contents{
    display:flex;
    flex-wrap: wrap;
}

.bottom_contents .leftPageContents{
    max-width:80%;
    flex:0 0 80%;
}

.bottom_contents .rightFixedImage{
    max-width: calc(20% - 24px);
    flex: 0 0 calc(20% - 24px);
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
}

.bottom_contents .rightFixedImage:before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    height:100%;
    width:100%;
    background: rgba(0 0 0 / 50%);
}

.bottom_contents .rightFixedImage img{
    height:100%;
    object-fit: cover;
}

.rightFixedImage .sidebar_title{
    position: absolute;
    top: 50%;
    left: 50%;
    writing-mode: tb-rl;
    transform: translate(-50%, -50%);
    color: #fff;
    letter-spacing: 2px;
    font-size: 100px;
    text-transform: uppercase;
    font-family: 'Raleway_Bold';
    height: 100%;
    text-align: center;
    transition:all 500ms linear
}


/* leftPageContents */

.pages_lists{
    display: flex;
    align-items: center;
    background: #000000;
    position: sticky;
    top: 0;
    z-index: 99;
}

.pages_lists li{
    flex-grow: 1;
    list-style-type: none;
}

.pages_lists li a{
    padding: 20px 5px;
    color: #fff;
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
}

.pages_lists li a.active{
    background:var(--brown)
}

.pages_lists li:not(:last-child) a{
    border-right:1px solid rgba(255 255 255 / 20%)
}

.leftPageContents section{
    padding:80px 60px;
    /* border-bottom:1px solid rgba(0 0 0 / 08%) */
}

.leftPageContents .container{
    max-width:100%; 
    padding:0;
}

.leftPageContents .section_title{
 
    letter-spacing: 1px;
    font-size: 60px;
 
    margin: 0;
    font-weight: 600;
    position: relative;
    font-family: 'Noto Sans Symbols', sans-serif;
    /* font-family: 'Dangrek', cursive; */
    display: inline-block;
    margin-bottom: 80px;
    z-index: 9;
}

.leftPageContents .section_title:before{
    content: '';
    position: absolute;
    top: -25px;
    left: -15px;
    width: 100px;
    height: 100px;
    background: #eee;
    z-index: -1;
    opacity: 0.8;
}

.leftPageContents .section_title:after{
    position: absolute;
    content: '';
    height: 6px;
    width: 40%;
    background: #e5c9ab;
    bottom: -25px;
    left: 0;
}

/* about section */

.about_section .left_col img{
    max-height: 350px;
    object-fit: cover;
    width: 100%;
}

.about_section video{
    height:100%;
    object-fit: cover;
    width: 100%;
}

.about_section .right_col{
    padding:0 30px;
}

.about_section .right_col h4{
    text-transform: uppercase;
    margin-bottom:25px;
       font-family: 'Noto Sans Symbols', sans-serif;

    font-size:36px;
}

.about_section .right_col strong{
    line-height: 26px;
    letter-spacing: 0.5px;
}

/* price section */

.price_section{
    background:#f3f3f3;
}

.price_section .section_title:before{
    background:#fff;
}

/* floor plans */

.floorPlan_section .nav-pills{
    background: #e9e9e9;
}

.floorPlan_section .nav-link{
    border-radius: 0;
    padding: 15px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
    border-bottom:1px solid rgba(0 0 0 / 08%)
}

.floorPlan_section .nav-link:last-child{
    border:none;
}

.floorPlan_section .nav-link.active{
    background: #1e2731;
}

.floorPlan_section .tab-pane img{
    border: 8px solid rgb(196 153 107 / 80%);
}

.floorPlan_section .tab-content .title{
    background: #1e2731;
    color: #fff;
    margin: 20px 0 0;
    padding: 15px 25px;
    display: inline-block;
    font-size: 22px;
    letter-spacing: 1px;
}

.floorPlan_section .left_col{
    padding:0 40px 0 15px;
}

/* amenities section */

.amenities_section{
    background: url('../assets/amenities-arpann-my-city-jewar-airport.jpg') no-repeat center;
    background-size:cover;
    background-attachment: fixed;
    overflow: hidden;
    position:relative;
}

.amenities_section:before{
    position:absolute;
    content:'';
    height:100%;
    width:100%;
    background: rgb(199 151 0);
    left:0;
    top:0;
}
/*------------------------------------------------------------------------------------------------------------*/
   .more {
            display: none; 
        }

        .text-justify {
            text-align: justify;
        }
        .more-btn{border: none !important; background: transparent !important; display: inline !important; padding: 0 !important;  color: #fff;}
    


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

.amenities_section .section_title{
    color:#fff;
}

.amenities_section .section_title:before{
    background:rgba(255 255 255 / 20%)
}

.amenities_section .section_title:after{
    background:#fff;
}

.amenities_carousel{
    overflow:visible;
    max-width: 70%;
    margin: auto;
}

.amenities_carousel .owl-stage-outer{
    overflow:visible;
}

.amenities_carousel .item{
    position:relative;
}

.amenities_carousel .item:before{
    position:absolute;
    content:'';
    height:100%;
    width:100%;
    left:0;
    top:0;
    background-image:linear-gradient(180deg, rgba(0 0 0 / 20%),rgba(0 0 0 / 60%), rgba(0 0 0 / 90%))
}

.amenities_carousel img{
    height:500px;
    object-fit: cover;
}

.amenities_carousel .content{
    position:absolute;
    bottom:30px;
    left:30px;
    color:#fff;
    width: calc(100% - 60px);
}

.amenities_carousel .content h3{
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: 'Roboto_Medium';
    font-size:36px;
    transform:translateY(15px);
    opacity:0;
    visibility: hidden;
    display:inline-block;
    transition:all 300ms linear;
    transition-delay: 0.5s;
}

.amenities_carousel .owl-item.active .content h3{
    transform:translateY(0px);
    opacity:1;
    visibility: visible;
}

.amenities_carousel .content ul{
    padding-left:15px;
    transform:translateY(15px);
    opacity:0;
    visibility: hidden;
    transition:all 300ms linear;
    transition-delay: 0.6s;
}

.amenities_carousel .owl-item.active .content ul{
    transform:translateY(0px);
    opacity:1;
    visibility: visible;
}

.amenities_carousel .content li{
    list-style-type:circle ;
    letter-spacing: 0.5px;
}

.amenities_carousel .content li:not(:last-child){
    margin-bottom:5px;
}

.amenities_carousel .owl-nav button{
    background: rgb(196 153 107 / 30%)!important;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:all 200ms linear;
}

.amenities_carousel .owl-nav button:hover{
    background: rgb(196 153 107)!important;
}

.amenities_carousel .owl-nav .owl-next{
    right:-100px;
    left:unset;
}

.amenities_carousel .owl-nav button span{
    font-size: 50px;
    line-height: 50px;
    color: #fff;
    opacity: 0.5;
    margin-top:-5px;
}

.amenities_carousel .owl-nav button:hover span{
    opacity: 1;
}

/* gallery section */

.gallery_section{
    border-bottom:1px solid rgba(0 0 0 / 08%)

}

.gallery_section .gallery_content{
    -webkit-column-count:2;
    -moz-column-count:2;
    column-count:2;
    
    -webkit-column-gap:20px;
    -moz-column-gap:20px;
    column-gap:20px;
}

.gallery_section .single{
    margin-bottom:20px;
    display: inline-block;
}

.gallery_section .single a{
    position:relative;
    display: flex;
}

.gallery_section .single a:before{
    position:absolute;
    content:'';
    height:100%;
    width:100%;
    background:rgba(0 0 0 / 70%);
    transition:all 200ms linear;
    opacity:0;
    visibility: hidden;
}

.gallery_section .single a:after{
    position:absolute;
    content:'';
    background:url('../assets/icons/zoom-in-light.png') no-repeat center;
    background-size:contain;
    height:30px;
    width:30px;
    z-index: 9;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    transition:all 300ms linear;
    opacity:0;
    visibility: hidden;
}


.gallery_section .single a:hover:before{
    opacity:1;
    visibility: visible;
}

.gallery_section .single a:hover:after{
    opacity:1;
    visibility: visible;
}

.gallery_section .top_borders{
    height:150px;
    width:150px;
    position:absolute;
    top:20px;
    left:20px;
}

.gallery_section .top_borders:before{
    position:absolute;
    content:'';
    left:0;
    top:-10px;
    height:100%;
    width:1px;
    background:#fff;
    transform:translateY(-20px);
    transition:all 300ms linear;
    opacity:0;
    visibility: hidden;
}

.gallery_section a:hover .top_borders:before{
    transform:translateY(00px);
    transition:all 300ms linear;
    opacity:1;
    visibility: visible;
}

.gallery_section .top_borders:after{
    position:absolute;
    content:'';
    left:-10px;
    top:0;
    height:1px;
    width:100%;
    background:#fff;
    transform:translateX(-20px);
    transition:all 300ms linear;
    opacity:0;
    visibility: hidden;
}

.gallery_section a:hover .top_borders:after{
    transform:translateX(00px);
    transition:all 300ms linear;
    transition-delay: 300ms;
    opacity:1;
    visibility: visible;
}

.gallery_section .bottom_borders{
    height:150px;
    width:150px;
    position:absolute;
    bottom:20px;
    right:20px;
}

.gallery_section .bottom_borders:before{
    position:absolute;
    content:'';
    right:0;
    bottom:-10px;
    height:100%;
    width:1px;
    background:#fff;
    transform:translateY(20px);
    transition:all 300ms linear;
    opacity:0;
    visibility: hidden;
}

.gallery_section a:hover .bottom_borders:before{
    transform:translateY(00px);
    transition:all 300ms linear;
    opacity:1;
    visibility: visible;
}

.gallery_section .bottom_borders:after{
    position:absolute;
    content:'';
    right:-10px;
    bottom:0;
    height:1px;
    width:100%;
    background:#fff;
    transform:translateX(20px);
    transition:all 300ms linear;
    opacity:0;
    visibility: hidden;
}

.gallery_section a:hover .bottom_borders:after{
    transform:translateX(00px);
    transition:all 300ms linear;
    transition-delay: 300ms;
    opacity:1;
    visibility: visible;
}

/* location advantages */

.locationMap_section ul li{
    list-style-type: none;
    text-align: center;
    background: #1e2731;
    color: #fff;
    padding: 15px 20px;
    transition:all 300ms linear;
}

.locationMap_section li:not(:last-child){
    border-bottom: 1px solid rgba(255 255 255 / 08%);
}

.locationMap_section li.focus{
    background:var(--brown)
}

.locationMap_section li p{
    margin:0;
    font-size:14px;
    line-height:20px;
    letter-spacing: 0.5px;
}

.locationMap_section .icon{
    height:50px;
    width:50px;
    object-fit: contain;
    filter:invert(1);
    margin-bottom:10px;
}

.locationMap_section iframe{
    width:100%;
    height:100%;
}

/* contact section*/

.contact_section{
    color:#fff;
    background:url('../assets/trehan-iris-broadway-Greno-west-bg.jpg') no-repeat center;
    background-size: cover;
    position: relative;
    border:none!important;
}

.contact_section:before{
    position:absolute;
    content:'';
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:#000000e3;
}

.contact_section .section_title:before{
    background: rgb(255 255 255 / 10%);
}

.contact_section .logo{
    max-width: 200px;
}

.contact_section .left_col ul{
    margin-top:40px;
}

.contact_section .left_col li{
    list-style-type: none;
    display:flex;
}

.contact_section li .icon{
    width:30px;
    height:30px;
}

.contact_section li .icon img{
    width:100%;
    height:100%;
    object-fit: contain;
    filter:invert(1)
}

.contact_section li .detail{
    width:calc(100% - 30px);
    padding-left:10px;
}

.contact_section li .title_sm{
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
    font-size:14px;
    font-family: 'Roboto_Medium';
    display: inline-block;
    color:var(--brown)
}

.contact_section li p{
    font-size:16px;
}

.contact_section li a{
    color:#fff;
    text-decoration: none;
}

.contact_section .form .form-control{
    height:55px;
}

.contact_section .form .form-control::placeholder{
    font-size:15px;
    letter-spacing: 0.5px;
}

.contact_section .form button{
    margin-top:15px;
    width:100%;
    height: 55px;
    letter-spacing: 1px;
}

.contact_section .section_title{
    margin-bottom: 55px;
}

.contact_section .social_links{
    display:flex;
    align-items: center;
    margin-top: 20px!important;
}

.contact_section .social_links li:not(:last-child){
    margin-right:15px;
}

.contact_section .social_links a{
    border:1px solid #525252;
    height:45px;
    width:45px;
    display:flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 4px; */
}

.contact_section .social_links img{
    max-width: 18px;
    max-height:18px;
    object-fit: contain;
}

/* footer */

footer{
    padding: 20px 60px;
    background: #181f26;
    color:#ddd;
    text-align: center;
}

footer p{
    margin:0;
    font-size:14px;
    line-height: 22px;
}

footer a{
    color: #fff !important;
    text-decoration: none!important;
}

/* price section */

.price_section .single{
    background:#fff;
    padding:50px 40px;
    text-align: center;
    position: relative;
    max-width: calc(100% - 49px);
    margin-left: auto;
}

.price_section .price{
    color:var(--brown);
    font-size: 40px;
    font-family: 'Roboto_Medium';
    border-bottom: 1px solid rgba(0 0 0 / 08%);
    padding-bottom: 20px;
    margin: 0;
}

.price_section .title{
    position: absolute;
    right: 100%;
    top: 0;
    background: #c4996b;
    color: #fff;
    padding: 40px 10px;
    writing-mode: tb;
    transform: rotate(180deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price_section ul{
    margin-top:30px;
}

.price_section li{
    list-style-type: none;
    text-align: left;
    display: flex;
}

.price_section li:not(:last-child){
    margin-bottom:10px;
}

.price_section li .left{
    /* display:block; */
    text-transform: uppercase;
    text-align: left;
    font-family: 'Roboto_Bold';
    letter-spacing: 0.5px;
}

.price_section li .right{
    text-align: right;
    font-size: 20px;
    margin-left: auto;
}

.price_section .single button{
    width:100%;
    margin-top:25px;
}

.modal .modal-content{
    border-radius: 0;
}

.modal .modal-body{
    padding:2px;
}

.modal .left_col{
background: url(../assets/gallery/gallery8.jpg) no-repeat center;
    background-size: cover;
    position: relative;
    /* display: flex; */
    /* align-items: center; */

}

.modal .left_col:before{
  position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background: rgb(255 255 255 / 77%);
    left: 0;
    top: 0;
}

.modal .left_col .content{
    position:relative;
    padding: 20px;
}

.modal .left_col .tag{
    background: rgb(30 39 49 / 85%);
    color: #fff;
    padding: 5px 30px;
}

.modal .left_col .tag p{
    margin:0;
}

.modal .left_col .title{
    color: #333;
    text-transform: uppercase;
    margin-top: 20px;
    background: rgb(255 255 255 / 80%);
    padding: 15px 30px;
    font-size: 20px;
    letter-spacing: 1px;
    width: 100%;
    font-family: 'Roboto_Bold';
}

.modal .project_logo{
  max-height: 150px;
    max-width: 170px;
    object-fit: contain;
}

.modal .right_col{
    padding:40px;
}

.modal .right_col h4{
    font-size:22px;
    margin-bottom:20px;
    font-family: 'Roboto_Medium';
}

.modal .form-control{
    min-height:45px;
}

.modal form .btn{
    width:100%;
    margin-top:10px;
}

.modal .modal-body button.close {
    background: #000;
    color: #fff;
    text-shadow: none;
    font-weight: normal;
    height: 40px;
    width: 40px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}





section#overview  .col-lg-6.left_col {position: relative;}



.video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #b99367;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #c19967;
  border-radius: 50%;
  transition: all 200ms;
}



.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

@-webkit-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}


button.btn.anm_btn.dark_btn.dark_btn_2 {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -50%);width: 25%;}
.floorPlan_section .tab-pane img {filter: blur(5px);}
.tab-content>.active {
    display: block;
    position: relative;
}


.mobile_section_floorplans a {color: #000;}
.mobile_section_floorplans {margin-bottom: 40px;}
.mobile_section_floorplans button.btn.anm_btn.dark_btn.dark_btn_2 { width: 43%; padding: 6px 10px;}
.mobile_section_floorplans h3.title {margin-top: 15px;background-color: #4f4b4b;font-size: 17px;color: #fff;padding: 5px;text-align: center;}
img.img-fluid.floor_plan_img {filter: blur(3px);}
.overview_img_box {position: relative;}
.mobile_section_floorplans a {
    display: block;
}
.mobile-section {
    position: fixed;
    bottom: 0;
    width: 100%;
    display:none;
    z-index: 99;
}
.mobile-section_2 {
    display: flex;
}
.mobile-section a {
    width: 50%;
    background-color: #4f4b4b;
}

.mobile-section a:hover,
.mobile-section a:focus,
.mobile-section a:active{
    background-color:#c4996b!important;
}

img.img-fluid.paymentplan_img {
    position: absolute;
    width: 25%;
    top: 4%;
    right: 4%;
}
a.btn.dark_btn.anm_btn.brochure_btn.brochure_btn2 {
    padding: 13px 20px;
}



.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}
@-webkit-keyframes bounceIn {
20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}
40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}
60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}
80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}
to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
}
@keyframes bounceIn {
20%,40%,60%,80%,from,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}
0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}
20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}
40%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}
60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}
80%{-webkit-transform:scale3d(.97,.97,.97);transform:scale3d(.97,.97,.97)}
to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}
}
.bounceIn{-webkit-animation-duration:.75s;animation-duration:.75s;-webkit-animation-name:bounceIn;animation-name:bounceIn}

/*@keyframes rocking {
0%{transform:rotate(0)}
25%{transform:rotate(0)}
50%{transform:rotate(2deg)}
75%{transform:rotate(-2deg)}
100%{transform:rotate(0)}
}*/
@-webkit-keyframes Gradient {
0%{background-position:0 50%}
50%{background-position:100% 50%}
100%{background-position:0 50%}
}
@-moz-keyframes Gradient {
0%{background-position:0 50%}
50%{background-position:100% 50%}
100%{background-position:0 50%}
}
@keyframes Gradient {
0%{background-position:0 50%}
50%{background-position:100% 50%}
100%{background-position:0 50%}
}
.effetMoveGradient,.effetMoveGradient:hover{/* text-shadow: 0 3px 6px #000000; */background: linear-gradient(-45deg,#696f12,#838a1b, #676d10,#898f3d);background-size:400% 400%;-webkit-animation:Gradient 3s ease infinite,rocking 3s ease infinite;animation-delay:2s;-moz-animation:Gradient 3s ease infinite,rocking 3s ease infinite;animation-delay:2s;animation:Gradient 3s ease infinite,rocking 3s ease infinite;animation-delay:2s;color: #fff;border:none;padding: 13px 10px;margin-top: 20px;}
.effetGradient,.effetGradient:hover{text-shadow:0 3px 6px #eab676;background-color:#fc3a64;background:linear-gradient(-45deg,#eab676,#fc3a64,#eab676,#fc3a64);background-size:400% 400%;-webkit-animation:Gradient 3s ease infinite;-moz-animation:Gradient 3s ease infinite;animation:Gradient 3s ease infinite;color:var(--colorBtn);border:none}
.effectScale{-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}
.effectScale:hover{-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease;-webkit-transform:scale(1.08);-moz-transform:scale(1.08);-ms-transform:scale(1.08);-o-transform:scale(1.08);transform:scale(1.08)}
.sectio-bro-btn{background-color:transparent;color:#eab676;border:1px solid #eab676}
.sectio-bro-btn:hover{text-shadow:0 3px 6px #eab676;background-color:#fc3a64;background:linear-gradient(-45deg,#eab676,#fc3a64,#eab676,#fc3a64);background-size:400% 400%;-webkit-animation:Gradient 3s ease infinite;-moz-animation:Gradient 3s ease infinite;animation:Gradient 3s ease infinite;color:var(--colorBtn);border:1px solid transparent}
.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}
.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}
/*@-webkit-keyframes slideInDown {
0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}
80%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
}
@keyframes slideInDown {
0%{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}
80%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
}*/
.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}

.high li p{
    line-height: 25px !important;

}