/*@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
*/
@font-face {
    font-family: 'swis721_btroman';
    src: url('../fonts/swis721_bt_roman-webfont.eot');
    src: url('../fonts/swis721_bt_roman-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/swis721_bt_roman-webfont.woff2') format('woff2'),
         url('../fonts/swis721_bt_roman-webfont.woff') format('woff'),
         url('../fonts/swis721_bt_roman-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}


html {
    scroll-behavior: smooth;
}

:root {
    --theme-color: #C5E856;
/*    --font-manrope: "Manrope", sans-serif;*/
    /*--font-manrope: "MD Nichrome";
    --font-cormorant: "MD Nichrome";
    --font-figtree: "MD Nichrome";*/
  	--font-manrope: "swis721_btroman";
    --font-cormorant: "swis721_btroman";
    --font-figtree: "swis721_btroman";
}

*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a:focus-visible {
    outline: 0;
}

article,
aside,
canvas,
figure,
figcaption,
footer,
header,
nav,
section,
audio,
video,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
p {
    margin: 0;
    padding: 0;
    border: 0;
}

a,
button,
input[type="submit"] {
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    text-decoration: none;
    font-style: normal;
}
p{
    font-family: var(--font-cormorant);
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

ul {
    list-style: none;
}

a:hover {
    text-decoration: none;
}

h1 {
    font-size: 45px;
    font-family: var(--font-cormorant);
}

h2 {
    font-size: 38px;
    font-weight: 400;
    font-family: var(--font-cormorant);
}

h3 {
    font-size: 25px;
    font-family: var(--font-cormorant);
}

h4 {
    font-size: 22px;
    font-family: var(--font-cormorant);
}

h5 {
    font-size: 20px;
    font-family: var(--font-cormorant);
}

h6 {
    font-size: 18px;
    font-family: var(--font-cormorant);
}

body {
    margin: 0;
    padding: 0;
    font-weight: 500;
    /*font-size: 16px;*/
    font-size: 15px;
    color: #0B031F;
/*    font-family: var(--font-manrope);*/
 font-family: var(--font-cormorant);
    letter-spacing: 0.5px;
}

.post,
.page {
    margin: 0;
}

.gap {
    padding: 90px 0;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}



.dropdown:hover>.dropdown-menu,
.dropend:hover>.dropdown-menu {
    display: block;
    margin-top: 0.125em;
    margin-left: 0.125em;
}

.nav-item {
    padding: 0 9px;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        align-items: center;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        cursor: pointer;
    }

    .navbar-expand-lg .navbar-nav .nav-link.page_btn {
        padding: 10px 20px;
    }
}

@media screen and (min-width: 769px) {
    .dropend:hover>.dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
    }

    .dropend .dropdown-toggle {
        margin-left: 0.5em;
    }

    .dropdown .dropdown-menu {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .dropdown .dropdown-menu.show {
        display: block;
        background: transparent;
        border: 0;
    }

    .dropdown-item {
        padding: 5px 0;
        font-size: 14px;
    }
}

.site-header{
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    padding: 10px 0;
    z-index: 99;
    /*background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px); 
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);*/
    transition: all 0.3s ease; /* animation smooth */
}
.site-header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff; /* scroll er pore background add */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* halka shadow */
  animation: slideDown 0.4s ease;
}
.site-header.fixed .site-logo img {
    filter: brightness(0);

}
.site-header.fixed .main-navigation ul li a {
    color: var(--bs-heading-color);
}
.site-header.fixed .main-navigation ul li a:hover {
    color: var(--theme-color);
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}


.main-navigation ul{
    display: flex;
}
.main-navigation ul ul {
    width: 170px;
    display: block;
    position: absolute;
    top: 130%;
    left: 0;
    background-color: rgba(255,255,255,.9);
    border-radius: 0 0 10px 10px;
    box-shadow: -2px 2px 70px -25px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    pointer-events: none;
    transition: all .3s ease-in-out;
}
.main-navigation ul ul ul{
    top: 0;
    left: 99%;
    border-radius: 0 10px 10px 10px;
}
.main-navigation li:hover > ul{
    top: 99%;
    opacity: 1;
    visibility: visible;
    z-index: 99;
    pointer-events: auto;
}
.main-navigation ul ul li:hover > ul{
    top: 0;
}
.main-navigation ul li{
    margin: 0 10px;
    position: relative;
}
.main-navigation ul li a{
    color: #fff;
    font-size: 16px;
    display: block;
    padding: 10px 10px;
}
/*.main-navigation ul li.has-sub > a::after{
    content: "\f107";
    font-family:var(--fa-style-family,"Font Awesome 6 Free");
    font-weight:900;
    font-size: 10px;
    margin-left: 5px;
}*/
.main-navigation ul ul li{
    margin: 0;
}
.main-navigation ul ul li a{
    color: #0B031F;
}
.main-navigation ul li a:hover,
.main-navigation ul li.active > a{
    color: var(--theme-color);
}
.header-links a{
    background-color: var(--theme-color);
    padding: 10px 20px;
    display: block;
    width: fit-content;
    color: #083002;
    font-size: 15px;
    border-radius: 50px;
  	transition: all .5s ease-out;
}
.header-links a:hover{
    background-color:#0B031F;
  	color:#fff;
}
.header-links a::after{
    content: ">";
    display: inline-block;
    margin-left: 5px;
}
.mobile-logo,
.nav-btn,
.main-navigation ul li.has-sub .menu-drop{
    display: none;
}
@media screen and (max-width: 1024px){
    .main-navigation {
        position: fixed;      
        left: 0;
        top: 0;
        background-color: #fff;
        height: 100vh;
        width: 260px;
        border-right: var(--theme-color) solid 2px;
        box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
        transform: translateX(-120%);
        transition: all .3s ease-in-out;
    }
    .mobile-logo{
        display: block;
        background-color: var(--theme-color);
        padding: 5px;
    }
    .mobile-logo img{
        max-width: 100px;
    }
    .main-navigation ul {
        display: block;
    }
    .main-navigation ul li{
        margin: 0;
        padding: 0;
        border-bottom: rgba(0, 0, 0, 0.1) solid 1px;
    }
    .main-navigation ul li a{
        color: #0B031F; 
        padding: 10px 45px 10px 10px;       
    }
    .main-navigation ul ul li a{
        color: var(--bs-secondary-color);
    }
    .main-navigation ul li.has-sub .menu-drop{  
        display: block;     
        font-size: 10px;
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        width: 40px;
        height: 41px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-left: rgba(0, 0, 0, 0.1) solid 1px;
    }
    .main-navigation ul li.has-sub > a::after{
        display: none;
    }
    .main-navigation ul ul{
        display: none;
        width: 100%;
        position: relative;
        top: auto;
        opacity: 1;
        visibility: visible;
        z-index: 2;
        pointer-events: auto;
        border-radius: 0;
    }
    .main-navigation ul ul ul{
        top: auto;
        left: auto;
        border-radius: 0;
    }
    .main-navigation ul li.show-sub > ul{
        display: block;
    }
    .nav-btn{
        display: block;   
        width: 40px;
        height: 40px;
        margin-right: 15px;
        position: relative;
        padding: 0;
        border: none;
        background-color: transparent;
    }
    .nav-btn span{
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        margin:auto;
        background-color: var(--theme-color);
        width: 30px;
        height: 3px;        
    }
    .nav-btn span:nth-child(1){
        top: 12px;
    }
    .nav-btn span:nth-child(2){
        top: 20px;
    }
    .nav-btn span:nth-child(3){
        top: 28px;
    }
    .main-navigation.show-nav{
        transform: translateX(0);
    }
}
/*.text_content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}*/

.sec_heading {
    /*font-size: 46px;*/
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 35px;
}

.sec_heading_span span {
    font-family: var(--font-cormorant);
    font-style: italic;
    font-weight: 500;
}

.text_content p {
    margin-bottom: 30px;
}

.story_sec .text_content p {
    color: #3E464F;
}

.page_btn,
.page_btn:visited,
.page_btn:hover {
    background-color: var(--theme-color);
    padding: 14px 20px;
    display: block;
    width: fit-content;
    color: #083002;
    font-size: 15px;
    border-radius: 50px;
  	transition:all .5s ease-out;

}

.page_btn strong {
    display: inline-block;
    margin-left: 6px;
    transition: 300ms ease-in-out;
}
.page_btn:hover,
.director-2 .page_btn:hover{
  background-color:#0B031F;
  color:#fff;
}
.page_btn:hover strong {
    margin-left: 10px;
}

.btn_holder {
    margin-bottom: 40px;
}

.quote {
    /*border-top: 2px solid #dbdbdb;*/
    padding: 50px 50px 0;
    font-style: italic;
    font-weight: 600;
    font-size: 20px;
    position: relative;
    font-family: var(--font-cormorant);
}

.quote span {
    font-size: 75px;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
   /* top: 50%;
    left: 11px;
    transform: translateY(-50%);*/
}

.difference_sec .text_content {
    background-color: #222825;
    color: #fff;
    padding: 160px 0;
    bottom: 0;
    top: unset;
    transform: translateY(0);
    overflow: hidden;
}

.difference_sec .text_content::before {
    content: "";
    width: 460px;
    height: 472px;
    background: url(../images/arrow.png) 0 0 no-repeat;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
}

.difference_sec .outer_img {
    margin-left: auto;
    z-index: 5;
}
.difference-we-made-inner{
    position: relative;
    background-color: #222825;
    padding: 80px 0 0;
    color: #fff;
}
.difference-we-made-inner::before{
    content: "";
    width: 100%;
    height: 80px;
    background-color: #fff;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.difference-img{
    width: 40%;
    height: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
}
.difference-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.difference-we-made-inner{
    background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
    background-position: 40% bottom;
}
.difference-we-made-txt {
    padding: 8em 0 12em;
}
.theme_color_text {
    color: #769B02;
}

.difference_sec h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.impactrow {
    display: flex;
    flex-wrap: wrap;
    color: #0B031F;
}

.impact_sec .sec_heading {
    margin-bottom: 60px;
}

.impactbox {
    flex: 1;
    padding: 0 20px;
    border-right: 2px solid #c7c7c7;
}

.impactbox:last-child {
    border-right: 0;
}

.impactbox::before {
    content: "";
    width: 34px;
    height: 2px;
    background-color: var(--theme-color);
    display: block;
    margin-bottom: 20px;
}

.impactbox h3 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 10px;
  	display: flex;
  	align-items: first baseline;
}

