*{
    margin:0;
    padding:0;
}

:root{
    --yellow:#ffcc00;
}

@font-face {
    font-family: TitilliumWeb;
    src: url(../assets/fonts/TitilliumWeb-Light.ttf);
    font-weight: 300;
}

@font-face {
    font-family: TitilliumWeb;
    src: url(../assets/fonts/TitilliumWeb-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: TitilliumWeb;
    src: url(../assets/fonts/TitilliumWeb-SemiBold.ttf);
    font-weight: 500;
}
@font-face {
    font-family: TitilliumWeb;
    src: url(../assets/fonts/TitilliumWeb-Bold.ttf);
    font-weight: 600;
}

@font-face {
    font-family: TitilliumWeb;
    src: url(../assets/fonts/TitilliumWeb-Black.ttf);
    font-weight: 800;
}

html{
    overflow-x: hidden;
}

body{
    font-family: 'TitilliumWeb';
    overflow-x: hidden;
    padding-right:0!important;
}

.container{
    max-width:80%;
}

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

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

.bordered_btn{
    border: 2px solid #fff;
    color: #fff;
    padding: 13px 30px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition:all 200ms ease-in-out;
    font-weight: 500;
}

.bordered_btn:hover{
    border-color:var(--yellow);
    color:#333;
    background:var(--yellow);
}

.btn_dark{
    color: #fff!important;
    padding: 13px 30px;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition:all 200ms ease-in-out;
    background: #252531;
    border: 1px solid rgba(255 255 255 / 15%);
}

.btn_yellow{
    color: #fff!important;
    padding: 13px 30px;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition:all 200ms ease-in-out;
    background: #491130;
}

a,
a:hover{
    text-decoration: none;
    font-family: 'TitilliumWeb';
    color:#333;
}

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

li{
    list-style-type:None;
}

.form-control{
    min-height:46px;
}

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

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

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

.mb_5{
    margin-bottom:5px!important;
}

.mb_10{
    margin-bottom:10px!important;
}

.mb_14{
    margin-bottom:14px!important;
}

.mt_20{
    margin-top:20px!important;
}

.mt_30{
    margin-top:30px!important;
}

.mt_40{
    margin-top:40px!important;
}

.mt_100{
    margin-top:100px!important;
}

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

.px_7{
    padding-left:7px!important;
    padding-right:7px!important;
}

.px_10{
    padding-left:10px!important;
    padding-right:10px!important;
}

.pr_50{
    padding-right:50px!important;
}

.pr_80{
    padding-right:80px!important;
}

.pl_150{
    padding-left:150px!important;
}

.custom_section{
    padding:100px 0;
}

.sub_heading{
    position:relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display:inline-block;
    margin: 0;
    position: relative;
}

.sub_heading.text-center{
    display: table;
    margin: auto;
}

.sub_heading:before{
    position:absolute;
    content:'';
    height:3px;
    width:100%;
    background:var(--yellow);
    bottom:0px;
}

.sub_heading.dark_before:before{
    background:#666;
}

.heading{
    font-size: 80px;
    line-height: 80px;
    font-weight: 400;
    margin-bottom: 50px;
    position: relative;
}

section{
    background:#fff;
}

/* header */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index: 99;
    padding: 0;
    transition:all 200ms ease-in-out;
}

.navbar.active{
    background:rgba(255 255 255 / 95%);
    box-shadow: 0 5px 40px rgb(0 0 0 / 8%);
}

.navbar .container{
    display:block;
}

.navbar .top_row{
    text-align: right;
    padding: 10px 0;
    transition:all 200ms ease-in-out;
}

.navbar.active .top_row{
    padding:5px 0;
}

.navbar .call{
    display: inline-flex;
    justify-content: flex-end;
    color:#fff;
    align-items: center;
}

.navbar.active .call{
    color:#333;
}

.navbar .call small{
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 12px;
    color: #dfdfdf;
} 

.navbar.active .call small{
    color: #8f8f8f;
}

