
/* playfair display */

@font-face {
    font-family: "Playfair Display";
    font-display: swap;
    src: url("../fonts/Playfair_Display/PlayfairDisplay-Regular.woff2") format("woff2"),
        url("../fonts/Playfair_Display/PlayfairDisplay-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Playfair Display";
    font-display: swap;
    src: url("../fonts/Playfair_Display/PlayfairDisplay-Medium.woff2") format("woff2"),
        url("../fonts/Playfair_Display/PlayfairDisplay-Medium.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "Playfair Display";
    font-display: swap;
    src: url("../fonts/Playfair_Display/PlayfairDisplay-SemiBold.woff2") format("woff2"),
        url("../fonts/Playfair_Display/PlayfairDisplay-SemiBold.ttf") format("truetype");
    font-weight: 600;
}

@font-face {
    font-family: "Playfair Display";
    font-display: swap;
    src: url("../fonts/Playfair_Display/PlayfairDisplay-Bold.woff2") format("woff2"),
        url("../fonts/Playfair_Display/PlayfairDisplay-Bold.ttf") format("truetype");
    font-weight: 700;
}


:root{
    --color1:#C19444;
    --color2:#008E89;
    --color3:#76500C;
    --color4:#fff8f6;
    --playfair_font:"Playfair Display", serif;
    --roboto_font:"Roboto", sans-serif;
}

html{
    /* overflow-x:hidden; */
    scroll-behavior: smooth;
}

body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden!important;
    font-family: var(--roboto_font);
    
    /* color:#fff; */
    /* background:var(--color2); */
}

#smooth-content{
    background: url('../assets/images/page_bg.webp') no-repeat top center;
    height: max-content;
    background-size: cover;
    scroll-behavior: smooth;
}


h1, h2, h3 {
    font-family: var(--playfair_font);
    font-weight: 700;
}

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

.btn_style1{
    /* border:1px solid #fff; */
    background:#fff;
    color:#343434;
    padding:12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 12px;
}

.btn_style1.dark{
    background:var(--color1);
    color:#fff;
}

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

.overflow-hidden{
    overflow: hidden !important;
}

ul{
    list-style-type: none;
}


.mx_-30{
    margin-left: -30px;
    margin-right:-30px;
}

.mx_-60{
    margin-left: -60px;
    margin-right:-60px;
}

.mx_-100{
    margin-left: -100px;
    margin-right:-100px;
}

.px_30{
    padding-left: 30px;
    padding-right:30px;
}

.px_60{
    padding-left: 60px;
    padding-right:60px;
}

.px_100{
    padding-left: 100px;
    padding-right:100px;
}

.mb_50{
    margin-bottom:50px;
}

.pt_120{
    padding-top:120px;
}

.pb_120{
    padding-bottom:120px;
}

/* vector */

.vector1{
    position:absolute;
    max-width: 300px;
}

.vector1.bottom{
    bottom:0;
}

.vector1.left{
    left:-80px;
}

.form_style2 label{
    font-size: 14px;
    color: #333;
}

.form_style2 .form-control {
    background: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #989898;
    padding: 10px 0;
}

.form_style2 .form-control::placeholder{
    font-size:14px;
    color:#00000080;
}

.form_style2 .enquire_btn {
    background: #000;
    color: #fff;
    width: 100%;
    height: 50px;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 20px;
}

.section{
    padding:120px 0;
}

.sec_heading {
    margin-bottom: 70px;
}

.sec_heading.center{
    text-align: center;
}

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

.bg1{
    background:var(--color4);
}

.bg2{
    background:#FFF8F6;
}

.sec_heading .tagline{
    text-transform: uppercase;
    font-family:var(--roboto_font);
    letter-spacing: 1px;
    font-size:18px;
    font-weight: 500;
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
    color:#414141;
}

.sec_heading .tagline:before{
    position:absolute;
    content:'';
    width:65px;
    height:3px;
    background:url('../images/icons/h_arrow.svg') no-repeat center center;
    background-size: contain;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
}

.sec_heading .title{
    color: var(--color2);
    font-size: 60px;
    line-height: 60px;
    letter-spacing: 0px;
    text-transform: capitalize;
    font-weight: 500;
}

.sec_heading.right .title{
    margin-left:auto;
}

.sec_heading .title.dark{
    color:#111;
}