.impactbox h3 span {
    font-size: 22px;
    font-weight: 600;
}

.impactbox p {
    font-size: 16px;
    font-weight: 500;
}

.director_img img {
    width: 100%;
}

.director_text {
    /*font-size: 18px;*/
    font-size: 16px;
    font-weight: 400;
}

.director_text p {
    margin-bottom: 40px;
}

.director_text strong {
    font-size: 26px;
    font-weight: 700;
    color: #769B02;
    display: block;

}
.director-2 .page_btn{
    color: #000;
}
.director_text .page_btn strong,
.director-2 .page_btn strong{
    display: inline-block;
    font-size: 16px;
}
.p-deg{
    display: none;
}
@media screen and (min-width: 1200px){
    .director-2{
        margin-top: -3em;
    }
}
.grey_texture_bg {
    background-color: #fafafa;
    position: relative;
}

.grey_texture_bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: url(../images/bg-texture.png) 0 0 no-repeat;
    background-size: cover;
}

.swiperbtn {
    position: relative;
}

.real_estate_image_slider.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    overflow: hidden;
}

.real_estate_image_slider .estate_slide img {
    width: 100%;
}

.real_estate_image_slider .estate_slide_even {
    padding-top: 60px;
}

.real_estate .sec_heading {
    margin-bottom: 65px;
}

.swiper-button-next,
.swiper-button-prev {
    position: static;
    transform: translate(0, 0);
    width: unset;
    height: unset;
    margin: unset;

}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 0;
    background-color: #769B02;
    width: 58px;
    height: 58px;
    background: url(../images/slider-arrow-left1.png) 0 0 no-repeat;
    background-size: cover;
}

.swiper-button-next::after {
    background: url(../images/slider-arrow-right1.png) 0 0 no-repeat;
    background-size: cover;
}

.swiperbtn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 20px;
}

.black_bg {
    background-color: #252a2b;
    color: #fff;
}

.blogs_sec .sec_heading {
    margin-bottom: 60px;
}

.blog_img a {
    display: block;
}

.blog_img a img {
    width: 100%;
}

.blog_wrap {
    background-color: #2b312e;
    height: 100%;
    padding-bottom: 55px;
}

.blog_text {
    padding: 30px 25px 0;
}

.blog_text .cat_name {
    color: #D9D9D9;
    background-color: #313734;
    display: block;
    width: fit-content;
    padding: 2px 13px;
    font-size: 13px;
    margin-bottom: 20px;
}

.blog_text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog_text h3 a {
    color: #fff;
}

.publ_date {
    font-size: 15px;
    color: #D9D9D9;
}

.blogs_sec .btn_holder {
    margin-bottom: 0;
    margin-top: 30px;
}

.blogs_sec .page_btn {
    padding: 14px 40px;
}

.insight_slide {
    position: relative;
}

.insight_slide img {
    width: 100%;
}

.insighttext {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 10%, transparent 100%);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    padding: 40px 25px;
}
.insighttext span {
  background-color: var(--theme-color);
  padding: 5px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  display: inline-block;
}
.insighttext h3 {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
}

.grey_bg {
    background-color: #f8f6f2;
}

.shape {
    position: absolute;
    right: 0;
    bottom: 0;
}

.client_slide {
    display: flex;
    background-color: #fff;
}

.client_img {
    max-width: 35%;
    min-width: 35%;
    width: 35%;
    position: relative;
}

.client_img img {
    width: 100%;
}

.clientvid {
    background-color: var(--theme-color);
    padding: 15px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    position: absolute;
    right: 20px;
    bottom: 13px;
}

.clienttext {
    padding: 130px 50px 55px;
    position: relative;
    font-size: 16px;
}

.clienttext p {
    margin-bottom: 60px;
}

.clienttext::before {
    content: "";
    width: 113px;
    height: 94px;
    background: url(../images/quote.png) 0 0 no-repeat;
    background-size: cover;
    top: 24px;
    left: 30px;
    position: absolute;
}

.clienttext strong,
.video-author strong {
    font-size: 20px;
    font-weight: 600;
    color: #769B02;
    display: block;
    margin-bottom: 5px;
}

.clienttext span,
.video-author span {
    display: block;
    color: #686868;
    font-size: 15px;
}
.video-testimonial-slide{
    width: 100%;
}
.testimonial-video {
  width: 100%;
  padding: 10px;
}
.testimonial-video video{
    width: 100%;
    height: auto;
}
.video-author {
  padding: 0 10px 20px;
}
.our_success .swiperbtn {
    justify-content: flex-start;
    padding-top: 45px;
}

.landmark_slide {
    position: relative;
}

/*.landmarkimg {
    padding-bottom: 75px;
}*/