.navbar .call .l{
    line-height: 18px;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

.navbar.active .call .l{
    line-height: 16px;
    font-size: 16px;
}

.navbar.active .call .l{
    color:#333;
}

.navbar .call .mobile_icon{
    width: 34px;
    height: 34px;
}

.navbar .call .mobile_dark{
    display:none;
}

.navbar.active .call .mobile_dark{
    display:block;
}

.navbar.active .call .mobile_light{
    display:none;
}

.navbar .navbar-brand{
    padding:0;
    margin:0;
    max-width:220px;
    margin-top: -40px;
    transition:all 200ms ease-in-out;
}

.navbar.active .navbar-brand{
    max-width:180px;
    margin-top: -30px;
}

.navbar .logo_dark{
    display:None;
}

.navbar .bottom_row{
    display: flex;
}

.navbar .nav-item:not(:last-child){
    margin-right:15px;
}

.navbar .navbar-nav a{
    color:#fff;
    letter-spacing: 1px;
    font-size: 18px;
    transition:all 200ms ease-in-out;
}

.navbar.active .navbar-nav a{
    color:#333;
}

.navbar .navbar-collapse{
    position:relative;
}

.navbar .navbar-collapse:before{
    position:absolute;
    content:'';
    height:1px;
    width:calc(100% - 50px);
    background:rgba(255 255 255 / 15%);
    top: 0;
    right: 0;
}

.navbar.active .navbar-collapse:before{
    background:rgba(0 0 0 / 10%);
}

/* banner section */

.banner_section{
    position: relative;
    background: transparent;
}

#bannerCarousel{
    padding: 99px 0 108px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.banner_section .carousel-inner{
    position: absolute;
    height: 100%;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
}

#bannerCarousel .carousel-inner,
#bannerCarousel .carousel-item{
    height:100%;
}

#bannerCarousel .carousel-item img{
    height:100%;
    object-fit: cover;
    width: 100%;
}

#bannerCarousel .carousel-item{
    position:relative;
}

#bannerCarousel .carousel-item:before{
    position:absolute;
    content:'';
    left:0;
    top:0;
    height:100%;
    width:100%;
    /* background:rgba(0 0 0 / 50%); */
    background-image:linear-gradient(70deg, rgb(0 0 0 / 80%), rgb(0 0 0 / 55%), rgba(0 0 0 / 20%));
}

.banner_section .left_col{
    display: flex;
    align-items: center;
    position: unset;
}

.banner_section .banner_contents{
    z-index: 9;
}

.banner_section .banner_contents_row{
    width:100%;
    padding: 20px 0;
}

.banner_section .content_box{
    max-width: fit-content;
    padding: 50px 0;
    /* backdrop-filter: blur(3px); */
}

.banner_section .content_box .box{
    /* background: rgb(255 255 255 / 70%); */
    /* padding: 80px; */
    color: #fff;
}

.banner_section .content_box .project_logo{
    max-width:200px;
    margin-bottom: 5px;
}

.banner_section .content_box .location{
    font-size: 18px;
    letter-spacing: 0.5px;
}

.banner_section .content_box .typo{
    font-size: 40px;
    letter-spacing: 1px;
    font-weight: 400;
    margin-bottom: 0;
}

.banner_section .content_box .price{
    font-size: 70px;
    letter-spacing: 1px;
    color: #e1a823;
    /* text-shadow: -1px -1px 0 rgba(255, 255, 255, 0.2), 1px -1px 0 rgba(255, 255, 255, 0.2), -1px 1px 0 rgba(255, 255, 255, 0.2), 1px 1px 0 rgba(255, 255, 255, 0.2); */
    text-shadow: 2px 2px 0 rgb(255 255 255 / 25%);
    font-weight: 600;
    margin: 0;
    margin-top: 20px;
}

.banner_section .content_box .price span{
    display:block;
    font-size:20px;
}

.banner_section .possession{
    /* background: var(--yellow); */
    color: #fff;
    padding: 17px 40px;
    margin-top:25px;
    background: linear-gradient(-45deg,var(--yellow),#491130, var(--yellow),#491130);
    background-size: 400% 400%;
    -webkit-animation: Gradient 3s ease infinite;
    animation-delay: 2s;
    -moz-animation: Gradient 3s ease infinite;
    animation: Gradient 3s ease infinite;
    display: flex;
    align-items: center;
    max-width: max-content;
}

@-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%}
}