.sec_heading.center .title{
    max-width: 50%;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.border_top{
    position:relative;
}

/*.border_top:before{
    position:absolute;
    content:'';
    height:50px;
    width:40%;
    top:-25px;
    left:50%;
    /~ background:rgb(49 49 49 / 30%); ~/
    background:url('../assets/images/vectors/vector2.svg') no-repeat center;
    background-size:contain;
    transform:translateX(-50%);
    -webkit-transform:translateX(-50%);
    -ms-transform:translateX(-50%);
}*/

.border_top:before{
    position: absolute;
    content: '';
    height: 1px;
    width: 80%;
    top: 0;
    left: 50%;
    background: rgb(49 49 49 / 30%);
    background-size:contain;
    transform:translateX(-50%);
    -webkit-transform:translateX(-50%);
    -ms-transform:translateX(-50%);
}

/* header */

.navbar{
    position:fixed;
    top:0;
    width: 100%;
    z-index: 992;
    padding:25px 0;
    transition:all 0.3s ease-in-out;
}

.navbar.fixed{
    position:fixed;
    left:0;
    top:0;
    width:100%;
    padding:5px 15px;
    background:#007b77;
}

.navbar.animate{
    top:-97px;
    transition:all 0.3s ease-in-out;
}

.navbar .navbar-brand{
    max-width: 200px;
    width:100%;
    margin: 0;
    padding: 0;
    transition:all 0.3s ease-in-out;
}

.navbar.fixed .navbar-brand{
    max-width: 180px;
    padding: 0;
    width:100%;
}

.navbar .navbar-brand .logo.white,
.navbar.fixed .navbar-brand .logo.color{
    display:none;
}

.navbar.fixed .navbar-brand .logo.white{
    display:block;
    width: auto;
    /* height: 62px; */
    text-align: center;
    margin: 0px auto;
    filter: brightness(0) invert(1);
}

.navbar .navbar-collapse{
    flex:1;
}

.navbar .navbar-nav{
    align-items: center;
}

.navbar .navbar-nav .nav-item{
    margin-right:25px;
}

.navbar .nav-link{
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 15px;
}

.navbar.fixed .nav-link{
    font-size: 13px;
    letter-spacing: 1px;
}

.navbar.design2 .nav-link{
    color:#494949;
}

.navbar.design2.fixed .nav-link{
    color:#fff;
}

.navbarBackdrop{
    position: fixed;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0 0 0 / 30%);
    z-index: 999;
    animation: fades 300ms;
}

.navbar .header_btn .nav-link{
    border:2px solid #fff;
    color:#fff;
    border-radius: 500px;
    padding: 8px 22px;
    font-size: 14px;
}

.navbar.fixed .header_btn .nav-link{
    border-width: 1px;
    font-size: 12px;
    background: #ffffff;
    color: var(--color2);
}

.navbar .navbar-toggler span{
    height: 2px;
    width: 34px;
    background: #fff;
    display: block;
    margin: 7px 0;
    margin-left: auto;
}

.navbar .navbar-toggler span:nth-child(2){
    width: 24px;
}

.navbar .collapse2{
    display:none!important;
}

/* hero section */

.hero_section{
    position: relative;
    height: 100vh;
    padding-top: 150px;
    padding-bottom: 100px;
}

.hero_section:before{
    position:absolute;
    content:'';
    left:0;
    top:0;
    width:100%;
    height:100%;
    /* background-image: linear-gradient(0, rgb(0 142 137 / 51%), transparent); */
    z-index: 1;
}

.hero_section.micro_hero{
    padding:0;
}

.hero_section.la_mandre:before{
    position:absolute;
    content:'';
    left:0;
    top:0;
    width:100%;
    height:100%;
    /* background-image:linear-gradient(20deg, rgb(80 61 28 / 90%), #503d1c00); */
    z-index: 1;
}

.hero_section:after{
    position:absolute;
    content:'';
    left:0;
    top:0;
    width:100%;
    height:150px;
    background-image: linear-gradient(0, transparent, rgb(253 253 253 / 40%));
    z-index: 1;
}

.hero_section.micro_hero:after{
    background-image: linear-gradient(0, transparent, rgb(253 253 253));
}

.hero_section .container,
.hero_section .container > .content{
    height:100%;
}

.hero_section video,
.hero_section .hero_img{
    position:absolute;
    top:0;
    left:0;
    height:100%;
    width: 115%;
    object-fit: cover;
    left: -15%;
}

.hero_section.micro_hero .hero_img{
    width:100%;
    left:0;
}

.hero_section .content{
    position:relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 100%;
    z-index: 9;
}

.hero_section.micro_hero .content{
    max-width: 500px;
    margin: auto;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    padding-top: 80px;
}