.landmarkimg img,
.banner_img img {
    width: 100%;
}
@media screen and (min-width: 992px){
    .banner_slide_inner .banner_img{
        max-height: inherit;
        overflow: visible;
    }
    .banner_slide_inner .banner_img img{
        width: 100%;
        /*height: 100%;
        object-fit: cover;
        object-position: bottom;*/
    }
}
.landmarktext {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
}

.landmark_slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(14% + 440px);
    /*height: calc(100% - 75px);*/
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.landmarktext span {
    font-size: 13px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 8px 15px;
    display: block;
    margin-bottom: 20px;
    width: fit-content;
    border-radius: 30px;
}

.landmarktext h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.landmarktext p:nth-child(3) {
    margin-bottom: 35px;
}

.landmarktext .landmark_address {
    border-top: 1px solid #fff;
}

.landmarktext .landmark_address {
    border-top: 1px solid #fff;
    display: flex;
    align-items: center;
    gap: 13px;
    padding-top: 30px;
}

.landmarktext .landmark_address span {
    width: 35px;
    min-width: 35px;
    max-width: 35px;
    height: 35px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    background-color: #C5E856;
    color: #000;
    font-size: 18px;
}

.landmarktext .landmark_address p {
    font-size: 15px;
    font-weight: 400;
}

.landmarktext .btn_holder {
    margin-bottom: 0;
    margin-top: 110px;
    display: flex;
    gap: 40px;
}

.black_page_btn,
.black_page_btn:visited,
.black_page_btn:hover {
    background-color: #0B031F;
    color: #fff;
}

.slider_btn_wrapper {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 90px;
}
.landmarks .slider_btn_wrapper {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
}

.landtext_wrap {
    padding-right: 40px;
    padding-bottom: 60px;
}
.joint-v{
    font-family: var(--font-cormorant);
    font-style: italic;
    color: var(--theme-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}
.in_focus_heading {
    padding-right: 350px;
}

.in_focus_heading strong {
    color: #769B02;
    font-size: 20px;
    font-weight: 500;
    display: block;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.in_focus_heading > span {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    letter-spacing: .1em;
    background-color: #EDEDED;
    padding: 8px 15px;
    display: block;
    margin-bottom: 10px;
    width: fit-content;
    border-radius: 30px;
}

.in_focus_heading .sec_heading {
    margin-bottom: 25px;
}

.in_focus_heading>p {
    color: #3E464F;
}

.specs_content_wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.specs_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background-color: var(--theme-color);
    color: #0B031F;
}

.specs_content:nth-child(2) {
    background-color: #F3F3F3;
}

.specs_content h3 {
    /*font-size: 50px;*/
    font-size: 30px;
    font-weight: 600;
}

.specs_content h3 span {
    font-size: 25px;
}

.in_focus .swiperbtn {
    -webkit-filter: invert(100%);
    filter: invert(100%);
    padding-top: 0;
    position: static;
    justify-content: flex-start;
}

.download_br,
.download_br:hover,
.download_br:visited {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 25px 45px;
    font-size: 20px;
    font-weight: 600;
    color: #0B031F;
    background-color: var(--theme-color);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 20px;
}

.download_br span {
    width: 46px;
    min-width: 46px;
    max-width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0B031F;
    color: var(--theme-color);
}

.in_focus .slider_btn_wrapper {
    left: 30px;
    bottom: 20px;
    z-index: 1;
}

.banner .b_text {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.download_br {
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.download_br.expanded {
    transform: scale(1);
    opacity: 1;
}


.download_br .popup {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: scale(0);
    transform-origin: right bottom;
    width: min(550px, 100vw);
    min-width: min(550px, 100vw);
    max-width: min(550px, 100vw);
    max-height: min(500px, 35vh);
    min-height: min(500px, 35vh);
    height: min(500px, 35vh);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    overflow-y: auto;
    padding: 20px;
    z-index: 999;
}

.download_br.show-popup .popup {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.popup-header h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.popup-close {
    cursor: pointer;
    font-size: 20px;
}

.popup-body {
    font-size: 14px;
    line-height: 1.5;
}

.banner_slide {
    position: relative;
}

.banner_text_wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: 50px;
    color: #fff;
}

.b_text p {
    padding-left: 10px;
    border-left: 3px solid var(--theme-color);
}

.banner .sec_heading {
    /*font-size: 70px;*/
    font-size: 50px;
}

nav a.nav-link:not(.page_btn) {
    color: #fff;
}

.navbar-nav .nav-link.active {
    color: var(--theme-color);
}
nav a.page_btn:visited{
    color: #083002;
}
.site-footer {
    padding: 120px 0 20px;
    background: #2B3530;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    margin-top: 225px;
}

.site-footer.other_p_footer {
    margin-top: 0;
    padding-top: 65px;
}

.site-footer a {
    color: #fff;
  	transition: all .3s ease-out;
}

.social_links a {
    display: inline-flex;
}

.site-footer ul li {
    margin-bottom: 7px;
}

.site-footer a:hover {
    color: var(--theme-color);
}

.site-footer h5 {
    font-weight: 400;
    font-size: 14px;
    color: #848A87;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer_logo {
    margin-bottom: 45px;
}

.icontext {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    padding-right: 50px;
}

.icontext i {
    color: var(--theme-color);
}

.site-footer hr {
    margin: 70px 0 30px;
}

.site-footer .footer_upper {
    position: absolute;
    left: 0;
    right: 0;
    top: -225px;
}

.site-footer .footer_upper .fu_bg {
    background: url(../images/footer-overlay.png) right center no-repeat;
    background-size: cover;
    height: 295px;
    color: #0B031F;
    display: flex;
    align-items: center;
    padding: 0 104px;
}

.site-footer .footer_upper .fu_bg .row {
    width: 100%;
}

.site-footer .footer_upper .fu_bg .sec_heading {
    margin-bottom: 10px;
}

.site-footer .footer_upper .fu_bg .page_btn,
.site-footer .footer_upper .fu_bg .page_btn:visited,
.site-footer .footer_upper .fu_bg .page_btn:hover {
    background-color: #0B031F;
    color: #fff;
}

.social_links {
    display: flex;
    justify-content: flex-end;
    gap: 11px;
}

.social_links li {
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}
.social_links li:hover{
  background-color: var(--theme-color);
}
.copyright_link {
    display: flex;
    gap: 20px;
}

.leader_img {
    border: 1px solid #D9D9D9;
    margin-bottom: 15px;
}

.leader_text h3 {
    font-size: 18px;
    font-weight: 600;
}

.leader_text p {
    font-size: 14px;
    font-weight: 400;
    color: #3C354C;
}

.leader_text {
    position: relative;
    padding-right: 65px;
}

.leader_text a {
    position: absolute;
    right: 0;
    top: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--theme-color);
}

.leader_text a:hover {
    border-color: #000;
    background: #fff;
}

.leader_text a span {
    position: relative;
    top: 0;
    right: 0;
}

.leader_text a span {
    transition: 300ms ease-in-out;
}

.leader_text a:hover span {
    top: -5px;
    right: -5px;
}
.profileinfo{
    display: none;
}
#profileModal .modal-dialog{
    max-width: 900px;
}
#profileModal .modal-content{
    border-radius: 0;
}
.profile-wrap{
    display: flex;
    flex-wrap: wrap;
}
.profile-wrap .profile-img{
    width: 250px;
}
.profile-wrap .profile-img img{
    width: 100%;
}
.profile-wrap .profile-info{
    width: calc(100% - 251px);
    padding:0 30px;
    max-height: 70vh;
    overflow: auto;
}
#profileModal .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
}
h4#profile-name{
    font-size: 26px;
    font-weight: 700;
    color: #769B02;
    margin-bottom: 5px;
}
#profile-text p{
    margin-bottom: 15px;
}
@media screen and (max-width: 991px){
    #profileModal .modal-dialog{
        max-width: 740px;
    }
}
@media screen and (max-width: 767px){
    #profileModal .modal-dialog{
        max-width: 90%;
    }
    .profile-wrap .profile-img,   
    .profile-wrap .profile-info{
        width: 100% ;
        padding:10px 10px;
        max-height: inherit;   
    }
    h4#profile-name{
        font-size: 22px;   
    }
}
.map_wrap iframe {
    width: 100%;
}