.banner_section .possession .l{
    color: #fff;
    line-height: 18px;
    /* padding: 25px 5px; */
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 500;
    margin-right: 20px;
    position:relative;
} 

.banner_section .possession .l:before{
    position:absolute;
    content:'';
    height:80%;
    width:2px;
    background:rgb(255 255 255 / 63%);
    top:50%;
    transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    -webkit-transform:translateY(-50%);
    right:-20px
}

.banner_section .possession .l span{
    display:block;
}

.banner_section .possession .r{
    margin-left: 20px;
}

.banner_section .possession h4{
    margin: 0;
    font-size: 30px;
    font-weight: 600;
}

.banner_section .payment_plan{
    display:flex;
    align-items: center;
    /* margin: 25px 0; */
    margin-top:25px;
}

.banner_section .payment_plan .icon{
    border: 2px solid #fff;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_section .payment_plan img{
    /* filter:invert(1); */
    max-width:35px;
}

.banner_section .payment_plan .text{
    margin-left:15px;
}

.banner_section .payment_plan h4{
    font-size: 45px;
    letter-spacing: 1px;
    margin-bottom: 0px;
}

.banner_section .payment_plan h4 span{
    animation: color-animation 2s linear infinite;
}

.banner_section .payment_plan h4 span:nth-child(1){
    --color-1: var(--yellow);
    --color-2: #fff;
    --color-3: #fff;
}

.banner_section .payment_plan h4 span:nth-child(2){
    --color-1: #fff;
    --color-2: var(--yellow);
    --color-3: #fff;
}

.banner_section .payment_plan h4 span:nth-child(3){
    --color-1: #fff;
    --color-2: #fff;
    --color-3: var(--yellow);
}

@keyframes color-animation {
    0%    {color: var(--color-1)}
    33.33%    {color: var(--color-1)}
    33.34%   {color: var(--color-2)}
    66.66%   {color: var(--color-2)}
    66.67%   {color: var(--color-3)}
    100%   {color: var(--color-3)}
}

.banner_section .payment_plan p{
    margin:0;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #dfdfdf;
}

.banner_section .brochure_btn{
    margin-top:50px;
}