.hero_section.micro_hero .content:before{
    position:absolute;
    content:'';
    height:100%;
    left:0;
    top:0;
    width:100%;
    background:linear-gradient(0, transparent, #ffffffba, #fffffff7, #fffffff7, #ffffffba, transparent);
    z-index: -1;
}

.hero_section .content .hero_title{
    color: #008e89;
    font-size: 45px;
    line-height: 90px;
    font-weight: 400;
    margin-bottom: 30px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero_section.micro_hero .project_logo{
    margin-bottom:40px;
}

.hero_section.micro_hero .project_logo img{
    max-width: 300px;
    /* max-height: 58px; */
}

.hero_section .content .hero_type{
    font-size: 24px;
    /* text-transform: uppercase; */
    color: #fff;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 2px;
    text-align: center;
    max-width: 80%;
    font-weight: 400;
}

.hero_section.micro_hero .hero_type{
    text-transform: uppercase;
    font-size: 16px;
    max-width: 100%;
    line-height: 25px;
    font-weight: 500;
    color:#000;
}

.hero_section .content .price_col{
    color:#fff;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    padding: 15px;
    display: flex;
}

.hero_section.micro_hero .content .price_col{
    color:#000;
    border-color:#0000006e;
}

.hero_section .content .price{
    display:flex;
    font-size: 32px;
    align-items: flex-end;
}

.hero_section .content .price span{
    font-weight: 400;
    /* font-family: var(--playfair_font); */
    height:100%;
    display:flex;
    align-items: flex-end;
    font-size: 38px;
}

.hero_section .content .price h2{
    font-size: 45px;
    line-height: 58px;
    margin: 0 5px 0 10px;
    font-weight: 400;
}

.hero_section .price_col p{
    position: relative;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    /* margin-top: 10px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right:30px;
    margin-right:30px;
}

.hero_section .price_col p:before{
    position:absolute;
    content:'';
    height:40px;
    width:1px;
    background:#fff;
    right:0;
}

.hero_section.micro_hero .price_col p:before{
    background:#0000006e;
}

.hero_section .price_col p span{
    display:block;
}

.hero_section .content .btn{
    font-size: 14px;
    padding: 14px 42px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
}

.hero_section.micro_hero .price_col p{
    font-size: 14px;
}

.hero_section.micro_hero .content .price{
    font-size: 30px;
}

.hero_section.micro_hero .content .price h2{

}

.hero_section.micro_hero .content .btn{
    background: var(--color2);
    color: #fff;
    font-size: 12px;
    padding: 12px 32px;
}

/* about section */

.about_section .vector1{
    bottom: -220px;
}

.about_section .content{
    /* padding:50px 0; */
}

.about_section .img_col{
    height:100%;
    position:relative;
}

.about_section .img_col img{
    height:100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about_section .content .txt{
    padding-left: 150px;
    position:relative;
}

.about_section .content .txt:before{
    position: absolute;
    content: '';
    height: 1px;
    width: 110px;
    background: #909090;
    left: 0;
    top: 10px;
}

.about_section .content .txt p{
    margin-bottom:50px;
    line-height: 26px;
    text-transform: capitalize;
}

/* projects_section */

.projects_section .box{
    height:calc(100vh - 150px);
    padding:50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position:relative;
    z-index: 1;
}

.projects_section .box:before{
    position:absolute;
    content:'';
    height:100%;
    width:100%;
    top:0;
    left:0;
    background-image: linear-gradient(0, black, transparent);
}

.projects_section .single_col:nth-child(1) .box:before{
    background-image: linear-gradient(0, #5E3322, transparent);
}

.projects_section .single_col:nth-child(2) .box:before{
    background-image: linear-gradient(0, #4B2B11, transparent);
}

.projects_section .single_col:nth-child(3) .box:before{
    background-image: linear-gradient(0, #242F08, transparent);
}

.projects_section .box .project_img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.projects_section .box .content{
    position:relative;
    text-align: center;
    color: #fff;
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
    -ms-transition:all 0.3s ease-in-out;
}

.projects_section .box:hover .content{
    transform: translateY(0px);
}

.projects_section .box .location{
    font-size: 13px;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    /* position:absolute;
    right:20px;
    top:20px;
    background:#fff;
    padding:5px 15px;
    border-radius: 100px;
    font-size:14px;
    font-weight: 500;
    color:var(--color1);
    display: flex;
    align-items: center;
    letter-spacing: 0.5px; */
}

.projects_section .box .location img{
    margin-right:2px;
    width: 14px;
    filter: contrast(0) brightness(0) invert(1);
}

.projects_section .box .name{
    font-size:36px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.projects_section .box .typology{
    font-size:14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.projects_section .box .price{
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects_section .price .left{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    padding-right: 15px;
    margin-right: 15px;
    position: relative;
}

.projects_section .price .left:before{
    position:absolute;
    content:'';
    height:20px;
    width:1px;
    background:#fff;
    right:0;
    top:50%;
    transform:translateY(-50%);
}

.projects_section .price .left span{
    display:block;
    text-transform: uppercase;
}

.projects_section .box .price h4{
    font-size: 30px;
    margin:0;
    display:flex;
    align-items: flex-end;
    /* line-height: 30px; */
}

.projects_section .box .price h4 small{
    font-weight: 300;
    font-size: 20px;
    padding-bottom: 4px;
}

.projects_section .box .price h4 small:first-child{
    margin-right:5px;
}

.projects_section .box .price h4 small:last-child{
    margin-left: 5px;
}

.projects_section .box .btn{
    padding: 10px 25px;
    font-size: 12px;
    margin-top: 20px;
    transform:translateY(15px);
    opacity:0;
    visibility: hidden;
}

.projects_section .box:hover .btn{
    animation: btnAn 0.3s forwards;
    animation-delay: 0.2s;
}

@keyframes btnAn {
    0%{
        /* opacity:0;
        visibility: hidden; */
    }

    100%{
        opacity:1;
        visibility: visible;
        transform:translateY(0);
    }
}

/* gallery */

.gallery_section{
    position:relative;
}

.gallery_section:before{
    position: absolute;
    content: '';
    height: 200px;
    width: 100%;
    top: 0;
    background-image: linear-gradient(0deg, #ede9e600, #fff8f6);
    z-index: -1;
}

.gallery_section .gallery_wrapper{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap:25px;
}

.gallery_section .gal_box img{
    height:100%;
    width:100%;
    object-fit: cover;
}

.gallery_section .box1{
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 6;
}

.gallery_section .box2{
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 5;
}

.gallery_section .box3{
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 5;
    grid-row-end: 7;
}

.gallery_section .box4{
    grid-column-start: 3;
    grid-column-end: 4;
    grid-row-start: 1;
    grid-row-end: 8;
}

.gallery_section .box5{
    grid-column-start: 4;
    grid-column-end: 5;
    grid-row-start: 2;
    grid-row-end: 4;
}

.gallery_section .box6{
    grid-column-start: 4;
    grid-column-end: 5;
    grid-row-start: 4;
    grid-row-end: 7;
}

.gallery_section .box7{
    grid-column-start: 5;
    grid-column-end: 6;
    grid-row-start: 3;
    grid-row-end: 6;
}

/* experience section */

.experience_section{
    position:relative;
}

.experience_section:after{
    position:absolute;
    content:'';
    height:400px;
    left:0;
    bottom:0;
    width:100%;
    background:var(--color2);
    opacity: 0;
    visibility: hidden;
}

.experience_section .thumbnail{
    max-width: 70%;
    margin: auto;
    box-shadow: 20px 25px 55px rgba(0, 0, 0, 0.2);
    position:relative;
}

.experience_section .thumbnail .play_btn{
    position:absolute;
    content:'';
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
}

.experience_section .thumbnail .play{
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 100%;
    margin: auto;
}

.experience_section .thumbnail .play img{
    width: 30px;
    filter: invert(1);
}

.experience_section .thumbnail p{
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
    font-size: 12px;
    margin-top: 10px;
}

.experience_section iframe{
    max-width: 70%;
    width: 100%;
    height: 550px;
    display: table;
    margin: auto;
    position: relative;
    z-index: 1;
}

/* footer */

footer{
    position:relative;
    background:var(--color2);
    color:#fff;
    padding: 20px 0 0;
    overflow: hidden;
}

footer ul{
    padding:0;
    margin:0;
}

footer .footer_title{
    text-transform: uppercase;
    position:relative;
    display: inline-block;
    font-size: 16px;
    margin-bottom:30px;
    font-weight: 500;
}

footer .footer_title:before{
    position:absolute;
    content:'';
    height:1px;
    width:100%;
    background:#fff;
    bottom:0;
}

footer a,
footer a:hover,
footer a:focus,
footer a:active{
    color:#fff;
    text-decoration: none;
}

footer .col1{
    flex: 0 0 22%;
    max-width: 22%;
}

footer .col1 .logo{
    max-width: 170px;
    margin-bottom: 25px;
}

footer .col1 p{
    margin:0;
    font-size:15px;
}

footer .social_links{
    display:flex;
    margin-top:25px;
}

footer .social_links li{
    margin-right:10px;
}

footer .social_links a{
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffffde;
    border-radius: 50%;
}

footer .social_links img{
    width:18px;
}

footer .col2,
footer .col3{
    flex: 0 0 15%;
    max-width: 15%;
}

footer .col4{
    flex: 0 0 20%;
    max-width: 20%;
}

footer .col5{
    flex: 0 0 28%;
    max-width: 28%;
}

footer .contact_details{
    /* border-top: 1px solid #ffffff42;
    padding-top: 20px; */
}

footer .contact_details .title{
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-decoration: underline;
    display: inline-block;
}

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

footer .contact_details .icon img{
    width: 16px;
    filter: invert(1);
}

footer .col2{
    /* text-align: center;
    display: flex;
    justify-content: center; */
}

footer .col2 .content{
    /* text-align: left;
    width: max-content; */
}

footer .col2 .links_details{
    /* display:flex;
    flex-wrap: wrap; */
}

footer .links_details li{
    /* max-width: 33.33%;
    flex:0 0 33.33%; */
    margin-bottom:10px;
}

footer .links_details li a{
    width:100%;
    display: block;
    font-size:15px;
}

footer .call_row{
    margin: 40px 0 0;
}

footer .call_row .top{
    display:flex;
}

footer .call_row .top li{
    font-size:14px;
}

footer .call_row .top li:not(:last-child){
    margin-right:20px;
    padding-right:20px;
    position:relative;
}

footer .call_row .top li:not(:last-child):before{
    position:absolute;
    content:'';
    height:20px;
    width:1px;
    background:#fff;
    right:0;
    top:50%;
    transform:translateY(-50%);
    -webkit-transform:translateY(-50%);
    -ms-transform:translateY(-50%);
}

footer .call_row .top li strong{
    font-weight: 600;
    margin-right: 10px;
}

footer .call_row .bottom{
    border-top: 1px solid #fff;
    margin-top: 5px;
    padding-top: 5px;
    display:flex;
}

footer .call_row .bottom strong{
    margin-right: 20px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    letter-spacing: 0.2px;
}

footer .call_row .projects{
    display:flex;
}

footer .call_row .projects li{
    margin:0 20px;
}

footer .call_row .projects li a{
    position:relative;
    font-size:12px;
    font-weight: 500;
    text-transform: uppercase;
}

footer .call_row .projects li a:before{
    position:absolute;
    content:'';
    height:1px;
    width:100%;
    background:#fff;
    left:0;
    bottom:0;
}

/* footer .links_details li:not(:last-child){
    margin-bottom:10px;
}

footer .location_details li:not(:last-child){
    margin-bottom:20px;
} */

footer .location_details li{
    /* display:flex; */
}

footer .location_details li:not(:last-child){
    margin-bottom:15px;
}

footer .location_details h5,
footer .contact_details h5{
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    display: inline-block;
    margin-bottom: 8px;
    /* max-width: 60px; */
}

footer .location_details .txt,
footer .contact_details .txt{
    display:flex;
}

footer .contact_details .txt{
    align-items: center;
}

footer .location_details .icon,
footer .contact_details .icon{
    width: 25px;
}

footer .location_details p,
footer .contact_details a{
    padding-left: 5px;
    font-size: 13px;
    letter-spacing: 0.5px;
    margin: 0;
    width: calc(100% - 25px);
}

footer .contact_details{
    /* margin-top:20px; */
}

footer .copyright{
    padding: 15px 0;
    border-top: 1px solid #ffffff52;
    margin-top: 30px;
    /* display: flex; */
    .content:
    wrap;
    text-transform: capitalize;
}

footer .copyright .logo_col{
    margin-right: 100px;
    display: flex;
    align-items: center;
    /* max-width: 20%;
    flex:0 0 20%;
    padding-right:15px; */
}

footer .copyright .logo{
    max-width: 150px;
}

footer .copyright .content_col{
    /* max-width: 80%;
    flex:0 0 80%;
    padding-left: 15px; */
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
    gap: 100px;
}

footer .copyright_links{
    display: flex;
}

footer .copyright_links li,
footer .copyright_links a{
    font-size:13px;
    position:relative;
}

footer .copyright_links a{
    font-weight: 600;
}

footer .copyright_links li:not(:last-child){
    padding-right:20px;
    margin-right:20px;
}

footer .copyright_links li:not(:last-child):before{
    position: absolute;
    content: '';
    height: 14px;
    width: 1px;
    background: #fff;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

footer .disclaimer{
    flex:1;
    display:flex;
}

footer .disclaimer small{
    font-size: 12px;
    line-height: 16px;
}


/* micro page */

/* overview sec */

.overview_section{
    position:relative;
}

.overview_section .content .txt{
    padding:0;
}

.overview_section .content .txt:before{
    display:none;
}

.overview_section .content p{
    line-height: 28px;
}

.overview_section .leave_img{
    position: absolute;
    right: 0;
    top: 0;
}

/* highlights */

.higlights_section .content ul{
    padding:0;
    margin:0;
}

.higlights_section .content li{
    font-size:18px;
    font-weight: 500;
    color:var(--color3);
    display:flex;
    gap: 90px;
    margin-bottom:10px;
    position:relative;
    text-transform: capitalize;
}

.higlights_section .content li:before{
    position: absolute;
    content: '';
    height: 10px;
    width: 10px;
    background: var(--color3);
    border-radius: 100%;
    left: 60px;
    top: 8px;
    /* transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%); */
}

.higlights_section .content li:after{
    position: absolute;
    content: '';
    height: 100%;
    width: 2px;
    background: #B48531;
    left: 64px;
    top: 18px;
    z-index: -1;
}

.higlights_section .content li:last-child:after{
    display:none;
}

.higlights_section .content li span:first-child{
    font-size:16px;
}

.higlights_section .right_col{
    position:unset;
}

.higlights_section .img_col{
    position: absolute;
    right: 0;
    top: 0;
    /* width: 48%; */
    height: 100%;
    padding: 10px 0 0;
    text-align: right;
}

.higlights_section .img_col img{
    height: 100%;
    width: auto;
    object-fit: contain;
}

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

/* pricing */

.pricing_section .pricing_carousel{
    max-width: 80%;
    margin:auto;
}

.pricing_section .nav-tabs{
    margin-bottom:60px;
    border:none;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.pricing_section .nav-tabs .nav-link{
    border-radius: 0;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #00000094;
}

.pricing_section .nav-tabs .nav-link.active{
    border: 1px solid #000;
    font-weight: 700;
    background: transparent;
}

.pricing_section .nav-tabs .owl-item.active .nav-link{
    /* border: 1px solid #000; */
}

.pricing_section .nav-tabs .owl-nav button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    height: 40px;
    width: 40px;
    background: #ffe2ae;
    border-radius: 100%;
    left: -45px;
}

.pricing_section .nav-tabs .owl-nav button.owl-next{
    left:unset;
    right:-45px;
}

.pricing_section .nav-tabs .owl-nav button.disabled{
    opacity:0.4
}

.pricing_section .pricing_carousel .owl-stage-outer{
    /* overflow:visible; */
}

.pricing_section .item{
    /* max-width: 80%;
    margin: auto; */
}

.pricing_section .tab-pane{
    max-width: 80%;
    margin: auto;
}

.pricing_section .left_col .content{
    background:var(--color1);
    padding:45px 45px;
}

.pricing_section .content .btns{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.pricing_section .content .price_title{
    color: #fff;
    font-size: 26px;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    margin:0;
}
.pricing_section .content .starting-price {
    color: #fff;
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 4px;
}


.pricing_section .content  .price{
    display: flex;
    align-items: flex-end;
    color:#fff;
    margin-bottom: 20px;
    font-size: 30px;
}

.pricing_section .content .price span{
    font-family: var(--playfair_font);
}

.pricing_section .content .price h3{
    font-size: 36px;
    line-height: 50px;
    margin: 0 12px;
    font-weight: 700;
}

.pricing_section .content .plan_btns{
    display:flex;
    gap: 15px;
}

.pricing_section .content .plan_btns button{
    height:45px;
    width:45px;
    border-radius: 100%;
    display:flex;
    align-items: center;
    justify-content: center;
    border:1px solid #F3EADA;
}

.pricing_section .content .plan_btns img{
    width:22px
}

.pricing_section .content ul{
    padding:0;
    margin:0;
    margin-bottom: 40px;
}

.pricing_section .content ul li{
    color:#fff;
    text-transform: uppercase;
    display:flex;
    align-items: center;
    padding: 12px 0;
    border-bottom:1px solid #F3EADA;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.pricing_section .content ul li span:first-child{
    flex:0 0 60%;
}

.pricing_section .content ul li span:last-child{
    flex:0 0 40%;
    text-align: right;
}

.pricing_section .content .btn{
    font-size:13px;
}

.pricing_section .floorplan_carousel{
    background:#fff;
}

.pricing_section .floorplan_carousel,
.pricing_section .floorplan_carousel div{
    height:100%;

}

.pricing_section .floorplan_carousel .img_col{
    background:#fff;
    width: 100%;
    padding: 40px;
    position: absolute;
}

.floorplan_carousel .img_col a{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
}

.pricing_section .img_col img{
    height:calc(100% - 50px);
    object-fit: contain;
}

.pricing_section .img_col .title{
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    font-weight: 400;
    color: #333;
    letter-spacing: 1px;
    font-size: 14px;
    margin-top: 20px;
}

.floorplan_carousel button{
    position: absolute;
    height: 50px;
    width: 50px;
    top: 50%;
    left: 15px;
    border: 1px solid #00000054 !important;
    border-radius: 100%;
    transform:translateY(-50%);
    -webkit-transform:translateY(-50%);
    -ms-transform:translateY(-50%);
}

.floorplan_carousel button.owl-next{
    right:15px;
    left:unset;
}

.floorplan_carousel button span{
    font-size: 30px;
    line-height: initial;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.floorplan_carousel button.disabled{
    opacity:0.2;
}

/* amenities_section */

.amenity_section{
    cursor: none;
}

.amenities_container{
    display:flex;
    width:100%;
}

.amenities_container[data-length="2"]{
    width:200%;
}

.amenities_container[data-length="4"]{
    width:400%;
}

.amenities_container[data-length="5"]{
    width:500%;
}

.amenities_section{
    overflow:hidden;
    position:relative;
    width: 100%;
}

.amenities_section .sec_heading{
    margin-bottom:100px;
}

.amenities_section .title{
    font-size: 50px;
    max-width: 50%;
    letter-spacing: 1px;
    line-height: 52px;
}

.amenities_section .title.w-90{
    max-width:90%;
}

.amenities_section .vector_col{
    position:relative;
}

.amenities_section .vector{
    height: 100%;
    position: relative;
    width: 100%;
    right: 0;
    top: 0;
    padding-bottom: 0;
    display: flex;
    align-items: flex-end;
}

.amenities_section .vector.pb_120{
    padding-bottom:120px;
}

.amenities_section .vector.left{
    left:0;
    right:unset;
}

.amenities_section .vector.right{
    left:unset;
    right:0;
}

.amenities_section .vector.center{
    align-items: center;
}

.amenities_section .vector_img{
    height: 100%;
    object-fit: cover;
    width: 100%;
    object-position: top;
    position: absolute;
}

.amenities_section .vector_top{
    position: absolute;
    max-width: 250px;
    top: 0;
    right: -50px;
}

.amenities_section .left .vector_top{
    left:-50px;
    right:unset;
}

.amenities_section .design2 .vector_top{
    left: -120px;
}

.amenities_section .bottom .vector_top{
    bottom:0;
    top:unset;
}

.amenities_section .amenities_carousel {
    padding-right:30%;
}

.amenity_carousel {
    max-width: 45%;
    display: table;
    margin: auto;
}

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

.amenity_carousel .item{
    position:relative;
}

.amenities_carousel .item:before{
    position:absolute;
    content:'';
    height:100%;
    left:0;
    width:100%;
    top:0;
    background-image: linear-gradient(0, rgb(0 0 0 / 50%), transparent);
}

.amenity_carousel .item .image{
    height:550px;
    object-fit: cover;
}

.amenity_carousel .item .content{
    position: absolute;
    left: 30px;
    bottom: 50px;
    width: calc(100% - 60px);
    overflow:hidden;
}

.amenity_carousel .item .title{
    position:relative;
    left:-100%;
    background: #000;
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    padding: 12px 15px;
    display: inline-block;
    letter-spacing: 0.5px;
    transition:all 0.6s ease-in-out;
    -webkit-transition:all 0.6s ease-in-out;
    transition-delay:0.3s;
    -webkit-transition-delay:0.3s;
}

.amenity_carousel .active .item .title{
    left:0;
}

.amenity_carousel .item p{
    position:relative;
    left:-100%;
    margin: 0;
    display: table;
    background: #000;
    margin-top: 5px;
    color: #fff;
    font-size: 12px;
    padding: 5px 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition:all 0.6s ease-in-out;
    -webkit-transition:all 0.6s ease-in-out;
    transition-delay: 0.33s;
    -webkit-transition-delay: 0.33s;
}

.amenity_carousel .active .item p{
    left:0;
}


/* location advantage section */

.location_advantage_section{
    position:relative;
    background:url('../assets/images/location-advantage/sea.webp') no-repeat center center;
    background-size:cover;
    overflow: hidden;
}

.location_advantage_section .points{
    margin:0;
    padding:0;
}

.location_advantage_section .points li{
    position:relative;
    margin-bottom:14px;
}

.location_advantage_section .points li:not(:last-child):before{
    position: absolute;
    content: '';
    height: calc(100% - 22px);
    width: 2px;
    background: var(--color1);
    top: 34px;
    left: 10px;
}

.location_advantage_section .points .data{
    padding-left:60px;
    position:relative;
    padding-bottom: 10px;
}

.location_advantage_section .points .data:before{
    position:absolute;
    content:'';
    height:24px;
    width:24px;
    border:2px solid #C19444;
    border-radius: 100%;
    left: 0;
    top: 4px;
}

.location_advantage_section .points .data:after{
    position:absolute;
    content:'';
    height:14px;
    width:14px;
    background:#C19444;
    border-radius: 100%;
    left: 5px;
    top: 9px;
}

.location_advantage_section .data h3{
    font-size: 24px;
    /* font-weight: 700; */
    margin-bottom: 10px;
}

.location_advantage_section .data p{
    margin:0;
}

.location_advantage_section .right_col{
    position:unset;
}

.location_advantage_section .map{
    position: absolute;
    right: -8%;
    width: 65%;
    top: -2px;
    height:100%;
}

.location_advantage_section .map img{
    width:100%;
    height:100%;
    object-fit: cover;
    object-position: left;
}

.location_advantage_section.location1 .map {
    right: 0;
    width: 60%;
    top: -2px;
    height: 100%;
}

.location_advantage_section.location1 .map img{
    object-position: left;
}

    /* about developer   */

    .about_developer{
        position:relative;
    }

    .about_developer:after{
        position:absolute;
        content:'';
        left:0;
        top:0;
        height:100%;
        width:100%;
        background:url('../assets/images/about/about_bg.webp') no-repeat center center;
        z-index: -1;
        opacity: 0.05;
    }

    .about_developer .left_col{
        display:flex;
        align-items: center;
    }

    .about_developer .form_style2{
        background:var(--color4);
        padding:60px;
    }

    .about_developer .form_style2 .title{
        text-transform: uppercase;
        margin-bottom: 40px;
        font-size: 26px;
        font-weight: 700;
        letter-spacing: 1px;
    }



  /* enquire_fixed_btn */
.enquire_fixed_btn {
    position: fixed;
    right: -28px;
    top: 35%;
    z-index: 99;
    background: #007b77;
    color: #fff !important;
    /* box-shadow: none !important; */
    border-radius: 5px 0 0px 5px;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 110px;
    opacity:1;
    visibility: visible;
    /* opacity:1;
    visibility: visible; */
    transition:opacity 0.3s ease-in-out;
  }
  
  .enquire_fixed_btn.show{
    opacity:1;
    visibility: visible;
  }

  .enquire_fixed_btn .side-b{
    text-align: center;
  }

  .enquire_fixed_btn .side-b:not(:last-child){
    border-bottom: 1px solid #ffffff25;
  }

  .enquire_fixed_btn a {
    color: #fff;
    text-decoration: none;
  }
  .enquire_fixed_btn .side-b a{
    color: #fff;
    font-size: 10px;
    letter-spacing: 0;
    line-height: initial;
    width: 100%;
    padding: 16px 0px;
    display: block;
  }
  
  .enquire_fixed_btn .side-b .icon{
    width: 20px;
    margin-bottom: 6px;
    filter: invert(1);
  }
  .enquire_fixed_btn .side-b p{
    margin-bottom: unset;
    color:#fff;
    margin-top: 3px;
  }
  
  .side-b.whatsapp-button {
      width: 82px;
      /* padding: 15px 0px 10px 0px; */
  }
  .side-b.down-load-brochure {
    width: 82px;
  }
  .side-b.instant-call {
    width: 82px;
  }
  .side-b.get-in-touch {
    width: 82px;
  }

/* modal */

.modal h1,
.modal h2,
.modal h3,
.modal h4,
.modal h5,
.modal h6{
    font-family: var(--futura_bt_book);
}

/* custom modal */

.custom_modal .modal-dialog{
    max-width: 460px;
}

.custom_modal .modal-content{
    border-radius: 0;
  }
  
  .custom_modal .modal-body{
    padding: 24px;
  }

  .custom_modal .modal-body .project_logo{
    width: 200px;
    /* margin: 15px auto; */
    display: block;
    margin-bottom: 20px;
  }
  
  .custom_modal .title{
    /* text-align: center; */
    font-weight: 700;
    font-size: 30px;
    font-family: var(--playfair_font);
    margin-bottom: 15px;
    color:var(--color1);
  }
  
  .custom_modal .sub_title{
    font-size: 14px;
    margin-bottom: 0;
    /* text-align: center; */
  }
  
  .custom_modal .form{
    margin-top: 15px;
  }

  .custom_modal .form .form-group{
    margin-bottom: 10px;
  }
  
  .custom_modal .form .form-control{
    border:none;
    border-bottom:1px solid #ddd;
    border-radius: 0;
    padding: 8px 0;
    height: 40px;
    box-shadow: none;
    font-size:16px;
    color:#000;
  }
  
  .custom_modal .form .form-control::placeholder{
    font-size:15px;
  }
  
  .custom_modal .form select.form-control{
    padding:0;
  }
  
  .custom_modal .form .custom_checkbox{
    position:relative;
    padding-left: 20px;
    margin-top: 20px;
  }
  
  .custom_modal .form input[type='checkbox']{
    position: absolute;
    top: 5px;
    left: 0;
  }
  
  .custom_modal .form .check{
    font-size: 11px;
    line-height: 15px;
    display: inline-block;
  }
  
  .custom_modal .form button.btn{
    margin-top: 14px;
  }
  
  .custom_modal .close{
    position: absolute;
    right: 3px;
    top: 3px;
    background: #000;
    height: 40px;
    width: 40px;
    opacity: 1;
    color: #fff;
    text-shadow: none;
    font-weight: 100;
    border-radius: 0;
  }
  
  
/* video modal */

.video_modal .modal-body{
    padding:0;
}

.video_modal .close{
    text-shadow: none;
    opacity: 1;
    box-shadow: none;
    font-weight: 300;
    font-size: 25px;
    outline: none;
    position: absolute;
    right: 5px;
    top: 5px;
    background: #fff;
    height: 40px;
    width: 40px;
    padding-bottom: 2px;
    z-index: 9;
}

.video_modal .modal-dialog{
    max-width: 1000px;
}

.video_modal .modal-content{
    background:transparent;
    border:none;
}

.video_modal .modal-body iframe{
    display:flex;
    width:100%;
    height:400px;
    object-fit: contain;
}

.overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: #0b0b0b;
    opacity: 0.8;
    z-index: 992;
}

.image_overlay{
    /* background-color: #462828d2; */
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    z-index: 999;
    text-align: center;
    padding: 90px 30px;
}

.image_overlay img{
    max-width: 100%;
    max-height: 100%;
}

.image_overlay .close{
    position:absolute;
    right: 20px;
    top: 20px;
    text-shadow: none;
    color: #fff;
    opacity: 1;
    font-weight: normal;
    font-size: 30px;
    cursor: pointer;
}

.amenities_container .container {
    max-width: 85%;
    margin-bottom: 80px;
}

.amenities_container a.carousel-control-prev, .amenities_container .carousel-control-next {
    position: unset;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #007b77;
    opacity: 1;
    padding: 10px;
}


.amenities_container .custom-control {
    display: flex;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width: 200px; */
    gap: 0px 20px;
    /* margin-bottom: 30px; */
    position: absolute;
    bottom: 40px;
    padding:0;
    /* margin-bottom: 30px; */
}

.hero_section .content .hero_title .slider-top-logo {
    width: 300px;
    height: auto;
    filter: contrast(0) brightness(0) invert(1);
}
    .navbar-brand img {
        max-width: 94px;
        margin: 0px auto;
        display: block;
    }


    .navbar-brand .microsite-logo  {
        max-width: 130px;
        margin: 0px auto;
        display: block;
    }

    /* custom cursor */

    .custom-cursor {
        position: absolute;
        display:none;
        pointer-events: none;
        z-index: 9999;
        user-select: none;
    }

    .custom-cursor .icons{
        display: inline-flex;
        justify-content: center;
        background: #000;
        height: 50px;
        width: 50px;
        border-radius: 100%;
    }

    .custom-cursor .icons .arrow{
        width: 20px;
        filter:invert(1);
    }

    .content p {
        text-transform: capitalize;
        letter-spacing: 1px;
    }

    span.check {
        font-size: 12px;
    }
footer .copyright p {
        font-size: 12px;
}
.d_view{
    display: block;
}
.m_view{
    display: none;
}

.hero_section .price_sec{
    margin: 15px auto 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 15px 0;
}
.hero_section .price_sec h6{
    text-align: center;
    color: #000;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
}
.hero_section .price_sec p{
    font-size: 19px;
    color: #000;
    margin-bottom: 0;
}
.hero_section .price_sec span{
    font-size: 20px;
    color: #000;
}
.pricing_section .left_col .content p{
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
}
.pricing_section .left_col .content .pricing{
    font-size: 20px;
    color: #fff;
}

.bridge {
    position: relative;
}
.bridge_content{
    position: absolute;
    bottom: 12%;
    width: 100%;
}
.bridge_content h6{
    font-size: 50px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 40px;
}
.bridge_content .col-lg-3 {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.bridge_content .col-lg-3:nth-child(5) {
    border-right: 0 !important;
}
.bridge_content .col-lg-3:nth-child(7) {
    border-right: 0 !important;
}
.bridge_content  .payment_div{
    padding: 15px 0;
    text-align: center;
}
.bridge_content .payment_div h2 {
    margin-bottom: 12px;
    padding: 0;
    color: #fff;
    font-size: 40px;
    font-variant-numeric: lining-nums;
}
.bridge_content .payment_div h5{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
}
.bridge_content .payment_div p{
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}

.keypoint{padding-left: 0px;}
.keypoint li{ font-size: 16px;line-height: 28px;}