.con_details {
    padding-right: 30px;
}

.con_details h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.con_details ul li {
    /*padding-left: 35px;*/
    position: relative;
    margin-bottom: 15px;
}

.con_details ul li span {
    position: absolute;
    top: 3px;
    left: 0;
}

.con_details ul li a {
    color: #0B031F;
}

.form_wrap {
    padding: 60px 50px;
    background: #F8F6F2;
}

.form_wrap h2 {
    font-size: 30px;
    font-weight: 500;
    color: #0B031F;
    margin-bottom: 10px;
}

.form_wrap p {
    font-size: 15px;
    font-weight: 400;
    color: #0B031F;
    margin-bottom: 30px;
}

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

.form_wrap input,
.form_wrap select {
    height: 45px;
    background-color: transparent;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid #C4C2BF;
    font-size: 14px;
    font-weight: 400;
    color: #3A3348;
    border-radius: 0;
    font-family: var(--font-figtree);
}

.form-control:focus,
.form-select:focus {
    box-shadow: unset;
    border: 0;
    border-bottom: 1px solid #C4C2BF;
}

.form_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
}

.form_wrap button {
    background-color: var(--theme-color);
    padding: 14px 20px;
    display: block;
    width: fit-content;
    color: #083002;
    font-size: 15px;
    border-radius: 50px;
    border-color: var(--theme-color);
}

.form_wrap button strong {
    display: inline-block;
    margin-left: 6px;
    transition: 300ms ease-in-out;
}

.form_wrap button:hover {
    background-color: #fff;
    color: #0B031F;
    border-color: var(--theme-color);
}

.form_wrap button:hover strong {
    margin-left: 10px;
}



/* responsive */

@media (min-width: 1600px) {}

@media (max-width: 1199px) {
    .outer_img {
        max-width: 45%;
        padding: 70px 0;
    }

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

    .landmarktext .btn_holder {
        margin-top: 30px;
    }
}