.banner_section .right_col{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.banner_section .form_box{
    backdrop-filter: blur(4px);
}

.banner_section .form_box .box{
    background:rgba(255 255 255 / 70%);
    padding: 50px;
}

.banner_section .project_logo{
    max-width:200px;
}

.banner_section .form_box .location{
    font-size: 18px;
    margin: 6px 0 0;
}

.banner_section .additional{
    display: flex;
    /* padding-left: 200px; */
    position: absolute;
    bottom: 0;
    left: 0;
}

.banner_section .additional .image_col{
    position: absolute;
    width: 200px;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgb(255 255 255 / 90%);
    /* padding: 15px; */
    text-align: center;
}

.banner_section .image_col img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.banner_section .additional .content_col{
    background: #491130;
    padding: 25px 30px;
}

.banner_section .additional .content_col ul{
    display: flex;
    align-items: center;
}

.banner_section .additional .content_col li{
    list-style-type: none;
    /* padding:0 15px; */
    position:relative;
}

.banner_section .additional li:not(:last-child){
    margin-right:50px;
}

.banner_section .additional li:not(:last-child):before{
    position:absolute;
    content:'';
    height:50%;
    width:1px;
    background:rgba(0 0 0 / 15%);
    top:50%;
    transform:translateY(-50%);
    right:-25px;
}

.banner_section .content_col h5{
    position:relative;
    margin: 0;
    /* padding-bottom: 5px;
    margin-bottom: 8px; */
    font-size: 18px;
    color:#fff;
    letter-spacing: 0.5px;
}

.banner_section .content_col p{
    margin:0;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* .banner_section .content_col h5:before{
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 30%;
    height: 2px;
    background: rgba(0 0 0 / 15%);
} */

.banner_section .arrow_col button{
    position:relative;
    height: 50%;
    width: 60px;
    opacity: 1;
}

.banner_section .arrow_col{
    background:#252531;
}

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

.banner_section .carousel-indicators{
    display:none;
}

.banner_section .form_heading{
    margin-top:15px;
    letter-spacing: 1px;
    margin-bottom:15px;
}

.banner_section .form{
    max-width:500px;
}

.banner_section .form button[type=submit]{
    width:100%;
}

/* patch section */

.patch_section{
    padding: 7px;
}

/* .overview_section */

.overview_section{
    /* overflow: hidden; */
    background: #fff;
    position:relative;
    /* margin-bottom: 500px; */
}

.overview_section .container{
    max-width: 90%;
    margin-right:0;
}

.overview_section .bg_image{
    position:absolute;
    content:'';
    background:url('../assets/overview-img2.webp') no-repeat center;
    background-size:cover;
    left:0;
    top:0;
    height:100%;
    width:60%;
}

.overview_section .bg_image:before{
    position:absolute;
    content:'';
    left:0;
    top:0;
    width:100%;
    height:100%;
    background: rgb(233 233 233 / 90%);
}

.overview_section .right_col img{
    position: absolute;
    width: 100%;
    margin-top: 50px;
    height: calc(100% + 50px + 60px);
    top: 0;
    left:0;
    object-fit: cover;
}

.overview_section p{
    line-height:28px;
    font-size:18px;
    letter-spacing: 1px;
}

.overview_section .high{
    display:flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.overview_section .high li{
    font-size: 80px;
    line-height: 60px;
    font-weight: 600;
    text-align: center;
    color: #e1a823;
    position: relative;
    padding: 15px;
    background-image: linear-gradient(180deg, transparent, rgba(255 255 255 / 80%));
}

.overview_section .high li:before{
    position: absolute;
    font-size: 80px;
    line-height: 70px;
    bottom: 70%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    white-space: nowrap;
    color:#fff;
    text-shadow: -1px 0 1px rgb(0 0 0 / 12%), 0 1px 1px rgb(0 0 0 / 12%), 1px 0 1px rgb(0 0 0 / 12%), 0 -1px 1px rgb(0 0 0 / 12%);
    z-index: -1;
}

.overview_section .high li:nth-child(1):before{
    content: '4 BHK';
}

/* .overview_section .high li:nth-child(2):before{
    content: '3 BHK';
} */

.overview_section .high li span{
    font-size: 18px;
    display: block;
    font-weight: 400;
    color: #fff;
    background: #252531;
    line-height: 20px;
    padding: 8px 15px;
    margin-top: 10px;
}

.overview_section .high li:not(:first-child){
    margin-left:40px;
}



/* price section */

.price_section{
    padding-top: 150px;
}

.price_section .right_col p{
    margin: 0;
    font-size: 17px;
    letter-spacing: 1px;
}

.price_section .card{
    padding: 60px 40px;
    background: #f1f1f1;
    border: 1px solid rgba(0 0 0 / 5%);
    border-radius: 0;
    box-shadow: 10px 10px 40px rgb(0 0 0 / 6%);
    overflow: hidden;
    margin: 15px 0;
    transition:all 200ms ease-in-out
}

.price_section .card:after{
    position:absolute;
    content:'';
    background:url('../assets/price_bg.html') no-repeat center;
    background-size:cover;
    width:100%;
    height:100%;
    top:0;
    left:0;
    z-index: 0;
    opacity:0;
    transition:all 200ms ease-in-out
}

.price_section .card .sold_out_patch{
    position:absolute;
    max-width: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

.price_section .card.active:after{
    opacity:1;
    transition:all 200ms ease-in-out
}

.price_section .card.active{
    background: #1a1a24;
    color:#fff;
}

.price_section .card:before{
    position: absolute;
    content: '';
    height: 150px;
    width: 150px;
    right: -150px;
    bottom: -150px;
    background: var(--yellow);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    transition:all 300ms ease-in-out;
    z-index: 1;
}

.price_section .card.active{
    border:none;
}

.price_section .card.active:before{
    right: 0px;
    bottom: 0px;
} 

.price_section .card .data{
    position: relative;
    z-index: 1;
}

.price_section .card .icon{
    font-weight: 700;
    font-size: 200px;
    position: absolute;
    top: -40px;
    opacity: 0.1;
    line-height: 120px;
    margin: 0;
    left: -30px;
}

.price_section .card .typo{
    font-size: 24px;

}

.price_section .card .price{
    font-size: 44px;
    width: fit-content;
    text-align: center;
    margin: 0;
    font-weight: 600;
}

.price_section .card .price span{
    font-size: 30px;
    font-weight: 400;
}

.price_section .card ul{
    margin: 20px 0 30px;
}

.price_section .card .l{
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 2px;
}

.price_section .card .r{
    font-weight: 400;
}

.price_section .card .btn{
    width:max-content;
}

.price_section .card .btn.disabled{
    cursor: auto;
}



/* offer section */

.offer_section{
    padding:7px;
    padding-top: 100px;
}

.offer_section .heading{
    margin-bottom:60px;
}

.offer_section .image_col{
    max-width:30%;
    flex:0 0 30%;
    position:relative;
}

.offer_section .image_col:before{
    position:absolute;
    content:'';
    height:100%;
    width:100%;
    left:0;
    top:0;
    background:rgba(0 0 0 / 30%)
}

.offer_section .image_col .left_texts{
    position: absolute;
    bottom: 30px;
    left: 30px;
    content: '';
}

.offer_section .image_col .builder_logo{
    max-width:200px;
}

.offer_section .image_col .possession{
    color: #fff;
    font-size: 44px;
    font-weight: 400;
    background: rgba(0 0 0 / 50%);
    padding: 5px 20px;
    margin-top: 20px;
}

.offer_section .image_col .right_texts{
    position: absolute;
    bottom: 30px;
    right: 30px;
    content: '';
}

.offer_section .image_col .title{
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    background: rgba(0 0 0 / 50%);
    padding: 5px 20px;
    margin-top: 20px;
    letter-spacing: 1px;
    display:table;
    margin-left: auto;
}

.offer_section .image_col .price{
    color: #333;
    font-size: 40px;
    font-weight: 600;
    background: var(--yellow);
    padding: 5px 20px;
    margin-top: 10px;
    letter-spacing: 1px;
}

.offer_section .content_col{
    background:var(--yellow);
    padding:60px;
    text-align: center;
    max-width:40%;
    flex:0 0 40%;
}

.offer_section .content_col:before{
    position:absolute;
    content:'';
    top: 0;
    left:50%;
    transform:translateX(-50%); 
    -moz-transform:translateX(-50%);
    -webkit-transform:translateX(-50%);
    height:15px;
    width:30px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background:#fff;
}

.offer_section .offer_logo{
    max-width: 220px;
    max-height: 80px;
    margin-bottom: 20px;
}

.offer_section .subT{
    font-size: 45px;
    font-weight: 600;
    font-style: italic;
    line-height: 55px;
    margin-bottom: 30px;
    text-align: center;
    margin-left: -20px;
}

.offer_section .subT span:nth-child(2){
    margin-left: 100px;
    font-size: 28px;
    line-height: 35px;
    display: block;
}

.offer_section .typo{
    display:flex;
    align-items: center;
    justify-content: center;
}

.offer_section .typo .l{
    text-align: right;
    padding-right:20px;
    position:relative;
}

.offer_section .typo .l:before{
    position:absolute;
    content:'';
    top:0;
    right:0;
    height:100%;
    width:2px;
    background:rgba(0 0 0 / 20%);
}

.offer_section .typo .r{
    text-align: left;
    padding-left:20px;
}

.offer_section .typo h3{
    font-size: 24px;
    margin: 0;
    line-height: 30px;
}

.offer_section .typo span{
    display:block;
    font-size:30px;
}

.offer_section .enquire_btn{
    margin-top: 40px;
    color: #444;
    border-color: #666;
    font-size: 14px;
    padding: 10px 20px;
}

.offer_section .offerImage{
    height:100%;
    width:100%;
    object-fit: cover;
}

/* amenities section */

.amenities_section{
    position:relative;
    padding:200px 0;
}

.amenities_section:before{
    position:absolute;
    content:'';
    height:100%;
    width:100%;
    left:0;
    top:0;
    background-image: linear-gradient(132deg, rgb(37 37 49 / 80%), rgb(76 61 0 / 60%));
}

.amenities_section .heading{
    margin-bottom: 80px;
}

.amenities_section ul{
    display:flex;
    flex-wrap: wrap;
}

.amenities_section li{
    max-width:25%;
    flex:0 0 25%;
    padding: 15px;
}

.amenities_section .image{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -9;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease-in-out;
}

.amenities_section .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
  }

.amenities_section li:first-child .image {
    opacity: 1;
    visibility: visible;
}
  
.amenities_section .link {
    position: relative;
    font-size: 20px;
    text-decoration: none;
    color: #FFF;
    transition: opacity .3s ease-in-out;
    border: 1px solid rgb(255 255 255 / 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.amenities_section .single.active .link{
    /*background:#e1a823;*/
	background:var(--yellow);
    color: #fff;
}

.amenities_section .single.active .link + .image {
    opacity: 1;
    visibility: visible;
}

.amenities_section .container.hover .link {
    opacity: .4;
  }

.amenities_section .single.active .link {
    opacity: 1;
}

/* floor_plans */

.floor_plans .left_col li{
    display:none
}

.floor_plans .left_col li.active{
    display:block;
}

.floor_plans table{
    margin-bottom: 5px;
}

.floor_plans th{
    font-weight:500;
}

.floor_plans .nav-tabs{
    border:none;
}

.floor_plans .nav-tabs .nav-link{
    border: none;
    margin-bottom: 0;
    color: #333;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 18px;
    padding: 2px 0;
    background: transparent;
    text-transform: capitalize;
}

.floor_plans .nav-tabs .nav-link.active{
    border-bottom: 3px solid #999;
    background:transparent;
}

.floor_plans .nav-item:not(:last-child){
    margin-right:30px;
}   

/* location map */

.location_map{
    position:relative;
    /* padding-bottom: 160px; */
    /* background: #eee; */
}

.locationMapImg{
    max-height:600px;
    width:100%;
    object-fit: cover;
}

.location_map .content{
        position: absolute;
    top: 100px;
    background: #491130;
    padding: 80px 50px;
    max-width: 35%;
    color: #fff;
}

.location_map ul{
    padding-left: 20px;
}

.location_map li{
    font-size: 18px;
    list-style-type: circle;
}

.location_map li:not(:last-child){
    margin-bottom: 8px;
}

/* gallery section */

.gallery_section{
    padding-top:180px;
    padding-bottom:0;
}

.gallery_section .gallery_carousel {
    max-width:80%;
    margin:auto;
}

.gallery_section .owl-stage-outer{
    overflow:visible!important;
}

.gallery_section .owl-item img{
    height:600px;
    width:100%;
    object-fit: cover;
}

.gallery_section .item{
    position:relative;
}

.gallery_section .item:before{
    position:absolute;
    content:'';
    height:100%;
    width:100%;
    left:0;
    top:0;
    background:rgba(0 0 0 / 40%);
}

.gallery_carousel .owl-dots{
    display:none;
}

.gallery_carousel .owl-nav{
    margin:0;
}

.gallery_carousel .owl-nav button{
    height: 50px;
    width: 50px;
    position: absolute;
    top: 50%;
    left: -20%;
    background: rgb(26 26 36 / 50%)!important;
    margin: 0!important;
    border-radius: 0!important;
    transition:all 300ms ease-in-out;
}

.gallery_carousel .owl-nav button.owl-next{
    left:unset;
    right:-20%;
}

.gallery_carousel .owl-nav img{
    filter: invert(1);
    max-width: 15px;
}

.gallery_carousel .owl-nav button:hover{
    background:var(--yellow)!important;
}

.gallery_carousel .owl-nav button:hover img{
    filter:unset;
}

/* construction section */

.construction_section .nav-tabs{
    margin-bottom:40px;
}

.construction_section .single{
    margin:10px 0;
}

.construction_section .single a{
    display:inline-block;
    position:relative;
}

.construction_section .single a:before{
    position:absolute;
    content:'';
    height:100%;
    width:100%;
    background:rgba(0 0 0 / 50%);
    opacity:0;
    transition:all 300ms ease-in-out
}

.construction_section .single a:hover:before{
    opacity:1;
}

.construction_section .single img{
    /* height:300px; */
    width:100%;
    /* object-fit: cover; */
}

.construction_section .single h4{
    background: #fc0;
    margin: 0;
    padding: 10px;
    font-size: 18px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/* other_projects */

.other_projects{
    background: #eee;
}

.other_projects .single{
    background:#fff;
    /* padding:10px; */
    position:relative;
    height: 500px;
}

.other_projects .single a{
    height:100%;
    width:100%;
    display:flex;
}

.other_projects .single a:before{
    position:absolute;
    content:'';
    height:100%;
    width:100%;
    left:0;
    top:0;
    background-image:linear-gradient(180deg, transparent, rgba(0 0 0 / 50%), rgba(0 0 0 / 90%));
    z-index: 1;
}

.other_projects .single .box_patch{
    position: absolute;
    z-index: 10;
    max-width: 100px;
    left: 10px;
    top: -40px;
}

.other_projects .single .free_offers{
    position: absolute;
    z-index: 1;
    right: 0;
    background: rgba(255 255 255 / 80%);
    padding: 8px 15px;
    border: 4px solid rgb(120 15 25 / 30%);
}

.other_projects .free_offers h5{
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3px;
}

.other_projects .free_offers li{
    display:flex;
    align-items: center;
}

.other_projects .free_offers .icon img{
    width:18px;
    height:18px;
    object-fit: contain;
}

.other_projects .free_offers .text{
    font-size:12px;
    margin-left:8px;
}

.other_projects .single .thumbnail{
    position:absolute;
    left:0;
    top:0;
    height:100%;
    width:100%;
    z-index: 0;
    object-fit: cover;
}

.other_projects .logo{
    max-width: 200px;
    max-height: 100px;
    object-fit: contain;
}

.other_projects .price{
    font-size:40px;
    margin:20px 0 10px;
    font-family: 'Roboto';
    font-weight: 700;
}

.other_projects .content{
    position: absolute;
    z-index: 9;
    color: #fff;
    bottom: 0;
    left:0;
    width:100%;
    padding:20px;
}

.other_projects .content p{
    margin:0;
    position:relative;
    max-width: fit-content;
    padding-left:8px;
    font-size:15px;
}

.other_projects .content p:before{
    position:absolute;
    content:'';
    left:0;
    top:10px;
    height:1px;
    width:5px;
    background:#fff;
}

.other_projects .add{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.other_projects .add li{
    max-width: calc(50% - 10px);
    flex:0 0 calc(50% - 10px);
    margin:5px 0;
}

.other_projects .add li:nth-child(even){
    text-align: right;
}

.other_projects .add li:nth-child(even) p{
    margin-left: auto;
}

.other_projects .add span{
    text-transform: uppercase;
    font-size:14px;
    letter-spacing: 1px;
    font-weight: 600;
}

.other_projects .single .btn_yellow{
    margin-top: 15px;
    font-size: 12px;
    padding: 7px 15px;
    height: auto;
}

.other_projects .type p{
    font-size: 18px;
    font-weight: 500;
    color: var(--yellow);
}

/* footer top */

.footer_top{
    background: #1a1a24;
    color: #fff;
}

.footer_top .left_col p{
    font-size:17px;
    letter-spacing: 0.5px;
    line-height:26px;
}

.footer_top .form_heading{
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 30px;
}

.footer_top button[type=submit]{
    width:100%;
}

.footer_top .right_col .box{
    position:relative;
}

.footer_top .right_col .box:before{
    position:absolute;
    content:'';
    height:50px;
    width:50px;
    left:-35px;
    top:-30px;
    /*border-left:6px solid var(--yellow);
    border-top:6px solid var(--yellow);*/
	border-left:6px solid #fff;
    border-top:6px solid #fff;
}

.footer_top .call{
    display: flex;
    /*color: var(--yellow);*/
	color: #fff;
    align-items: center;
    margin-bottom: 25px;
}

.footer_top .call .l {
    line-height: 26px;
    font-size: 26px;
}

.footer_top .call small {
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 15px;
    color: #dfdfdf;
}

.footer_top .call .mobile_icon {
    width: 40px;
    height: 40px;
}

footer{
    background:#000;
    padding:10px 0;
    color:#fff;
    text-align: center;
}

footer p{
    margin:0;
    font-size:14px;
    letter-spacing: 1px;
}

footer strong{
    font-weight: 500;
}

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

/* scroll to top */

.backToTop {
    display: inline-block;
    background-color: #252531;
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 0px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
  }
  .backToTop img{
      filter:invert(1)
  }
  .backToTop:hover {
    cursor: pointer;
    background-color: var(--yellow);
  }
  .backToTop:active {
    background-color: var(--yellow);
  }
  .backToTop:hover img,
  .backToTop:active img{
      filter:unset
  }
  .backToTop.show {
    opacity: 1;
    visibility: visible;
  }

.with-caption{
    cursor: zoom-in;
}

/* modal */

.modal {
    padding-right:0!important;
}

.modal .close{
    position:absolute;
    content: '';
    top: 20px;
    right: 20px;
    color: #fff;
    font-weight: 500;
    text-shadow: none;
    font-size: 40px;
}

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

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

.modal .modal-body .close{
    position: absolute;
    right: 0;
    top: 0;
    background: #252531;
    opacity: 1;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    line-height: 30px;
    padding-bottom: 5px;
    z-index: 9;
}

.modal .left_col{
    background:url('../assets/modal_bg.webp') no-repeat center;
    background-size:cover;
    position:relative;
    display: flex;
    align-items: flex-end;
}

#modal1 .left_col{
    background:none;
}

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

#modal1 .left_col:before{
    display:None;
}

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

.modal .left_col .location{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.modal .left_col .type{
    font-size: 28px;
    margin-bottom: 20px;
}

.modal .left_col .tag{
    background: rgb(30 39 49 / 85%);
    color: #fff;
    padding: 8px 25px;
    letter-spacing: 1px;
}

.modal .left_col .tag h4{
    margin:0;
    font-size: 26px;
}

.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:160px;
    max-width:160px;
    object-fit: contain;
    margin-bottom: 10px;
}

.modal .right_col{
    padding:40px;
    background:var(--yellow);
}

#modal1 .right_col{
    padding:80px 40px;
}

.modal .right_col h4{
    font-size:24px;
    margin-bottom:20px;
    letter-spacing: 1px;
    color: #fff;
}

.modal .form-control{
    min-height:45px;
    background: rgb(255 253 255 / 82%);
    border: 2px solid rgba(255 255 255 / 50%);
}

.modal .form-control::placeholder{
    color:#555;
}

.modal button[type=submit]{
    font-size: 15px;
    width: 100%;
}

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

.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; font-size: 13px; padding: 7px 10px;}
.mobile-section .btn:not(:last-child):before{position:absolute; content:''; width:1px; height:16px; background-color:rgb(51 51 51 / 60%); display:block; right:0; top:50%; transform:translateY(-50%); opacity:1; left:unset;}

/* 18-june */



.nav-tabs{border:none;}

.nav-tabs .nav-item{
    margin-right:20px;
}

.nav-tabs .nav-link{
    background:#e1e1e1;
    color:#333;
    border:none;
    margin:0;
    border-radius: 0;
    padding: 13px 30px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-tabs .nav-link.active{
    background:var(--yellow);
    color:#333;
    font-weight: 600;
}

.other_projects .single .shops_patch{
    max-width: 100px;
}

.other_projects .single .possession_patch{
    max-width: 100px;
    right: 10px;
    left: unset;
}


.shado
{
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