@media (max-width: 991px) {
    .navbar-nav {
        background-color: var(--theme-color);
        padding: 15px 20px;
    }

    .navbar-nav .page_btn {
        margin-top: 20px;
    }

    nav a.nav-link:visited, nav a.nav-link:not(.page_btn), .navbar-nav .nav-link.active, .navbar-nav .nav-link.show, .nav-link {
        color: #0B031F;
        opacity: 1;
    }

    .navbar-nav .page_btn,
    .navbar-nav .page_btn:visited,
    .navbar-nav .page_btn:hover {
        background-color: #fff;
        color: #0B031F;
    }

    nav .dropdown-item:focus, nav .dropdown-item:hover {
        background-color: transparent;
    }


    .download_br,
    .download_br:hover,
    .download_br:visited {
        padding: 15px 20px;
        font-size: 17px;
    }

    .banner_text_wrap {
        padding: 30px 0;      
		background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 71%);

    }

    .sec_heading {
        font-size: 35px;
        margin-bottom: 15px;
    }

    .banner .sec_heading {
        font-size: 45px;
    }

    .difference_sec .text_content {
        padding: 30px 0;
    }

    .text_content {
        position: static;
        transform: translate(0);
        width: 100%;
        order: 2;
        padding-top: 30px;
    }

    .story_sec.position-relative.gap.d-flex.align-items-center,
    .difference_sec.position-relative.gap.d-flex.align-items-center.p-0 {
        flex-wrap: wrap;
    }

    .quote {
        padding: 90px 60px 0;
    }

    .in_focus_heading {
        padding-right: 50px;
    }

    .landmark_slide::before {
        width: calc(30% + 440px);
    }

    .landmarktext .btn_holder {
        margin-top: 50px;
    }

    .landmarktext .landmark_address {
        padding-top: 15px;
    }

    .landmarktext p:nth-child(3) {
        margin-bottom: 15px;
    }

    .gap {
        padding: 30px 0;
    }
    .director-2{
        margin-top: 2em;
    }
    .outer_img {
        max-width: 100%;
        width: 100%;
        min-width: 100%;
        padding: 0;
    }

    .outer_img img {
        width: 100%;
    }

    .slider_btn_wrapper {
        bottom: 30px;
    }

    .client_slider {
        padding-top: 30px;
    }

    .banner_slider {
        padding-bottom: 76px;
    }

    .download_br,
    .download_br:hover,
    .download_br:visited {
        width: 100%;
        justify-content: center;
    }

    .impactbox {
        flex: unset;
        width: 33.33%;
        max-width: 33.33%;
        min-width: 33.33%;
        border-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    br {
        display: none;
    }

    .outer_img {
        margin-bottom: 30px;
    }

    .difference_sec .outer_img {
        margin-bottom: 0;
    }

    .quote {
        padding: 30px 0;
    }
    .quote span{
        display: block;
        height: 45px;
        line-height: 75px;
        position: relative;
        transform: none;
        margin: 0 auto;
        left: auto;
    }
    .difference-we-made-inner{
        padding-top: 0;
    }
    .banner .sec_heading {
        font-size: 35px;
        text-align: left;
    }

    .sec_heading {
        font-size: 28px;
        text-align: center;
    }

    .impactbox h3 {
        font-size: 29px;
        margin-bottom: 5px;
    }

    .impactbox h3 span {
        font-size: 16px;
    }

    .impactbox::before {
        margin-bottom: 10px;
    }

    .impactbox {
        padding: 0;
    }

    .impactbox p {
        font-size: 14px;
    }

    .difference_sec h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .btn_holder .page_btn {
        margin: auto;
    }

    .director_img {
        margin-bottom: 20px;
    }

    .director_text {
        font-size: 15px;
    }

    .director_text p {
        margin-bottom: 10px;
    }

    .director_text strong {
        font-size: 19px;
    }
    
    .specs_content_wrapper {
        padding-top: 30px;
    }

    .in_focus_heading strong {
        font-size: 18px;
        margin-bottom: 15px;
        /*text-align: center;*/
    }

    .in_focus_heading>span {
        margin: 0 0 20px;
    }
	.in_focus_heading .sec_heading{
      text-align:left;
  	}
    .specs_content h3 {
        font-size: 25px;
    }

    .landmark_slide::before {
        content: none;
    }

    .landmarkimg {
        padding-bottom: 0;
    }

    .landtext_wrap {
        padding-right: 0;
    }

    .spec_icon {
        max-width: 45px;
    }

    .specs_content h3 span {
        font-size: 18px;
    }

    .slider_btn_wrapper {
        position: static;
    }

    /*.landmarks .slider_btn_wrapper {
        position: absolute;
        bottom: unset;
        top: 65px;
    }*/

    .landmark_slider {
        padding-top: 30px;
        width: calc(100% - 30px);
        margin: 0 auto;
    }

    .real_estate_image_slider {
        width: calc(100% - 30px);
        margin: 0 auto;
    }

    .real_estate_image_slider .estate_slide_even {
        padding-top: 0;
    }

    .real_estate .swiperbtn {
        padding-top: 0;
        padding-bottom: 20px;
    }

    .landmarktext {
        background-color: rgba(0, 0, 0, 0.8);
        padding: 20px 0;
        position: static;
    }

    .client_slide {
        flex-wrap: wrap;
    }

    .client_img {
        max-width: 100%;
        min-width: 100%;
        width: 100%;
    }

    .clienttext {
        padding: 130px 20px 25px;
        font-size: 14px;
    }

    .clienttext strong {
        font-size: 17px;
    }

    .clienttext p {
        margin-bottom: 20px;
    }

    .page_btn,
    .page_btn:visited,
    .page_btn:hover {
        padding: 10px;
    }

    .our_success .swiperbtn {
        justify-content: center;
    }

    .real_estate .sec_heading {
        margin-bottom: 20px;
    }

    .in_focus .download_br {
        position: static;
    }

    .in_focus .slider_btn_wrapper {
        top: 20px;
        right: 0;
        position: absolute;
    }

    .in_focus .swiperbtn {
        justify-content: flex-end;
    }

    .site-footer .footer_upper .fu_bg {
        padding: 0 30px;
        height: 200px;
    }

    .site-footer .footer_upper {
        top: -100px;
    }

    .site-footer {
        margin-top: 125px;
    }

    .site-footer.other_p_footer {
        margin-top: 0;
    }

    .fu_text {
        padding-bottom: 20px;
    }

    .site-footer .footer_upper .fu_bg .row {
        width: auto;
    }

    .footer_logo {
        margin-bottom: 25px;
        text-align: center;
    }

    .site-footer ul {
        margin-bottom: 20px;
    }

    .site-footer hr {
        margin: 20px 0 30px;
    }

    .copyright_link {
        justify-content: center;
    }

    .site-footer .social_links {
        margin-top: 20px;
        margin-bottom: 0;
        justify-content: center;
    }

    .con_details {
        padding-right: 0;
    }

    .con_details {
        margin-bottom: 50px;
    }

    .con_details hr {
        margin: 15px 0 !important;
    }

    .con_details ul.mb-5, .con_details p.mb-5 {
        margin-bottom: 15px !important;
    }

    .leaderbox {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {}

@media (max-width: 420px) {
    .form_wrap {
        padding: 20px;
    }

    .form_wrap button {
        padding: 10px 15px;
    }

    .form_wrap h2 {
        text-align: center;
        font-size: 23px;
    }

    body,
    .landmarktext .landmark_address p {
        font-size: 14px;
    }

    .impactbox {
        width: 50%;
        max-width: 50%;
        min-width: 50%;
    }

    .landmarktext h3 {
        font-size: 21px;
    }

    .landmarktext .btn_holder {
        flex-wrap: wrap;
        gap: 20px;
    }

    .landmarktext .btn_holder .page_btn,
    .landmarks .btn_holder .page_btn {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        text-align: center;
    }
    .landmarks .btn_holder .page_btn {
        margin-bottom: 10px;
    }
    .blog_text {
        padding: 15px 15px 0;
    }

    .blog_wrap {
        padding-bottom: 25px;
    }

    .site-footer h5 {
        margin-bottom: 10px;
    }

    .site-footer.other_p_footer {
        padding-top: 30px;
    }
}

/*-- career page --*/
.load_carrer_button button {
    padding: 13px 48px;
    background: var(--theme-color) !important;
    border: none;
    color: #083002 !important;
    border-radius: 35px;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    box-shadow: none;
}
.custom-file-upload {
    display: flex;
    padding: 16px 20px;
    cursor: pointer;
    background-color: #fff;
    color: #0B031F;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s ease;
    justify-content: center;
    border: 1px dashed #0B031F;
}

.custom-file-upload:hover {
  background-color: var(--theme-color);
}

.custom-file-upload input[type="file"] {
  display: none; /* hide default input */
}

#fileName {
  font-size: 14px;
  color: #333;
}
.current_opening_three .btn.btn-primary {
    background-color: var(--theme-color);
    padding: 19px 20px;
    display: block;
    width: fit-content;
    color: #083002;
    font-size: 15px;
    border-radius: 50px;
    border-color: var(--theme-color);
    width: 100%;
}
.current_opening_three .btn.btn-primary:hover {
    background-color: #fff;
    color: #0B031F;
    border-color: var(--theme-color);
}

.carrer_content_small {
    font-size: 18px;
    margin: 15px 0;
    color: #242C35;
}
.career-card{
    padding: 15px;
    border:rgba(220, 220, 220, 1) solid 1px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    height: 100%;
}
.open-position,
.option-bottom{
    width: 100%;
}
.option-bottom{
    margin-top: auto;
}
.open-position{
    position: relative;
    padding-right: 100px;
    margin-bottom: 50px;
}
.open-position h5{
    font-size: 20px;
}
.open-position span.place{
    font-size: 14px;
    background-color: rgba(248, 246, 242, 1);
    padding: 3px 5px;
    border-radius: 3px;
    position: absolute;
    top: 0;
    right: 0;
}
.open-position span.place::before{
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    margin: 0 4px 0 0;
}
.open-info{
    font-size: 13px;
    color: rgba(11, 3, 31, 1);
    width: 50%;
    margin-bottom: 10px;
}
.open-info:nth-child(odd){
    padding-right: 7px;
}
.open-info:nth-child(even){
    padding-left: 7px;
}
.open-info span{
    font-weight: 600;
}
.career-card .page_btn{
    padding: 12px 26px;
}

@media screen and (max-width: 500px){
    .open-position h5 {
        font-size: 16px;
    }
    .open-info,
    .open-info:nth-child(2n+1),
    .open-info:nth-child(2n){
        width: 100%;
        padding: 0;
    }
}
.apply_now_modal form {
    padding: 0 0 25px 0;
}
.apply_now_modal h3 {
    font-family: var(--font-cormorant);
    font-style: italic;
    font-weight: 500;
    color: var(--theme-color);
}
.apply_now_modal h2 {
    font-size: 35px;
    font-weight: 700;
    margin: 15px 0;
    color: #0B031F;
}
.current_opening_three {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}
.current_opening_three .form-group {
    flex: 1;
    margin: 35px 0 0 0;
}
#current_opening_modal .btn-close {
    float: right;
}
.current_opening_three .form-group .form-control {
    height: 45px;
    background-color: transparent;
    padding: 10px 0;
    border: 0;
    border-bottom-width: 0px;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    border-bottom: 1px solid #C4C2BF;
    font-size: 14px;
    font-weight: 400;
    color: #3A3348;
    border-radius: 0;
    font-family: var(--font-figtree);
}

.form-check-flex {
    display: flex;
    margin: 15px 0 0;
    gap: 15px;
}
/*-- Our Partners --*/
.partner-card{
    padding: 20px;
    border: rgba(234, 234, 234, 1) solid 1px;
    display: flex;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 14px 12px -10px;
  	height:100%;
}
.partner-img{
    width: 40%;
}
.partner-info{
    width: 60%;
    padding: 0 64px 0 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
}
.partner-txt{
    padding-top: 20px;
    margin-bottom: 20px;
}
.partner-logo{
    margin-top: auto;
}
.partner-info h4{
    font-weight: 600;
    margin-bottom: 5px;
}
.partner-info p{
    font-size: 14px;
    color: rgba(60, 53, 76, 1);
}
.show-more-info{
    background-color: rgba(197, 232, 86, 1);   
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
}
.show-more-info img{
    width: 17px;
    height: 16px;
}
#profile-text p,
#partner-modal-full-description p{
  margin-bottom: 15px;
}
@media screen and (max-width: 767px){
    .partner-img {
        width: 25%;
    }
    .partner-info {
        width: 75%;
        padding: 0 44px 0 15px;
    }
    .partner-txt {
        padding-top: 0px;
    }
    .partner-info h4{
        font-size: 18px;
    }
    .show-more-info{
        width: 34px;
        height: 34px;
    }
    .show-more-info img {
        width: 13px;
        height: 12px;
    }
  .current_opening_three{
    flex-wrap: wrap;
  }
  .current_opening_three .form-group {
  flex: auto;
    margin: 15px 0 0 0;
  }
}
@media screen and (max-width: 500px){
    .partner-card{
        flex-wrap: wrap;
    }
    .partner-img {
        width: 100px;
        margin: 0 auto 10px;
    }
    .partner-info{
        width: 100%;
        padding: 0;
        text-align: center;
    }
    .partner-txt{
        width: 100%;
    }
    .partner-logo{
        width: 100%;
        margin: 0 auto;
    }
    .show-more-info{
        position: relative;
        margin: 10px auto 0;
        order: 3;
    }
}

/*-- Residential Projects --*/
.banner_img{
/*    max-height: 82vh;*/
    overflow: hidden;
}
.breadcrumb-block{
    padding: 10px 0;
}
.breadcrumb-block ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.breadcrumb-block ul li{
    font-size: 13px;
    color: rgba(104, 104, 104, 1);
    position: relative;
}
.breadcrumb-block ul li a{
    color: rgba(11, 3, 31, 1);
}
.breadcrumb-block ul li::after{
    content: "";
    width: 4px;
    height: 4px;
    background-color: rgba(182, 161, 16, 1);
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
}
.breadcrumb-block ul li:last-child::after{
    display: none;
}
.project-intro h6{
    font-weight: 600;
    line-height: 1.4;
    color: rgba(11, 3, 31, 1);
    margin-bottom: 30px;
}
.project-intro p{
    padding: 0 6em;
}
.project-intro,
.projects-to-live{
    background-color: rgba(248, 246, 242, 1);
}
.project-info {
  padding: 15px 0;
}
.project-info h6{
    font-weight: 600;
}
.project-info .loc{
    font-size: 13px;
}
.project-info .page_btn{
    padding: 7px 20px;
}
ul.pro-nav {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}
.pro-nav li{    
    border: rgba(34, 40, 37, 1) solid 1px;
    border-radius: 30px;
    margin: 0 4px;
    transition: all .2s ease-in-out;
}
.pro-nav li a{
    font-size: 16px;
    font-weight: 600;
    color: rgba(34, 40, 37, 1);
    padding: 10px 30px;
    display: block;
    position: relative;
}
.pro-nav li.active,
.pro-nav li:hover{
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
.pro-nav li a::before{
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--theme-color);;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px 3px 0; 
    transition: all .2s ease-in-out;
}
.pro-nav li.active a::before,
.pro-nav li:hover a::before{
    background-color: rgba(34, 40, 37, 1);;
}
.upcoming-project{
    position: relative;
    margin-bottom: 5em;
}
.upcoming-project:last-child{
    margin-bottom: 0;
}
.upcoming-project-img{
    width: 42%;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
}
.upcoming-project:nth-child(2n) .upcoming-project-img{    
    display: flex;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
}
.upcoming-project-img img{
    width: 100%; 
    height: 100%;
    object-fit: cover; 
}
.upcoming-project-info{
    max-width: 575px;
    padding: 30px 0 0;
}
.pro-tag {
    background-color: rgba(237, 237, 237, 1);
    font-size: 14px;
    color: rgba(88, 88, 88, 1);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}
.upcoming-project-info p{
    margin-bottom: 15px;
}
.address{
    position: relative;
    padding: 10px 0 10px 55px;
    min-height: 35px;
    margin-bottom: 20px;
}
.address::before{
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
    background-color: var(--theme-color);
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 0;    
}
.projec-logo{
    margin-bottom: 30px;
}
.pro-wrap{
    position: relative;
}
.real_estate_image_slider .pro-wrap a {
  height: 570px;
  display: block;
  position: relative;
}
.real_estate_image_slider .pro-wrap a img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.completed-pro{
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.85) 100%); 
    height: 80%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 30px 25px;
    display: flex;
    align-items: flex-end;
}
.completed-pro h6,
.completed-pro p{
    color: #fff;
}
.completed-pro h6{
    font-weight: 600;
}
.ongoing-project-block{
    /*border-top: rgba(0, 0, 0, 1) solid 1px;*/
}
.ongoing-project-slide{
    /*padding-top: 80px;*/
    display: flex;
    /*justify-content: flex-end;*/
    align-items: flex-end;
}
.ongoing-project-img {
  width: 65%;
  height: 100%;
  /*position: absolute;
  bottom: 0;
  left: 0;*/
}
.ongoing-project-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0;
}
.ongoing-project-text {
    position: absolute; 
  	right:0;
  	bottom:0;
    width: 45%;    
    background-color: rgba(34, 40, 37, 1);
    padding:30px 50px;
    color: #fff;
}
.ongoing-project-text p{
  margin-bottom:20px;
}

@media screen and (max-width: 991px){
    .ongoing-project-img {
        width: 100%;
    }
    .ongoing-project-text {      
        width: 85%;
      margin-top: -2em;
      position: relative;
    }
}
@media screen and (max-width: 767px){
    .pro-nav li a{
        font-size: 14px;
        padding: 10px 20px;
    }
    .upcoming-project-img,
    .upcoming-project:nth-child(2n) .upcoming-project-img {
        width: 100%;
        height: auto;
        display: flex;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
    }
    .upcoming-project-info .sec_heading,
    .ongoing-project-block .sec_heading,
    .completed-project-block .sec_heading{
        text-align: left;
    }
    .ongoing-project-block .swiperbtn,
    .completed-project-block .swiperbtn{
        padding-top: 0;
    }
    .ongoing-project-slide{
        flex-wrap: wrap;
        padding-top: 0; 
    } 
    .ongoing-project-img {
        width: 100%;        
        position: relative;
    }
    .ongoing-project-text {      
        width: 85%;
        margin-top: -2em;
    }
}
@media screen and (max-width: 500px){
    .pro-nav li a{
        font-size: 12px;
        padding: 10px 7px;
    }
    .pro-nav li a::before{
        margin: 0 5px 3px 0;
    }
    .ongoing-project-img {
        width: 100%;        
        position: relative;
    }
    .ongoing-project-text {      
        width: 100%;
        padding: 30px;
        margin-top: 0;
    }
    
}
/*-- about page --*/
.our-story-section{
  text-align:center;
}
.our-story-section h5{
    margin-bottom: 20px;
}
.building-balance-inner{
    display: flex;
    background-color: rgba(34, 40, 37, 1);
}
.building-balance-img{
    width: 40%;
}
.building-balance-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.building-balance-txt{
    width: 60%;
    position: relative;
    padding: 100px 0 0;
}
.building-balance-txt::before{
    content: "";
    width: 100%;
    height: 100px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.balance-txt{
    min-height: 50%;
    color: rgba(255, 255, 255, 0.77);
    font-size: 14px;
    border-bottom: rgba(255, 255, 255, 0.16) solid 1px;    
    padding: 30px 0 30px 10em;
    display: flex;
    align-items: center;
}
.balance-txt h5{
    color: rgba(255, 255, 255, 1);
    margin-bottom: 20px;
}
.balance-txt-inner{    
    position: relative; 
    max-width: 40vw;
    padding-left: 25px;   
}
.balance-txt-inner::before{
    content: "";
    width: 8px;
    height: 8px;
    background-color: rgba(197, 232, 86, 1);
    display: block;
    position: absolute;
    top: 7px;
    left: 0;
}
.milestone-type {
  background-color: rgb(248, 246, 242);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px;
  border-radius: 3px;
}
.milestone-icon {
  width: 85px;  
}
.milestone-type h5{font-size: 15px; width: calc(100% - 86px); padding-left:10px;}
.milestone-icon img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
.chairman_speak{
    position: relative;
    padding: 100px 0 0;    
}
.chairman_speak h4{
    color: #769B02;
    font-weight: 600;
    margin-bottom: 5px;
}
.chairman-img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0; 
    width: 35vw;
}
.chairman-img img{
    width: 100%;    
    position: relative;
    z-index: 2;
}
.chairman_text{
    padding-left: 3em;
}
.chairman_text p{
    margin-bottom: 10px;
}
.chairman_text p:last-child{
    margin-bottom: 0;
}
.our-vision-inner{
    position: relative;
    background-color: rgba(34, 40, 37, 1);
    padding: 50px 0;
}
.our-vision-inner::before,
.our-vision-inner::after{
    content: "";
    width: 100%;
    height: 50px;
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    z-index: 1;
}
.our-vision-inner::before{
    top: 0;
}
.our-vision-inner::after{
    bottom: 0;
}
.our-vision-txt{
    background-color: rgba(34, 40, 37, 1);
    color: rgba(255, 255, 255, 0.77);
    padding: 50px;
}
.our-vision-txt h2,
.our-vision-txt h5{
    color: #fff;
}
.our-vision-txt h5{
    margin-bottom: 2em;
}
.our-vision-txt ul li{
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}
.our-vision-txt ul li::before{
    content: "";
    width: 18px;
    height: 18px;
    background-image: url(../images/icons_check-mark.svg);
    background-position: center;
    background-repeat: none;
    background-size: 18px 18px;
    display: block;
    position: absolute;
    top: 3px;
    left: 0;
}
.vision-img{
    width: 70%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
}
.vision-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.our-vision .container{
    position: relative;
    z-index: 3;
}
.our-strength{
    position: relative;
    padding: 5em 0;
}
.our-strength-img {
  width: 42%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}
.our-strength-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0;
}

.swiper-pagination-bullet{
    opacity: .4;
}
.swiper-pagination-bullet-active{
    opacity: 1;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
  background-color: var(--theme-color);
  width: 15px;
  height: 15px;
  font-size: 0;
  color: transparent;
}
.mission-card{
    padding: 30px;
    border: rgba(216, 216, 216, 1) solid 1px;
}
.mission-card-icon{
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}
.mission-card-icon img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
.mission-slider-wrapper {
  display: flex;
  align-items: stretch; 
}

.mission-slider-wrapper .swiper-slide {
    height: auto;
    padding: 0 2px;
}
.mission-card{
    height: 100%;
}
@media screen and (max-width: 991px){
    .building-balance-img,
    .building-balance-txt {    
       width: 50%;
    }    
    .balance-txt{
        padding: 20px 0 20px 3em;
    }
    .milestone-type h5 {
        font-size: 14px;
    }
    .milestone-icon {
        width: 55px;
        margin-left: 15px;
    }
    .our-vision-txt{
        padding: 20px;
    }
  	.chairman_speak { 
  		padding: 50px 0 0;
	}
    .chairman-img{
        width: 100%;
        position: relative;
        padding: 20px 0 0;
    }
    .chairman_text {
        padding: 30px 0 30px 3em;
    }
}
@media screen and (max-width: 767px){
  	.our-story-section{
  		text-align:left;
	}
    .building-balance-inner{
        flex-wrap: wrap;
    }
    .building-balance-img,
    .building-balance-txt {    
       width: 100%;
    } 
    .building-balance-txt {
        padding-top: 0;
    }
    .building-balance-txt::before{
        display: none;
    }
    .balance-txt-inner{
        width: 100%;
        max-width: 100%;
    }
    .balance-txt{
        padding: 20px 20px;
    }
    .milestone-type{
        margin-bottom: 15px;
    }
    .our-vision.gap,
    .our-vision-inner{
        padding-top: 0;
    }
    .vision-img{
        width: 100%;
        position: relative;
        height: auto;
    }
    .our-strength-img {
        width: 72%;
        height: auto;
        display: flex;
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 20px;
    }
    .our-mission-section .sec_heading{
        text-align: left;
    }
    .our-mission-section .swiperbtn{
        padding-top: 0;
    }

    .difference-we-made-inner{
        background-color: transparent;
    }
    .difference-we-made-inner::before{
        display: none;
    }
    .difference-we-made-txt{
        background-color: #222825;
        padding: 20px;
    }
    .difference-we-made-txt .sec_heading{
        text-align: left;
    }
    .difference-img{
        width: 100%;
        position: relative;
    }
    .chairman_text {
        padding: 30px 0;
    }
    .chairman_text .sec_heading{
        text-align: left;
    }
}
@media screen and (max-width: 500px){
    .our-strength-img {
        width: 100%;
    }
    .our-strength-txt .page_btn{
        margin: 0 auto;
    }
}

@media screen and (min-width: 1200px){
    .services > ul.mega-menu__sub-list{
        display: block;
        column-count: 3;
    }
    .services > ul.mega-menu__sub-list > li{
        width: auto;
        break-inside: avoid;  
        -webkit-column-break-inside: avoid; 
        page-break-inside: avoid;
    }
}

/*-- details pahe --*/
.b_text ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.b_text li{
    position: relative;
    margin:0 15px 5px 0;
    padding-left: 30px;
}
.b_text li::before{
    content: "\f00c";
    font-family: var(--fa-style-family,"Font Awesome 6 Free");
    font-weight: 900;
    font-size: 10px;
    background-color: rgba(0, 0, 0, 0.37);
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--theme-color);
}
.about-project .milestone-type{
    justify-content: flex-start;
    margin-bottom: 10px;
}
.about-project .milestone-type h5{
    font-size: 16px;
}
.about-project .milestone-icon{
    margin: 0 15px 0 0;
}
.no-border{
    border: none;
}
.pro-details .ongoing-project-text{
    padding: 70px 50px 60px;
}
.pro-details .ongoing-project-img img{
    object-position: bottom;
}
.features{
    width: 48%;
    font-weight: 600;
    display: flex;
    margin-bottom: 25px;
}
.feature-icon{
    width: 52px;
    height: 52px;
    margin-right: 15px;
}
.features span{
    display: block;
    font-weight: 400;
}
.plan-tab{
    display: flex;
  	flex-wrap:wrap;
    /*justify-content: space-between;*/
  	justify-content: center;
    align-items: center;
}
.plan-tab-nav{
    /*width: 35%;*/
    width:100%;
    padding: 10px 10px 10px 4em;
    /*order: 2;*/
    text-align: center;
}
.plan-tab-img{
    background-color: rgba(248, 246, 242, 1);
    padding: 30px 40px 30px 30px;
    /*width: 65%;
    order: 1;*/
  	width:100%;
  	max-width:840px;
}
.plan-img{
    display: none;
}
.plan-img:first-child{
    display: block;
}
.plan-img img{
    width: 100%;
}
.plan-tab-nav ul{
    padding: 0;
    margin: 0;
    list-style: none;
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: center;
}
.plan-tab-nav ul li{
    margin:0 5px 20px;
}
.plan-tab-nav ul li:last-child{
    margin-bottom: 0;
}
.plan-tab-nav ul li span{
    min-width: 175px;
    background-color: #fff;
    padding: 13px 30px;
    display: inline-block;    
    color: #083002;
    font-size: 15px;
    text-align: center;
    border: rgba(34, 40, 37, 1) solid 1px;
    border-radius: 50px;
    cursor: pointer;
}
.plan-tab-nav ul li span::before{
    content: "";
    width: 8px;
    height: 8px;
    background-color: rgba(34, 40, 37, 1);
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;  
    margin-bottom: 3px;
}
.plan-tab-nav ul li.active span{
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}
/*.vertual-tour{
    border-top: rgba(0, 0, 0, 1) solid 1px;
}*/
.swiper-tour-container{
    overflow: hidden;
}
.swiper-tour-container .swiper-slide img{
    transition: all .3s ease-in-out;
}
.swiper-tour-container .swiper-slide-prev img,
.swiper-tour-container .swiper-slide-next img{
    transform: scale(.85);
}

@media screen and (max-width: 991px){
    .pro-details .ongoing-project-text {
      padding: 30px 30px 20px;
    }
    .vertual-tour .swiperbtn{
        padding-top: 0;
    }
    .plan-tab{
        flex-wrap: wrap;
    }
    .plan-tab-img,
    .plan-tab-nav{
        width: 100%;
    }
    .plan-tab-nav{
        order: 1;
        margin-bottom: 20px;
        padding: 10px 10px;
    }
    .plan-tab-img{
        order: 2;
    }
    .plan-tab-nav ul{
        display: flex;
        justify-content: center;
    }
    .plan-tab-nav ul li{
        margin: 0 5px 15px;
    }
    .plan-tab-nav ul li span {
        min-width: inherit;
        padding: 10px 20px;
    }
}

@media screen and (max-width: 500px){
    .pro-details .ongoing-project-text {
      padding: 30px 10px 20px;
    }
}

.report_img img{
    width: 100%;
}
.report_text{    
    padding: 0 0 0 20px;
}
.report_text-inner{
    margin-top: -80px;
    padding: 20px 50px 20px 20px;
    position: relative;
    min-height: 175px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.report_wrap h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.report_wrap a{
    color: #000;
}
.report_wrap .publ_date {
    font-size: 15px;
    color: #666;
}
.report_pub{    
    font-size: 12px;      
}
.report_text-inner .show-more-info {
  width: 44px;
  height: 44px;
  bottom: 22px;
  top: auto;
  right: 10px;
}
.releases_sec .report_wrap,
.releases_sec .report_text{    
    padding: 0;
    height: 100%;
}
.releases_sec .report_text-inner{
    margin-top: 0px;
    height: 100%;
}

@media screen and (max-width: 768px){
    .report_text-inner .show-more-info{
        position: absolute;
    }
}

/*-- NRI Zone --*/
.accordion-item,
.accordion-item:not(:first-of-type){
    border: rgba(216, 216, 216, 1) solid 1px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.accordion-button:focus{    
    background-color: transparent;
    box-shadow: none;
}
.accordion-button:not(.collapsed){
    color: #769B02;
    background-color: transparent;
    box-shadow: none;
}
.accordion-button{
    background-color: transparent;
    font-weight: 600;
}

/* 30-09-25 */
.elementor-button-content-wrapper {display: flex;flex-direction: row;gap: 10px;}
.elementor-button-content-wrapper .elementor-button-text {color: #3E464F;}
.elementor-button-content-wrapper .elementor-button-icon svg { width: 20px; height: 20px; fill: #3E464F;}
.blog_inner p {color: #3E464F;margin-bottom: 20px;}
.blog_inner h3 {color: #0B031F; font-weight: 600; margin-bottom: 15px;}
.blog_inner h4 { font-weight: 600; margin-bottom: 15px;}

/*-- Request A Site Visit --*/
.form-control{
    border-radius: 0;
    box-shadow: none;
    border:none;
    border-bottom: 1px solid #C4C2BF;
    font-size: 14px;
    font-weight: 400;
    color: #3A3348;
    background-color: transparent;
    height: 45px;
    padding: 10px 0;   
    font-family: Arial, Helvetica, sans-serif;
}
select.form-control{
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;    
}

.rasv_form .page_btn,
button.page_btn{
    min-width: 250px;
    border: none;
}

.sticky-btns{
    position: fixed;
    top: 55vh;
    right: -140px;
    transform: rotate(-90deg);
    z-index: 15;
}
.sticky-btns.enq-only {
  right: -30px;
}
.query-btn {    
    padding: 10px 20px;
    background-color: var(--theme-color);
    color: #000;
    border: none;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    font-size: 18px;
    letter-spacing: 1px;   
}
.download-btn{    
    padding: 10px 20px;
    background-color: #0B031F;
    color: #fff;
    border: none;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    font-size: 18px;
    letter-spacing: 1px;
}

/* Slide-in form style */
.inquiry-form,
.download-form,
.floorplan-form {
    position: fixed;
    top: 0;
    right: -150%;
    width: 400px;
    height: 100%;
    background-color: #fff;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    overflow: auto;
    z-index: 999;
    transition: right 0.3s ease;
}
.inquiry-form.active,
.download-form.active,
.floorplan-form.active {
    right: 0;
}
.form-close {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    background-color: var(--theme-color);
    width: 40px;
    height: 40px;
    line-height: 30px;
}
.inquiry-form h3{
    padding-left: 10px;
    border-left: 3px solid var(--theme-color);
}
.form-field {
    margin-bottom: 15px;
}

.form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-field input, .form-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-submit {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}
#inquiryFormFields .page_btn,
#downloadFormFields .page_btn {
    width: 100%;
    border: none;
}

/* Responsive design */
@media (max-width: 600px) {
    .inquiry-form,
    .download-form {
        width: 100%;
    }
}
@media screen and (min-width:991px){
.blog-details-banner .banner_img{max-height:85vh; overflow:hidden;}
}
.dynamic-page-content h2,
.dynamic-page-content h3,
.dynamic-page-content h4,
.dynamic-page-content h5{padding-bottom:.5em;}
.dynamic-page-content p{padding-bottom:15px;}
.our-insights h3 a{color: var(--bs-heading-color); }
@media screen and (max-width:991px){
  .our-insights h3 a {font-size: 18px;font-weight: 600;}
}
@media screen and (max-width:767px){
.footer_upper .fu_text{text-align:center;}
}


.vertual-tour .tabs { padding: 0; margin: 0; list-style: none; display: flex; flex-wrap: wrap;  justify-content: center; }
.vertual-tour .tab {min-width: 175px; background-color: #fff; padding: 13px 30px; display: inline-block; color: #083002; font-size: 15px;
  text-align: center; border: rgba(34, 40, 37, 1) solid 1px; margin: 0 5px 20px;border-radius: 50px;  cursor: pointer;}
.vertual-tour .tab.active {background-color: var(--theme-color); border-color: var(--theme-color);}

.vertual-tour .tab-content {display: none;}
.vertual-tour .tab-content.active { display: block;}
.vertual-tour .tab-content .swiper {width: 100%; padding: 20px 0;}
.vertual-tour .swiper-slide img,
.vertual-tour .swiper-slide iframe {width: 100%; border-radius: 8px; }
.vertual-tour .tour_prev,.tour_next { color: #007bff; }
.vertual-tour .swiperbtn{justify-content: center;margin-top: 10px;}
@media screen and (max-width:767px){
  .vertual-tour .tab{min-width: inherit; padding: 8px 7px;font-size: 12px;margin: 0 2px 10px;}
}
.b_text .banner-subheading + ul{margin-top:1em;}
.rera-num {background: rgba(0,0,0,.5); display: inline-block; padding: 5px 15px; border-radius: 30px;}
.rera-num span{color: var(--theme-color);}
.facilities-section p{margin-bottom:10px;}
