

@font-face { font-family:GalanoGrotesqueRegular; 
			 src: url('../fonts/GalanoGrotesqueRegular.otf'); } 

@font-face { font-family:GalanoGrotesqueMedium; 
			 src: url('../fonts/GalanoGrotesqueMedium.otf'); } 

body {
    min-height: 100vh;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    scroll-behavior: smooth;
    
}

/*// Solving overscroll*/

footer .upper_footer .row {
    margin-left: 0px;
    margin-right: 0px;
}

.at_karnavat .statistics > .row {
    margin-left: 0px;
    margin-right: 0px;
}

.about_statistics .statistics > .row {
    margin-left: 0px;
    margin-right: 0px;
}

p{ text-align:justify;}

.breadcrumb_link {
    color: #666;
    text-decoration: none;
}

    .breadcrumb_link:hover {
        color: #222;
        text-decoration: none;
    }


::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #145ca6;
}

#new_header, #inner_header {
    /* position: sticky;
    top: 0; */
    z-index: 9;
}

#inner_header {
    background-color: #fff;
    position: fixed !important;
    min-height: min-content;
    padding-bottom: 24px;
    padding-top: 24px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0px 0px 16px rgb(0 0 0 / 8%);
}



#topBar ul li {
    position: relative;
    display: inline-block;
}

#topBar > ul > li {
    float: left;
}

#topBar a {
    display: block;
    /*padding: 1.2rem 1.8rem;*/
    line-height: 1.2rem;
    color: #FFF;
    transition: .2s ease-out;
}

/*#topBar a:hover, li.active{
  background: #c6302d;
}*/
#topBar > ul > li:hover ul.subMenu{ opacity:1; }

ul.subMenu {
    box-sizing: border-box;
    position: absolute;
    padding: 0px;
    top: 100%;
    opacity:0;
}



    ul.subMenu li {
        width: 100%;
        background: #3d3d3b;
    }

#topBar ul.subMenu li a {
    width: 100%;
    min-width: max-content;
    padding: 1rem 2rem;
    /*border-bottom: 1px solid rgba(0,0,0,.05);
    border-top: 1px solid rgba(255,255,255,.1);*/
}
#topBar ul li li a { padding: 1rem 1rem; }
#topBar ul li li a:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0px;
    width: 0;
    height: 1px;
    background: #fff;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    visibility: hidden;
    opacity: 0;
}
#topBar ul li li a:hover:before, 
#topBar ul ul li.current-menu-item>a:before, 
#topBar ul ul li.current-menu-ancestor>a:before {
    left: 10px;
    visibility: visible;
    opacity: 1;
    width: 18px;
}

    #topBar ul.subMenu li a:hover, #topBar ul.subMenu li.active > a {
        background: #1461a8;
         padding: 1rem 2.2rem;
    }

ul.subMenu ul.subMenu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
}

.btn {
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none;
    color: #000 !important;
    line-height: 1.5;
    padding: 12px 40px;
    font-size: 16px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1.4px;
    position: relative;
    font-weight: 500;
}

.btn-primary {
    display: flex;
    align-items: center;
    color: #fff !important;
    box-shadow: 8px 8px 15px rgb(0 0 0 / 23%) !important;
    text-transform: uppercase;
    background-image: linear-gradient(to right, #145ca6, #0b8cb6);
}

.btn-white {
    background: #fff;
    color: #000 !important;
}

    .btn-white:hover {
        background: #fff !important;
        color: #000 !important;
    }

.btn-primary span {
    padding-left: 8px;
    -webkit-transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -ms-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.btn-primary:hover .material-symbols-outlined {
    -webkit-transform: translateX(5px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
}

.btn-primary {
    text-transform: uppercase !important;
    color: #fff;
    cursor: hand;
    text-transform: capitalize;
    position: relative;
    overflow: hidden !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 1;
}

.btn-primary:hover {
        color: #145fa7 !important;
    }


    /*======= Button 3 =======*/
.btn-primary::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #000;
  -webkit-transform: scaleX(.3);
  transform: scaleX(.3);
  opacity: 0;
  transition: all .3s
}
.btn-primary:hover::before{
  opacity: 1;
  background-color: #6098FF;
  background-color: #97ca3d;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  transition: -webkit-transform .6s cubic-bezier(.08, .35, .13, 1.02), opacity .4s;
  transition: transform .6s cubic-bezier(.08, .35, .13, 1.02), opacity
}

.btn span img {
    width: 25px;
    position: absolute;
    opacity: 0;
    transition: .3s linear;
}

.btnlogoL img {
    bottom: 0;
    left: 0;
}

.btnlogoR img {
    top: 0;
    right: 0;
}

.btn-primary:hover img {
    opacity: 1;
}

.click-btn {
    padding: 12px 36px;
    justify-content: center;
    align-items: center;
    line-height: 35px;
    border: 1px solid;
    border-radius: 23px;
    text-align: center;
    font-size: 18px;
    color: #000;
    background: #fff;
    color: #000 !important;
    z-index: 0;
    text-decoration: none;
    transition: all 0.35s;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s linear;
}

.btn-style507 {
    position: relative;
    border-color: #0c89b5;
    color: #dd6395;
    overflow: hidden;
}

    .btn-style507::before {
        width: 15%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #0c89b5;
        transform: rotateZ(-45deg) translate(-50%, -50%);
        transition: 0.3s linear;
        content: "";
        z-index: -1;
    }

    .btn-style507:hover {
        color: #fff !important;
        transition-delay: 0.35s;
        transition: 0.3s linear;
        text-decoration: none;
    }

        .btn-style507:hover::before {
            animation: ani507 0.6s forwards;
        }

@keyframes ani507 {
    10% {
        width: 0;
        transform: rotateZ(-45deg) translate(-100%, -50%);
    }

    20% {
        width: 0;
        transform: rotateZ(0) translate(-100%, 85%);
    }

    60% {
        width: 100%;
        transform: rotateZ(0) translate(0, 85%);
    }

    100% {
        width: 100%;
        transform: rotateZ(0) translate(0, 0);
    }
}


/*section-heading*/

.section-heading {
    margin-bottom: 30px;
}
.section-heading h2 {
        color: #3097ba;
        text-transform: uppercase;
        font-size: 42px;
        font-family: GalanoGrotesqueMedium;
        font-weight: 700;
        letter-spacing: 2px;
 }

.section-heading h3 {
        font-size: 28px;
        font-family: GalanoGrotesqueRegular;
        line-height: 38px;
        margin-top: 15px;
 }




/* Banner Styles start here */
.banner {
    min-height: 400px;
    background-image: url('https://picsum.photos/id/200/1900/400');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


/* Banner Styles end here */




/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
    position: fixed !important;
    top: 0 !important;
    width: 100%;
    background-color: #fff !important;
    box-shadow: 0px 0px 16px rgb(0 0 0 / 8%);
}

div.hamburger {
    display: none;
}

.hamburger_menu {
    position: fixed;
    top: 0;
    bottom: 0;
    /* right:-240px; */
    right: -260px;
    width: 260px;
    background-color: #222;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
    z-index: 100;
    padding: 24px;
    transition: all 300ms 0ms ease-in;
    display: none;
}

    .hamburger_menu .close_icon {
        position: absolute;
        top: 6px;
        right: 14px;
        padding: 8px;
    }

        .hamburger_menu .close_icon i {
            font-size: 24px;
            padding: 8px;
        }

    .hamburger_menu .img {
        width: 120px;
        align-self: center;
    }

        .hamburger_menu .img a {
            width: 100%;
        }

            .hamburger_menu .img a img {
                width: 100%;
            }

    .hamburger_menu ul.top_list {
        list-style: none;
        padding-left: 0;
    }

        .hamburger_menu ul.top_list > li {
            margin-bottom: 24px;
        }


        .hamburger_menu ul.top_list li > a {
            color: #fff;
            text-decoration: none;
            margin-bottom: 8px;
            display: block;
            /*font-family: 'Poppins', sans-serif;*/
            font-size: 16px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 4px;
        }


    .hamburger_menu ul.inner_list {
        list-style: none;
        padding-left: 0;
        display: none;
        padding-left: 12px;
    }



        .hamburger_menu ul.inner_list > li {
            /*background-color: #98ca3c;*/
            color: #fff;
            border-radius: 4px;
        }

            .hamburger_menu ul.inner_list > li > a {
                color: #eee;
                text-decoration: none;
                font-weight: 400;
                padding: 2px;
                padding-left: 6px;
                padding-right: 6px;
            }

.show_me {
    display: block !important;
}

.caret_rotate {
    rotate: 180deg;
}


.enquiry {
    display: flex;
    position: fixed;
    top: 16vh;
    right: 40px;
    /* bottom: 320px; */
    gap: 6vh;
    transform: rotate(-90deg);
    /* display: none; */
    transform-origin: right;
    z-index: 2;
    width: 80vh;
    top: 57%;
    transform: rotate(-90deg) translateX(50%);
}

    .enquiry .social_icons {
        transition: all 300ms 50ms ease-in;
    }

    .enquiry button {
        color: #fff;
        /* background-color: transparent; */
        text-transform: uppercase;
        padding: 4px 28px;
        border-radius: 50px;
        border: 0;
        background-image: linear-gradient(to right, #145ca6, #0b8cb6);
        z-index: 100;
        transition: all 150ms ease-in 0ms;
        /*font-family: 'Roboto', sans-serif;*/
        letter-spacing: 1px;
        font-size: 16px;
        width: 300px;
        cursor: pointer;
        max-width: max-content;
    }

        .enquiry button img {
            transform: rotate(90deg);
            width: 18px;
            margin-right: 10px;
        }

        .enquiry button:hover {
            /* background-image: linear-gradient(to right, #145ca6, #0b8cb6, #9acb3c); */
            background-image: unset;
            background-color: #9acb3c;
            color: #222;
        }

.social_icons {
    display: flex;
    gap: 4vh;
    width: 450px;
    justify-content: flex-end;
    position: relative;
}

    .social_icons a {
        width: 40px;
        height: 40px;
        display: flex;
        background-color: white;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        color: #222;
        transition: all 150ms ease-in 0ms;
        border: 1px solid #999;
        background-color: #fff;
        position: relative;
    }

a.social img {
    width: 40px;
}

.social_icons a.social {
    border: 0;
    background-color: #beedff;

    display: none;
}

a.social {
    display: none;
}

    .social_icons a.social img {
        width: 20px;
    }

.fixed_icons .social_icons a:not(a.social)::after {
    content: '';
    position: absolute;
    left: -3.6vh;
    bottom: 50%;
    /* transform: translateY(-50%); */
    width: 3vh;
    height: 1px;
    background-color: #b1a9a9ad;
}


.fixed_icons .social_icons a.first:not(a.social)::after {
    content: '';
    position: absolute;
    left: -8.6vh;
    bottom: 50%;
    transform: translateY(-50%);
    /* width: 120px; */
    width: 8vh;
    height: 1px;
    background-color: #b1a9a9ad;
    z-index: 1;
}

.social_icons a:hover {
    color: #2e328b;
}

.social_icons a.fb:hover {
    background-color: #4267B2;
    color: #fff;
    border: 0;
}

.social_icons a.insta:hover {
    background-color: unset;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: #fff;
    border: 0;
}

.social_icons a.lkin:hover {
    background-color: #0077b5;
    color: #fff;
    border: 0;
}

.social_icons a.tw:hover {
    background-color: #1DA1F2;
    color: #fff;
    border: 0;
}

.fixed_icons .social_icons a i {
    transform: rotate(90deg);
}


















/* Header Styles start here */

header {
    min-height: 100vh;
    /*padding-top: 40px;*/
    /* background-image: url('../images/slider.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    position: relative;
}

.video-section-container {
    position: relative;
}

.video-section-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #3098bb;
    z-index: -11;
}

#my_form {
    width: 480px;
    position: fixed;
    z-index: 999999999;
    top: 50%;
    right: -480px;
    transform: translateY(-50%);
    /*transition: all 500ms 0ms ease-in;*/
    transition: .3s linear;
    border: none;
}

#my_form .card-header {
    background-image: linear-gradient(to right, #145ca6, #0b8cb6);
    color: #fff;
}

    #my_form .card-header h3 {
        font-size: 24px;
    }

#my_form .card-body {
    padding-top: 0;
}

#my_form .parsley-errors-list.filled {
    margin-bottom: 0;
}


header video {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    /*filter: brightness(0.5);*/
    transition: all 500ms 0ms ease-out;
}

header #video1 {
    
}

header #video2 {
}
/*.video-section{ position:relative;}*/
.video-section:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    /*background: linear-gradient(180deg, rgb(0 0 0 / 25%), rgb(6 6 6 / 0%));*/
    /*background: linear-gradient(180deg, rgba(140, 198, 220, 0.25), rgba(140, 198, 220, 0));*/
}

header h1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 640px;
    color: #fff;
    font-size: 50px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
}

header .dynamic_links.mobile_version {
    display: none;
}

header .dynamic_links {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 90%;
    transform: translateX(-50%);
}

    header .dynamic_links ul {
        display: flex;
        list-style: none;
        margin-bottom: 0;
        padding:0;
    }

        header .dynamic_links ul li {
            width: 25%;
        }

            header .dynamic_links ul li a {
                display: block;
                width: 100%;
                color: #fff;
                font-size: 18px;
                text-transform: capitalize;
                padding: 20px 25px;
                /*font-family: 'Roboto Condensed', sans-serif;*/
                text-decoration: none;
                position: relative;
                display: flex;
                gap: 16px;
            }

                header .dynamic_links ul li a > span {
                    font-size: 28px;
                    font-weight: 600;
                    /*font-family: 'Roboto Condensed', sans-serif;*/
                }

                header .dynamic_links ul li a::after {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 1px;
                    background-color: #c7c7c78c;
                }

                header .dynamic_links ul li a:hover::after {
                    content: '';
                    position: absolute;
                    top: -3px;
                    left: 0;
                    width: 100%;
                    height: 7px;
                    background-color: #fff;
                }

            header .dynamic_links ul li.active a::after {
                content: '';
                position: absolute;
                top: -3px;
                left: 0;
                width: 100%;
                height: 7px;
                background-color: #fff;
            }

            header .dynamic_links ul li a::before {
                content: '';
                position: absolute;
                top: 50%;
                right: 0;
                transform: translateY(-50%);
                width: 1px;
                height: 60%;
                background-color: #c7c7c78c;
            }

            header .dynamic_links ul li a.last::before {
                content: none;
            }

header .enquiry {
    display: flex;
    position: absolute;
    right: -300px;
    bottom: 320px;
    gap: 80px;
    rotate: -90deg;
    /* display: none; */
}

    header .enquiry button {
        color: #fff;
        /* background-color: transparent; */
        text-transform: uppercase;
        padding: 8px 32px;
        border-radius: 50px;
        border: 0;
        background-image: linear-gradient(to right, #145ca6, #0b8cb6);
        z-index: 100;
        transition: all 150ms ease-in 0ms;
    }

        header .enquiry button:hover {
            background-image: linear-gradient(to right, #145ca6, #0b8cb6, #9acb3c);
            color: #eee;
        }

form .btn {
    padding: 8px 40px;
}

header .social_icons {
    display: flex;
    gap: 40px;
    width: 450px;
    justify-content: flex-end;
    position: relative;
}

    header .social_icons a {
        width: 40px;
        height: 40px;
        display: flex;
        background-color: white;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        color: #2e328b;
        transition: all 150ms ease-in 0ms;
        color: #fff;
        border: 1px solid;
        background-color: transparent;
        position: relative;
    }

        header .social_icons a::after {
            content: '';
            position: absolute;
            left: -32px;
            bottom: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 1px;
            background-color: #fff;
        }

        header .social_icons a.first::after {
            content: '';
            position: absolute;
            left: -132px;
            bottom: 50%;
            transform: translateY(-50%);
            width: 120px;
            height: 1px;
            background-color: #fff;
            z-index: 1;
        }

        header .social_icons a:hover {
            color: #2e328b;
        }

        header .social_icons a.fb:hover {
            background-color: #4267B2;
            color: #fff;
            border: 0;
        }

        header .social_icons a.insta:hover {
            background-color: unset;
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
            color: #fff;
            border: 0;
        }

        header .social_icons a.lkin:hover {
            background-color: #0077b5;
            color: #fff;
            border: 0;
        }

        header .social_icons a.tw:hover {
            background-color: #1DA1F2;
            color: #fff;
            border: 0;
        }

        header .social_icons a i {
            rotate: 90deg;
        }

header .header_container {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}


.upper_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .upper_header .right_part {
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .upper_header .right_part li.nav_link {
            position: relative;
        }

    .upper_header ul {
        display: block;
        list-style: none;
        margin-bottom: 0;
        padding: 0;
        min-width: 15rem;
    }

        .upper_header ul li a {
            color: #fff;
            font-size: 18px;
            font-family: GalanoGrotesqueRegular;
            line-height: 24px;
            text-transform: capitalize;
            padding: 15px 16px;
            /*padding-bottom: 16px;*/
            text-decoration: none;
            position: relative;
            display: block;
            /* height: 50px; */
            /*min-height: 50px;*/
            letter-spacing: 1px;
        }

        .upper_header > ul > li.active > a::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #fff;
        }
        .subMenu ul li.active a::after{
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #fff;
        }

        .upper_header ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: #c7c7c78c;
        }
        /*.upper_header ul li:last-child a::after{ height:0; }*/
        .upper_header ul li a:hover::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #fff;
        }
        .upper_header .subMenu li a::after,
        .upper_header .subMenu li a:hover::after{height: 0px; }

        .upper_header ul li.active a.sticky_anchor::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #666;
        }

        .upper_header ul li a.sticky_anchor::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: transparent!important;
        }
        .inner-header > ul > li > a::after{
            background-color: transparent!important;
        }
        .inner-header .upper_header > ul > li > a::after{  background-color: transparent!important; }
        .upper_header ul li a.sticky_anchor:hover::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: transparent;
        }

        .upper_header ul li:hover > ul.drop_down {
            display: block;
            transform: translateY(5px);
            transition: .3s linear;
        }

        .upper_header ul.drop_down {
            flex-direction: column;
            padding-left: 0;
            /* background-color: #63afcc; */
            position: absolute;
            width: 210px;
            display: none;
        }

            .upper_header ul.drop_down li {
                background-color: #63afcc;
                transition: .3s linear;
            }

                .upper_header ul.drop_down li:hover {
                    background-color: #3589a9;
                }


        .upper_header ul li.drop_down_item a::after {
            content: none;
        }


    .upper_header .right_part button:hover {
        background-color: #9acb3c;
        color: #222;
    }

/* Header Styles end here */




.block {
    padding: 7rem 0 0;
}



/* At karnavat Styles start here */
.at_karnavat {
    background-image: url('../images/fact-bg1.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}
.at_karnavat .text-center {
       max-width: 840px;
       margin-left: auto;
       margin-right: auto;
    }

.at_karnavat .statistics {
       max-width: 1200px;
       margin-left: auto;
       margin-right: auto;
}
 .at_karnavat .statistics .stats {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;      
  }
.at_karnavat .statistics .stats p {
      color: #339abb;
      font-size: 20px;
      margin-bottom: 0;
      font-weight: 600;          
  }
 .at_karnavat .statistics .stats span {
      color: #1451a1;
      font-size: 64px;
      font-weight: 600;
  }
.at_karnavat .upper_part p {
      font-size: 20px;
      font-weight: 400;
      max-width: 800px;
      text-align: center;
 }
 .at_karnavat .statistics .stats .counter .counter-sup {
     font-size: 45px;
     color: #1451a1;
}

/* At karnavat Styles end here */





/* Developments Styles start here */

    .developments .img.outside_top_content {
        position: absolute;
        top: 0;
        top: -35px;
        bottom: 0;
        left: 0px;
        width: 50%;
        height: 100%;
    }
    .development_banner{ background-image: url('../images/development-home.png'); }
    .developments .img.inside_top_content {
        position: absolute;
        top: 0;
        top: -35px;
        bottom: 0;
        left: 0px;
        width: 50%;
        height: 100%;
        display: none;
    }

    .developments .img img {
        width: 100%;
        height: 100%;
        border-radius: 24px;
    }


    .developments .top_content:before {
        position: absolute;
        content: '';
        width: 100%;
        height: 99%;
        top: 0;
        left: 0;
        background-image: linear-gradient(to right, #1261a6, #0a8ab7);
        z-index: -1;
    }

    .developments .developments_block {
        position: relative;
        margin-top: 25px;
    }

    .developments .top_content {
        padding: 55px;
        color: #fff;
        margin-bottom:20px;
    }

        .developments .top_content h2 {
            text-transform: uppercase;
            color: #9acb3c;
            font-weight: 600;
            position: relative;
        }
       .developments .top_content h2 span {
                position: relative;
                bottom: 15px;
            }
       /*.developments .bottom_content{ padding-left: 20px;}*/
       .developments .bottom_content h2 {
            text-transform: capitalize;
            color: #323232;
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 24px;
        }

        .developments .bottom_content p.inner_p {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            font-weight: 500;
        }

        .developments .bottom_content p span {
            font-weight: normal;
            font-size: 14px;
        }

        .developments .bottom_content p.outer_p {
            font-size: 14px;
            max-width: 193px;
            text-align: center;
            margin: 0 auto;
        }

        .developments .bottom_content .upper_part {
            position: relative;
            height: 125px;
            max-width: 200px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
        }

        .developments .bottom_content .upper_part img {
                width: 60px;
                position: absolute;
                top: 0;
                left: 0;
            }

        .developments .bottom_content .upper_part img.img2 {
                    width: 60px;
                    position: absolute;
                    top: 0;
                    right: 0;
                    left: unset;
                }

        .developments .bottom_content .upper_part p {
                max-width: 100px;
                margin-left: auto;
                margin-right: auto;
                font-size: 15px;
                margin-bottom: 0px;
                padding: 4px;
            }

.awards_slider .slick-arrow {
    top: -35px;
    right:8px;
}

.awards_slider .slick-prev {
    right: 58px;
    left: auto;

}


button.slick-arrow {
}

.slick-prev:before, .slick-next:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #0b85b5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Developments Styles start here */





/* Acquisition Styles start here */

.acquisitions_n_developments.banner {
    background-image: url('../images/banners/projects.jpg');
}


.section-heading .subheading h3 {
    color: #1a529f;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.4;
    font-family: 'Manrope', sans-serif;
}
    .acquisition .content {
        width: 33%;
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

.acquisition_brownfield {
    margin-bottom: 48px;
}

    .acquisition_brownfield .img {
        flex-basis: 60%;
        background-image: url('../images/homepage/brownfield.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 600px;
        border-bottom-left-radius: 200px;
        position: relative;
    }

        .acquisition_brownfield .img .inside_content {
            position: absolute;
            top: 0;
            right: 0;
            width: 400px;
            padding: 24px;
            padding-bottom: 30px;
            background-color: #fff;
            border-bottom-left-radius: 70px;
        }

    .acquisition_brownfield .inside_content section {
        display: flex;
        justify-content: space-between;
    }

    .acquisition_brownfield .inside_content .stat_container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-right: 12px;
        text-align: center;
    }

    .acquisition_brownfield .inside_content .stat {
        color: #97ca3d;
        font-size: 50px;
        font-weight: 600;
        font-family: 'Poppins', sans-serif;
    }

.count-plus {
    font-size: 35px;
    font-weight: 600;
    color: #97ca3d;
}



.acquisition_brownfield .inside_content .stat1_unit {
    color: #97ca3d;
    position: relative;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    display: block;
}

.acquisition_brownfield .inside_content .stat_content {
    padding-left: 20px;
    font-size: 22px;
    color: #97ca3d;
    width: 242px;
    border-left: 1px solid #97ca3d;
}

.acquisition_greenfield .img {
    flex-basis: 60%;
    background-image: url('../images/homepage/greenfild.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 600px;
    border-top-right-radius: 200px;
    position: relative;
}

.acquisition_greenfield .content {
    order: 1;
}

.acquisition_greenfield .img .inside_content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    padding: 24px;
    padding-bottom: 30px;
    background-color: #fff;
    border-top-right-radius: 70px;
}

.acquisition_greenfield .inside_content section {
    display: flex;
    justify-content: space-between;
}

.acquisition_greenfield .inside_content .stat_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 12px;
    text-align: center;
}

.acquisition_greenfield .inside_content .stat {
    color: #97ca3d;
    font-size: 40px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.acquisition_greenfield .inside_content .stat1_unit {
    color: #97ca3d;
    position: relative;
    right: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
}

.acquisition_greenfield .inside_content .stat_content {
    padding-left: 20px;
    font-size: 24px;
    color: #97ca3d;
    width: 242px;
    border-left: 1px solid #97ca3d;
}

.acquisition h3 {
    margin-bottom: 0;
}

/* Acquisition Styles end here */






/* Check region Styles start here */

.check_region {
    min-height: 400px;
    background-color: #ebeff0;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 104px;
    padding-top: 32px;
    padding-bottom: 32px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
    position: relative;
    display: flex;
    width: 100%;
}

    .check_region .img1 {
        position: absolute;
        bottom: 0;
        left: -1px;
    }

    .check_region .img2 {
        position: absolute;
        top: 0;
        right: 0;
    }

    .check_region .content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

        .check_region .content h2 {
            color: #1a53a2;
            font-size: 40px;
            max-width: 360px;
            line-height: 1.2;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .check_region .content p {
            line-height: 1.4;
            font-size: 20px;
            font-weight: 500;
        }
    .check_region .img {
        flex-basis: 40%;
        position: relative;
    }

    .check_region .img img {
            width: 100%;
        }

.dot {
    background: #bf1e2e;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    animation: 2s ease infinite pulse;
}

.dot-region {
    background: #bf1e2e;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: 2s ease infinite pulse3;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(240, 86, 112, 0.4);
    }

    100% {
        box-shadow: 0 0 0 24px rgba(240, 86, 112, 0);
    }
}

@keyframes pulse2 {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 50, 146, 0.4);
    }

    100% {
        box-shadow: 0 0 0 24px rgba(46, 50, 146, 0);
    }
}

@keyframes pulse3 {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 50, 146, 0.4);
    }

    100% {
        box-shadow: 0 0 0 15px rgba(46, 50, 146, 0);
    }
}

.map-dots .dot-2 {
    background: #2e3292;
    animation: 2s ease infinite pulse2;
}

.map-dots .dot {
    position: absolute;
    transform: translate(-50%,-50%);
}

.map-dots span:nth-child(1) {
    top: 21%;
    left: 61%;
}

.map-dots span:nth-child(2) {
    top: 36%;
    left: 31%;
}

.map-dots span:nth-child(3) {
    top: 50%;
    left: 44%;
}

.map-dots span:nth-child(4) {
    top: 52%;
    left: 70%;
}

.map-dots span:nth-child(5) {
    top: 53%;
    left: 94%;
}

.map-dots span:nth-child(6) {
    top: 72%;
    left: 82%;
}


.map-dots .dot1 {
    top: 48%;
    left: 20%;
}

.map-dots .dot2 {
    top: 64%;
    left: 18%;
}

.map-dots .dot3 {
    top: 93%;
    left: 90%;
}

.btn-fullmap {
    color: #3097ba;
    text-decoration: none;
    font-weight: bold;
    position: absolute;
    bottom: 30px;
    right: 80px;
}

/* Check region Styles end here */






/* Community Styles start here */

.community-bannner {
    background-image: url('../images/banners/community.jpg')!important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 107px;

}
.community {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
    margin-bottom: 0;
    padding-top: 32px;
    padding-top: 10px;
    position: relative;
}

    .community .img {
        position: absolute;
        top: 0;
        bottom: 0;
        left: -6px;
        width: 60%;
        height: 100%;
    }

        .community .img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-top-right-radius: 208px;
            border-bottom-left-radius: 180px;
        }

    .community .content_container {
    }

    .community .top_content-container {
        display: flex;
        justify-content: flex-end;
    }

    .community .top_content {
        padding-bottom: 32px;
        padding-left: 40px;
        gap: 24px;
    }
        .community .top_content h2 span {
                position: relative;
                bottom: 15px;
            }

        .community .top_content p {
            color: #222;
            font-weight: 400;
            font-size: 18px;
        }

    .community .bottom_content {
        padding: 30px;
        background-image: linear-gradient(to right, #1261a6, #0a8ab7);
        border-radius: 12px;
        gap: 16px;
        color: #fff;
    }

.slider-section {
    position: relative;
}

.community .slideshow {
    height: 100%;
    width: 100%;
}

.community_slider_text {
    position: absolute;
    bottom: 0;
    background-color: #fff;
    padding: 30px;
    padding-top: 45px;
    width: 320px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 8px 8px 16px 0 rgba(0, 0, 0, 0.3);
    margin-left: -1px;
    width: 360px;
}

    .community_slider_text h4 {
        letter-spacing: 0.5px;
        font-size: 1.3rem;
    }

.bg-community {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    border-radius: 20px;
    height: 100vh;
}

.community1 {
    background-image: url('../images/Upvan1.jpg');
}

.community2 {
    background-image: url('../images/eastern_expressway_garden.jpg');
}

.community3 {
    background-image: url('../images/centre_for_arts_thane.jpg');
}

#communityInsights .slick-slider .slick-track, #communityInsights .slick-slider .slick-list {
    height: 90vh;
}

.content_part h4 {
    transition: .3s linear;
}

.community .bottom_content .content_part {
    margin-bottom: 15px;
    color: #fff;
    border-bottom: 1px solid #bbb;
    text-decoration: none;
}

.community .bottom_content a {
    text-decoration: none !important;
}

.community .bottom_content .content_part:hover,
.community .bottom_content .content_part h4:hover {
    text-decoration: none !important;
}

.community .bottom_content p {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #fff;
    font-size: 18px;
    margin-bottom: 4px;
    padding: 5px;
}

.community .bottom_content .content_part:hover h4 {
    transform: translateY(-5px);
    transition: .3s linear;
}

.community .bottom_content .content_part::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #bbb;
    transition: width .3s;
}

.community .bottom_content .content_part::after {
    height: 2px;
    background: #97ca3d;
}

.community .bottom_content .content_part:hover::after {
    width: 100%;
    transition: width .3s;
}
.community .bottom_content button:hover {
    background-color: #9acb3c;
}





/* Community Styles start here */

.pagingInfo {
    position: absolute;
    bottom: 0%;
    right: 40px;
    z-index: 1;
    color: #000;
    background: #fff;
    letter-spacing: 3px;
    width: 60px;
    height: 48px;
    font-weight: 600;
    text-align: center;
    line-height: 1;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.community .slick-prev:hover, .community .slick-next:hover {
    background: #96c940;
    z-index: 1;
}

.community .slick-prev {
    position: absolute;
    top: auto;
    bottom: -24px !important;
    right: 90px;
    left: auto;
    background: #fff;
    z-index: 1;
    height: 48px;
    width: 50px;
    color: #000;
    border-top-left-radius: 10px !important;
}

.community .slick-next {
    position: absolute;
    top: auto;
    bottom: -24px !important;
    right: 0%;
    background: #fff;
    z-index: 1;
    height: 48px;
    width: 50px;
    color: #000;
}

.slick-prev:before, .slick-next:before {
    color: #000 !important;
    font-size: 28px;
}

.bg-developments {
    background-image: url('../images/development-1.png');
    height: 100%;
    width: 100%;
    background-size: cover;
    border-top-right-radius: 150px;
    border-bottom-left-radius: 150px;
}





.bg-mumbaimap {
    background-image: url('../images/Mumbai_Map.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 78vh;
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
    border:1px solid #eee;
}
.bg-punemap {
    background-image: url('../images/Pune_Map.jpg');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 628px;
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
    border:1px solid #eee;
}
.map-region h4{ text-align:center; margin:20px 0px; color: #1254a1;
    font-weight: 600; }

.puneMap .dot-region1 {
    top: 2%;
    left: 31%;
}
.puneMap .dot-region2 {
    top: 9%;
    left: 43%;
}
.puneMap .dot-region3 {
    top: 44%;
    left: 61%;
}
.puneMap .dot-region4 {
    top: 69.5%;
    left: 40.6%;
}
.puneMap .dot-region5 {
    top: 87%;
    left: 49.5%;
}
.puneMap .dot-region6 {
    top: 96%;
    left: 49.5%;
}
.puneMap .map-regions a:last-child span{    top: -108%;
    left: 128%; }



.bg-mumbaimap .material-symbols-outlined{ color: #1254a1; font-size: 80px; }
.map-regions a {
    width: 15px;
    height: 15px;
    background: #01178b;
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    cursor:pointer;
}
.map-regions a.dot-region:hover > span{  display:block; }

.map-regions a span{ 
    background: #1254a19c;
    color: #fff;
    border-radius: 5px;
    /*font-family: 'Poppins', sans-serif;*/
    padding: 6px 5px;
    position: absolute;
    width: 150px;
    text-align: center;
    top: 118%;
    /* left: 32%; */
    font-size: 15px;
    display: none;
    z-index:9;
}

@media only screen and (max-width:575.98px) {
    .map-regions a.dot-region1 span, .map-regions a.dot-region2 span, .map-regions a.dot-region3 span, .map-regions a.dot-region4 span, .map-regions a.dot-region5 span, .map-regions a.dot-region6 span, .map-regions a.dot-region8 span, .map-regions a.dot-region9 span, .map-regions a.dot-region10 span, .map-regions a.dot-region11 span, .map-regions a.dot-region12 span, .map-regions a.dot-region19 span, .map-regions a.dot-region20 span {
        left: unset;
        right: 0;
    }
}


.dot-region {
    transition: all 200ms 200ms ease-in;
    position: relative;
}

.dot-region1 {
    top: 9%;
    left: 67.2%;
}

.dot-region2 {
    top: 10%;
    left: 63%;
    transition-delay: 400ms;
}

.dot-region3 {
    top: 13%;
    left: 61%;
    transition-delay: 600ms;
}

.dot-region4 {
    top: 12.8%;
    left: 58.4%;
    transition-delay: 800ms;
}

.dot-region5 {
    top: 16%;
    left: 63%;
    transition-delay: 1000ms;
}

.dot-region6 {
    top: 16.5%;
    left: 53.7%;
    transition-delay: 1200ms;
}

.dot-region7 {
    top: 17%;
    left: 48%;
    transition-delay: 1400ms;
}

.dot-region8 {
    top: 27%;
    left: 59.7%;
    transition-delay: 1600ms;
}

.dot-region9 {
    top: 39%;
    left: 61.5%;
    transition-delay: 1800ms;
}

.dot-region10 {
    top: 40%;
    left: 59.5%;
    transition-delay: 2000ms;
}

.dot-region11 {
    top: 40.7%;
    left: 58.5%;
    transition-delay: 2200ms;
}

.dot-region12 {
    top: 44%;
    left: 57%;
    transition-delay: 2400ms;
}

.dot-region13 {
    top: 53%;
    left: 39%;
    transition-delay: 2600ms;
}

.dot-region14 {
    top: 64.8%;
    left: 32.8%;
    transition-delay: 2800ms;
}

.dot-region15 {
    top: 78%;
    left: 21%;
    transition-delay: 3000ms;
}

.dot-region16 {
    top: 77.5%;
    left: 19%;
    transition-delay: 3200ms;
}

.dot-region17 {
    top: 86%;
    left: 19%;
    transition-delay: 3400ms;
}

.dot-region18 {
    top: 72.5%;
    left: 39%;
    transition-delay: 3600ms;
}

.dot-region19 {
    top: 70%;
    left: 54.5%;
    transition-delay: 3800ms;
}

.dot-region20 {
    top: 66.5%;
    left: 73.5%;
    transition-delay: 4000ms;
}


.dot-region::after {
    content: 'content';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 75px;
    background-color: #222;
    color: #fff;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
}

.region1 {
    transition-delay: 200ms;
}

.region2 {
    transition-delay: 400ms;
}

.region3 {
    transition-delay: 600ms;
}

.region4 {
    transition-delay: 800ms;
}

.region5 {
    transition-delay: 1000ms;
}

.region6 {
    transition-delay: 1200ms;
}

.region7 {
    transition-delay: 1400ms;
}

.region8 {
    transition-delay: 1600ms;
}

.region9 {
    transition-delay: 1800ms;
}

.region10 {
    transition-delay: 2000ms;
}

.region11 {
    transition-delay: 2200ms;
}

.region12 {
    transition-delay: 2400ms;
}

.region13 {
    transition-delay: 2600ms;
}

.region14 {
    transition-delay: 2800ms;
}

.region15 {
    transition-delay: 3000ms;
}

.region16 {
    transition-delay: 3200ms;
}

.region17 {
    transition-delay: 3400ms;
}

.region18 {
    transition-delay: 3600ms;
}

.region19 {
    transition-delay: 3800ms;
}

.region20 {
    transition-delay: 4000ms;
}


.dot-region.region1::after {
    content: 'sonipat';
    display: flex;
}

.dot-region.region2::after {
    content: 'sonipat2';
    display: flex;
}

.dot-region.region3::after {
    content: 'sonipat3';
    display: flex;
}

.dot-region.region4::after {
    content: 'sonipat4';
    display: flex;
}

.dot-region.region5::after {
    content: 'sonipat5';
    display: flex;
}

.dot-region.region6::after {
    content: 'sonipat6';
    display: flex;
}

.dot-region.region7::after {
    content: 'sonipat7';
    display: flex;
}

.dot-region.region8::after {
    content: 'sonipat';
    display: flex;
}

.dot-region.region9::after {
    content: 'sonipat9';
    display: flex;
}

.dot-region.region10::after {
    content: 'sonipat10';
    display: flex;
}

.dot-region.region11::after {
    content: 'sonipat11';
    display: flex;
}

.dot-region.region12::after {
    content: 'sonipat12';
    display: flex;
}

.dot-region.region13::after {
    content: 'sonipat13';
    display: flex;
}

.dot-region.region14::after {
    content: 'sonipat14';
    display: flex;
}

.dot-region.region15::after {
    content: 'sonipat15';
    display: flex;
}

.dot-region.region16::after {
    content: 'sonipat16';
    display: flex;
}

.dot-region.region17::after {
    content: 'sonipat17';
    display: flex;
}

.dot-region.region18::after {
    content: 'sonipat18';
    display: flex;
}

.dot-region.region19::after {
    content: 'sonipat19';
    display: flex;
}

.dot-region.region20::after {
    content: 'sonipat20';
    display: flex;
}



/* Serving sector Styles start here */

.serving_sector {
    display: flex;
    min-height: 600px;
    gap: 2px;
}

    .serving_sector .img {
        background-size: auto;
        background-position: left;
        background-repeat: no-repeat;
        flex-basis: 25%;
        /* filter: brightness(0.8); */
        /*cursor: pointer;*/
        position: relative;
        transition: all 500ms ease-in-out 0ms;
    }

        .serving_sector .img::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            width: 100%;
            right: 100%;
            background-color: #000;
            opacity: 0.4;
        }

        .serving_sector .img:hover::before {
            opacity: 0.7;
        }

    .serving_sector .img1 {
        background-image: url('../images/homepage/residential_resized.jpg');
    }

    .serving_sector .img2 {
        background-image: url('../images/homepage/commercial_resized.jpg');
    }

    .serving_sector .img3 {
        background-image: url('../images/homepage/industrial_resized.jpg');
    }

    .serving_sector .img4 {
        background-image: url('../images/homepage/hospitality_resized.jpg');
    }

    .serving_sector .img5 {
        background-image: url('../images/homepage/agricultural_resized.jpg');
    }

    .serving_sector .img:hover {
        flex-basis: 50%;
    }

    .serving_sector .img button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        background: transparent;
        border: 2px solid #fff;
        padding: 12px 24px;
        font-size: 20px;
        visibility: visible;
        font-family: 'Poppins', sans-serif;
    }

    .serving_sector .img:hover button {
        visibility: hidden;
        display: block;
        width: 80%;
        border: 1px solid #fff;
    }

    .serving_sector .img1:hover .after_hover_content {
        visibility: visible;
    }

    .serving_sector .img2:hover .after_hover_content {
        visibility: visible;
    }

    .serving_sector .img3:hover .after_hover_content {
        visibility: visible;
    }

    .serving_sector .img4:hover .after_hover_content {
        visibility: visible;
    }

    .serving_sector .img5:hover .after_hover_content {
        visibility: visible;
    }

    .serving_sector .after_hover_content {
        width: 75%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding-top: 24px;
        padding-bottom: 40px;
        padding-left: 16px;
        /* border: 1px solid #fff; */
        visibility: hidden;
       font-family: GalanoGrotesqueRegular;
       letter-spacing: 2px;
    }

    .serving_sector .after_hover_content {
        display: flex;
        flex-direction: column;
        color: #fff;
        position: relative;
    }

        .serving_sector .after_hover_content::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background-color: #000;
            opacity: 0.2;
            transition: all 500ms ease-in-out 0ms;
        }

            .serving_sector .after_hover_content::after::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100px;
                height: 2px;
                background-color: #fff;
            }

    .serving_sector .img:hover .after_hover_content::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: #000;
        opacity: 0;
    }

    .serving_sector .after_hover_content h3 {
        text-align: center;
        text-transform: uppercase;
        font-size: 24px;
        margin-bottom: 24px;
        font-family: GalanoGrotesqueMedium;
        letter-spacing: 2px;
    }

    .serving_sector .after_hover_content p {
        text-transform: uppercase;
    }

/* Serving sector Styles end here */





/* Footer Styles start here */
footer {
    /* width: unset !important; */
    margin-top: auto;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.upper_footer-container {
    background-color: #245ea8;
    background-image: url('../images/common_footer/fotter_image.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /*font-family: 'Poppins', sans-serif;*/
}

.upper_footer {
    width: 80% !important;
    margin-left: auto;
    margin-right: auto;
    padding-top: 80px;
    padding-bottom: 184px;
}

    .upper_footer .column_1, .upper_footer .column_2 {
        border-right: 1.5px solid rgba(255, 255, 255, 0.3);
    }

    .upper_footer pre {
        font-size: 90%;
        color: #fff;
    }

    .upper_footer h3 {
        color: #fff;
        font-size: 24px;
        margin-bottom: 24px;
        font-family:GalanoGrotesqueMedium;
    }

    .upper_footer ul {
        list-style-type: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

        .upper_footer ul li a {
            text-decoration: none;
            color: #fff;
            font-size: 18px;
        }

        .upper_footer ul li a {
            display: flex;
            align-items: flex-start;
            transition: .3s linear;
            gap: 16px;
        }

            .upper_footer ul li a:hover {
                color: #96c940;
                transform: translateX(5px);
                transition: .3s linear;
            }

        .upper_footer ul.quick_links-list li {
            position: relative;
        }

            .upper_footer ul.quick_links-list li::before {
                content: '-';
                position: absolute;
                top: 50%;
                left: -18px;
                transform: translateY(-50%);
                color: #fff;
            }

    .upper_footer .img_map {
        width: 100%;
    }

        .upper_footer .img_map img {
            max-width: 100%;
        }

.lower_footer {
    background-color: #2e328b;
    border-radius: 12px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 48px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -120px;
}

    .lower_footer .left_part {
        display: flex;
        width: 70%;
    }

        .lower_footer .left_part .img {
            border-right: 2px solid #a3a5c3;
            padding-right: 48px;
        }

        .lower_footer .left_part p {
            color: #fff;
            font-size: 20px;
            line-height: 1.5;
            padding-left: 48px;
        }

    .lower_footer .social_icons {
        display: flex;
        gap: 12px;
    }

        .lower_footer .social_icons a {
            width: 40px;
            height: 40px;
            display: flex;
            background-color: white;
            border-radius: 50%;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            color: #2e328b;
            transition: all 150ms ease-in 0ms;
            /*font-family: 'Poppins', sans-serif;*/
        }

            .lower_footer .social_icons a:hover {
                color: #2e328b;
            }

            .lower_footer .social_icons a.fb:hover {
                background-color: #4267B2;
                color: #fff;
            }

            .lower_footer .social_icons a.insta:hover {
                background-color: unset;
                background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
                color: #fff;
            }

            .lower_footer .social_icons a.lkin:hover {
                background-color: #0077b5;
                color: #fff;
            }

            .lower_footer .social_icons a.tw:hover {
                background-color: #1DA1F2;
                color: #fff;
            }
            .lower_footer .social_icons a:last-child:hover{ background: #fff; }


footer .copyright {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    font-weight: 500;
    /*font-family: 'Poppins', sans-serif;*/
    font-size: 16px;
}

    footer .copyright a {
        text-decoration: none;
        color: #222;
        border-bottom: 1px solid #999;
    }

    footer .copyright p a:hover {
        text-decoration: none;
        border-bottom: 2px dashed #0c89b5;
    }

/* Footer Styles end here */

.lower_footer .left_part .img img{  width: 220px; }









/* Leadership page */

/* Banner Styles start here */
.leadership-banner{  background-image: url('../images/banners/managementteam.jpg'); }

section.banner {
    width: 100vw;
    min-height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 107px;
}

.banner .page_title {
    position: absolute;
    bottom: -1px;
    left: 0;
    background-color: #fff;
    /*width: 360px;*/
      height: 130px;
    /* padding-left: 80px; */
    padding: 12px 40px;
    border-top-right-radius: 50px;
}

    .banner .page_title .meta {
        height: 100%;
        display: flex;
        gap: 16px;
        padding-top: 16px;
        padding-bottom: 16px;
    }

        .banner .page_title .meta .line {
            width: 6px;
            background-color: #222;
            height: 50%;
            align-self: center;
            border-top-right-radius: 50px;
            border-bottom-right-radius: 50px;
        }

        .banner .page_title .meta .title {
            align-self: center;
        }

            .banner .page_title .meta .title h2 {
                font-size: 24px;
                margin-bottom: 0;
                color: #1254a1;
                font-weight: 500;
                font-family: GalanoGrotesqueMedium;
            }

            .banner .page_title .meta .title div {
            }

                .banner .page_title .meta .title div p {
                    margin-bottom: 0;
                    text-align: left!important;
                    display: flex;
                    align-items: center;
                    color: #666;
                    font-family: 'GalanoGrotesqueRegular';
                    font-weight: 500;
                }
                .banner .page_title .meta .title div p span{ margin:0px 5px; }

/* Banner Styles end here */

    .leadership .meta {
    }

    .leadership .leader {
        margin-bottom: 136px;
    }

    .leadership .leader5 {
        margin-bottom: 0 !important;
    }

    .leadership .meta .bottom {
    }

    .leadership .meta .top {
        margin-bottom: 48px;
    }

    .leadership .title {
    }

    .leadership .name {
        text-align: center;
    }

    .leadership .title .name {
        font-size: 35px;
        text-align: center;
    }

    .leadership .title .role {
        font-size: 24px;
        font-weight: 400;
        color: #444;
        text-align: center;
        font-family: 'GalanoGrotesqueRegular';
    }

    .leadership .img {
        position: relative;
        width: 450px;
        height: 340px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 24px;
    }

.leadership2 .img img{ 
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    /*box-shadow: 0px 0px 20px rgb(160 161 158);*/
    border: 4px solid #ffffff;
    padding: 12px;
    background: #fff;
    offset-border: 21px;
    outline: solid 4px #96c93f;
}
.leadership2 .name{ color: #1254a1;
    font-weight: 600;
    font-family: 'Poppins';}
.leadership2 h5{    color: #3098bb;
    font-weight: 600; }


 /* .leadership .img::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: all 500ms 0ms ease-in-out;
}

.leadership .img:hover::after {
    transform: translateX(100%);
} */



        .leadership .img img {
            /*border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;*/
            width: 100%;
            height: 100%;
            /*object-fit: cover;*/
        }

    .leadership .content {
        column-count: 2;
        column-gap: 40px;
        text-align: justify;
     
    }

.bg-team{ position:relative;  margin-bottom: -1px; }
.bg-team::before{ 
    position:absolute;
    content:'';
    width:18%;
    height:100%;
    left:0;
    top:0;
    background:#96c93f;
    z-index: -1;
}
.leadership2 .team-description{    background: #fff;
    padding: 20px;
    border-radius: 20px;}

.leadership2 .img{    margin: 80px 0px;}
.moretext {
  display: none;
}
.moreless-button{
        text-decoration: none;
    font-family: 'Poppins';
    border-bottom: 1px solid;
    font-size: 16px;
    color: #1c98ba;
    font-weight: 500;
}
.moreless-button:hover{ text-decoration: none; }




/* Regions page Styles start here */

.regions.banner {
    background-image: url('../images/banners/presence.jpg');
}

.regions_served {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    margin-top: 80px;
    margin-bottom: 80px;
}

    .regions_served::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: calc(50% + 250px);
        background-color: #e5f1d1;
        border-bottom-right-radius: 120px;
    }

    .regions_served .regions_container {
        width: 90%;
        margin: 0 auto;
    }

    .regions_served .left_section {
    }


        .regions_served .left_section .content {
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding-left: 160px;
        }

            .regions_served .left_section .content h2 {
                text-transform: uppercase;
                color: #0077b5;
                max-width: 500px;
                position: relative;
            }

                .regions_served .left_section .content h2::before {
                    content: '';
                    position: absolute;
                    top: 50%;
                    left: -40px;
                    transform: translateY(-50%);
                    height: 4px;
                    width: 28px;
                    background-color: #3097ba;
                }

            .regions_served .left_section .content h3 {
                font-size: 40px;
                max-width: 500px;
                color: #4c4c4c;
                font-weight: 400;
            }

    .regions_served .right_section {
    }

    .regions_served .region_slider {
        background-image: url('../images/regions.png');
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: center;
    }

        /* .regions_served .region_slider::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: all 500ms 0ms ease-in-out;
} */

        /* .regions_served:hover::after {
    transform: translateX(100%);
} */

        .regions_served .region_slider .img {
            width: 500px;
            height: 500px;
            position: relative;
        }

        .regions_served .region_slider img {
            width: 100%;
            height: 100%;
            border-top-right-radius: 120px;
            border-bottom-left-radius: 120px;
        }

    .regions_served .right_section .content {
        width: 500px;
        height: 500px;
        border-top-right-radius: 120px;
        border-bottom-left-radius: 120px;
    }

    .regions_served .region_slider .img h3 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 16px 32px;
        color: #fff;
        background-color: #1362a8;
    }

.regions-section h3 {
    color: #3097ba;
    /*font-family: 'Roboto Condensed', sans-serif;*/
    font-weight: 600;
}




/* About page Styles start */

.about.banner {
    background-image: url('../images/banners/aboutus.jpg');
}


    .about_us > h2 {
        max-width: 1320px;
        margin: 0 auto;
    }



    .about_us .heading {
        margin-bottom: 24px;
    }

    .about_us.text_content {
    }

        .about_us.text_content .image_text {
            align-items: center;
            padding-top: 32px;
            padding-bottom: calc(72px - 45px);
                display: flex;
    flex-wrap: wrap;
        }

        .about_us.text_content h2 {
            color: #3097ba;
            text-align: center;
            font-family: GalanoGrotesqueRegular;
        }

        .about_us.text_content .content {
        }

            .about_us.text_content .content p {
            }

        .about_us.text_content .image {
            
        }

        .about_us.text_content .image .img {
            width: 100%;
            height: 100%;
            position: relative;
        }

            .about_us.text_content .image .img span {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                color: #fff;
                font-weight: 700;
                font-size: 18px;
                text-transform: capitalize;
                z-index: 100;
                text-align: center;
                display: none;
                transition: all 200ms 150ms ease-in;

            }

        .about_us.text_content .image .img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 200ms 0ms ease-in;
        }

        .about_us.text_content .image .img:hover img:not(.karnavat_icon) {
            filter: brightness(25%);
        }

        .about_us.text_content .image .img:hover span {
            display: flex;
        }

        .about_us.text_content .image .images {
            width: 100%;
            height: 560px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(10, 1fr);
            grid-gap: 8px;
            grid-auto-flow: row;
            grid-auto-rows: 150px;
        }

        .about_us.text_content .image .images .img1 {
            grid-area: 1 / 1 / 8 / 2;
        }

        .about_us.text_content .image .images .img2 {
            grid-area: 1 / 2 / 4 / 3;
        }

        .about_us.text_content .image .images .img3 {
            grid-area: 1 / 3 / 4 / 4;
        }

        .about_us.text_content .image .images .img4 {
            grid-area: 4 / 2 / 8 / 3;
        }

        .about_us.text_content .image .images .img5 {
            grid-area: 4 / 3 / 8 / 4;
        }

        .about_us.text_content .image .images .img6 {
            grid-area: 8 / 1 / 11 / 3;
        }

        .about_us.text_content .image .images .img7 {
            grid-area: 8 / 3 / 11 / 4;
        }

p.important {
    color: #1a53a2;
    font-weight: 700;
    font-size: 20px;
    /*max-width: 78px;*/
    margin-bottom: 0;
}

.about_us.text_content .content p.special_content {
}


.provided_services {
    margin-bottom: 90px;
}

    .provided_services .container {
        /*max-width: 950px;*/
        margin: 0 auto;
    }

        .provided_services .container > .row {
            align-items: center;
        }

    .provided_services h2 {
        font-size: 24px;
        text-align: center;
        text-transform: capitalize;
        width: 240px;
        color: #555;
        margin-bottom: 24px;
    }

    .provided_services .container .service_container {
        display: flex;
        justify-content: center;
        gap: 32px;
        align-items: center;
    }

    .provided_services .service_icon {
        /* display: flex;
    justify-content: center;
    align-items: center; */
        position: relative;
        margin-bottom: 8px !important;
    }

    .provided_services .icon {
        width: 100px;
        height: 100px;
        /*background-color: #fff;*/
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .provided_services .icon img {
            width: 86px;
        }

    .provided_services .left_section {
    }

        .provided_services .left_section .service_icon {
            width: 200px;
            height: 200px;
            background-color: #555;
        }

            .provided_services .left_section .service_icon.icon1 {
                background-color: #96c940;
                border-top-right-radius: 80px;
                border-bottom-left-radius: 80px;
                width: 240px;
                height: 300px;
            }

    .provided_services .right_section {
    }

        .provided_services .right_section .service_icon {
            width: 200px;
            height: 200px;
            background-color: #555;
        }

            .provided_services .right_section .service_icon.icon2 {
                background-color: #1c98ba;
                border-top-left-radius: 80px;
                border-bottom-right-radius: 80px;
                width: 240px;
                margin-bottom: 24px;
            }

            .provided_services .right_section .service_icon.icon3 {
                background-color: #1254a2;
                border-top-left-radius: 80px;
                border-bottom-right-radius: 80px;
                width: 240px;
                height: 240px;
            }



/* About page Styles end */









/* Developments page Styles start here */

.developments.banner {
    background-image: url('../images/banners/developments.jpg');
    margin-bottom: 0;
}


.developments_heading {
    margin-left: auto;
    margin-right: auto;
    width: 75%;
    margin-top: 72px;
    margin-bottom: 80px;
}

    .developments_heading h2 {
        color: #3097ba;
        text-transform: uppercase;
        font-size: 40px;
        text-align: center;
        position: relative;
        max-width: max-content;
        margin-left: auto;
        margin-right: auto;
    }

        .developments_heading h2::before {
            content: '';
            position: absolute;
            top: 50%;
            left: -40px;
            transform: translateY(-50%);
            height: 4px;
            width: 28px;
            background-color: #3097ba;
        }

    .developments_heading .blockquote {
        padding: 20px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .developments_heading .quote {
        font-size: 1.4rem;
        max-width: 400px;
        line-height: 1.4;
        font-style: italic;
        text-align: center;
    }

    .developments_heading .author {
        float: right;
        font-size: 1.1rem;
        font-weight: bold;
    }

    .developments_heading .quote-icon {
        margin-bottom: 10px;
    }

    .developments_heading .blockquote hr {
        margin-top: 20px;
    }

    .developments_heading .text {
        font-size: 20px;
        font-weight: 400;
        max-width: 800px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }










/* Contact form Styles start here */


section.contact.banner {
    background-image: url('../images/banners/contactus.jpg');
    min-height: 50vh;
    max-height: 600px;
}


    section.contact.banner .page_title {
        width: 230px;
        padding-left: 32px;
    }




.contact_form--wrapper {
}

.contact_form--wrapper .container {
    max-width: 900px;
    /*height: 360px;*/
 }

 .contact_form--wrapper .container > .row {
    position: relative;
    top: -200px;
 }
 fieldset label{ font-size:16px; }

.address_container {
    padding-right: 0;
}

.address {
    max-width: 450px;
    width: 100%;
    height: 100%;
    background-color: #2e328b;
    border-bottom-left-radius: 40px;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

    .address h2 {
        color: #fff;
        /*font-family: 'Roboto';*/
    }

    .address .contact_details {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }


        .address .contact_details h3 {
            line-height: 24px;
        }


            .address .contact_details h3 a {
                color: #fff;
                text-decoration: none;
                font-family: 'Poppins';
                font-weight: 400;
                font-size: 18px;
                display: flex;
                gap: 12px;
                align-items: flex-start;
            }

                .address .contact_details h3 a .fa {
                    position: relative;
                    top: 2px;
                }



.form_container {
    padding-left: 0;
}

.contact_form--wrapper {
    /* padding: 100px 0; */
}

.contact-form {
    padding: 30px 40px;
    background-color: #ffffff;
    border-top-right-radius: 40px;
    max-width: 450px;
}

    .contact-form textarea {
        resize: none;
    }

    .contact-form .form-input,
    .form-text-area {
        background-color: #f0f4f5;
        height: 50px;
        padding-left: 16px;
        /*border-top-right-radius: 20px !important;*/
    }

    .contact-form .form-text-area {
        background-color: #f0f4f5;
        height: auto;
        padding-left: 16px;
    }

    .contact-form .form-control::placeholder {
        color: #aeb4b9;
        font-weight: 500;
        opacity: 1;
    }

    .contact-form .form-control:-ms-input-placeholder {
        color: #aeb4b9;
        font-weight: 500;
    }

    .contact-form .form-control::-ms-input-placeholder {
        color: #aeb4b9;
        font-weight: 500;
    }

    .contact-form .form-control:focus {
        border-color: #f33fb0;
        box-shadow: inset 0 1px 1px rgb(0 0 0 / 7%), 0 0 8px #96c93f;
    }

    .contact-form .title {
        text-align: center;
        font-size: 24px;
        font-weight: 500;
        /*font-family: 'Roboto';*/
    }

    .contact-form .description {
        color: #aeb4b9;
        font-size: 14px;
        text-align: center;
    }

    .contact-form .submit-button-wrapper {
        text-align: center;
    }

        .contact-form .submit-button-wrapper a {
            display: inline-block;
        }

/*.contact-form .submit-button-wrapper input {
  font-weight: 500;


      color: #fff;
    text-transform: uppercase;
    padding: 8px 28px;
    border-radius: 50px;
    border: 0;
    background-image: linear-gradient(to right, #145ca6, #0b8cb6);
    transition: all 150ms ease-in 0ms;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
    min-width: 160px;
    cursor: pointer;
}

.contact-form .submit-button-wrapper input:hover {
  background-color: #d30069;
}*/




/* Contact form Styles end here */





/* Careers Styles start here */

.file {
  visibility: hidden;
  position: absolute;
}
section.careers.banner {
    background-image: url('../images/banners/careers.jpg');
}



    .cr_contact_form--wrapper .container {
        max-width: 1200px;
        height: auto;
    }

        .cr_contact_form--wrapper .container > .row {
            /*position: relative;
    top: -200px;*/
        }

.cr_address_container {
    padding-right: 0;
}

.cr_address {
    max-width: 100%;
    width: 100%;
    height: 100%;
    border-bottom-left-radius: 100px;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    justify-content: center;
}

    .cr_address .contact_details {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

        .cr_address .contact_details h2 {
      
        }

        .cr_address .contact_details h3 {
            color: #222;
            text-decoration: none;
            font-family: 'Poppins';
            font-weight: 400;
            font-size: 18px;
        }

            .cr_address .contact_details h3 a {
                color: #2e328b;
            }

.cr_form_container {
    padding-left: 0;
}


.cr_contact-form {
    padding: 30px 40px 50px;
    background-color: #2e328b;
    border-top-right-radius: 40px;
    max-width: 100%;
    height: 100%;
}

    .cr_contact-form .form-input:nth-of-type(even) {
        border: 4px solid !important;
    }


    .cr_contact-form textarea {
        resize: none;
    }

    .cr_contact-form .form-input,
    .form-text-area {
        background-color: #f0f4f5;
        height: 50px;
        padding-left: 16px;
        /*border-bottom-left-radius: 20px !important;*/
    }

    .cr_contact-form .form-text-area {
        background-color: #f0f4f5;
        height: auto;
        padding-left: 16px;
    }

    .cr_contact-form .form-control::placeholder {
        color: #aeb4b9;
        font-weight: 500;
        opacity: 1;
    }

    .cr_contact-form .form-control:-ms-input-placeholder {
        color: #aeb4b9;
        font-weight: 500;
    }

    .cr_contact-form .form-control::-ms-input-placeholder {
        color: #aeb4b9;
        font-weight: 500;
    }

    .cr_contact-form .form-control:focus {
        border-color: #f33fb0;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.07), 0 0 8px #f33fb0;
    }


.inputs_container .input_container:nth-child(even) > input {
    border-bottom-left-radius: 0 !important;
    /*border-top-right-radius: 20px !important;*/
}

.cr_contact-form .title {
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
}


.cr_contact-form .submit-button-wrapper {
    /*text-align: center;*/
    display: flex;
    justify-content: flex-end;
}

.cr_contact-form .cv-button-wrapper {
    /*text-align: center;*/
    display: flex;
}

.cr_contact-form .cv-button-wrapper a {
    display: inline-block;
    color: #fff;
    border: 2px solid;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'poppins';
    cursor: pointer;
}

.cr_contact-form .cv-button-wrapper a:hover {
    background-image: unset;
    background-color: #9acb3c;
    color: #222;
    border: none;
}

.cr_contact-form .cv-button-wrapper .btn {
    padding: 12px 16px;
}

.cr_contact-form .submit-button-wrapper .btn {
}

/*.cr_contact-form .submit-button-wrapper input {
  font-weight: 500;


      color: #fff;
    text-transform: uppercase;
    padding: 8px 28px;
    border-radius: 50px;
    border: 0;
    background-image: linear-gradient(to right, #145ca6, #0b8cb6);
    transition: all 150ms ease-in 0ms;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
    min-width: 160px;
    cursor: pointer;
}

.contact-form .submit-button-wrapper input:hover {
  background-color: #d30069;
}*/


.cr_contact-form .submit-button-wrapper a:hover {
    background-image: unset;
    background-color: #9acb3c;
    color: #222;
    border: none;
    cursor: pointer;
}



/* Careers Styles end here */





.page-heading h2{ text-align: center;
        margin-bottom: 0px;
        text-transform: uppercase;
        color: #3098bb;
        font-weight: 500;
        font-size: 40px;
        position: relative;
        letter-spacing:2px;
        font-family:GalanoGrotesqueMedium;
}












/* Acquisitions overview Styles starts here */

    .acquisitions_heading .quote {
        font-size: 1.4rem;
        line-height: 1.4;
        text-align: center;
    }

    .acquisitions_heading .author {
        float: right;
        font-size: 1.1rem;
        font-weight: bold;
    }

    .acquisitions_heading .quote-icon {
        margin-bottom: 10px;
    }

    .acquisitions_heading .blockquote hr {
        margin-top: 20px;
    }

    .acquisitions_heading .text {
        font-size: 20px;
        font-weight: 400;
        max-width: 800px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

.different_acquisitions {
    margin-bottom: 80px;
}
.different_acquisitions a:hover{ text-decoration:none; }


    .different_acquisitions .img img {
        max-width: 100%;
        border-radius: 24px;
    }

    .different_acquisitions .row:not(:last-of-type) {
        margin-bottom: 64px;
    }

    .different_acquisitions .row {
        align-items: center;
    }

        .different_acquisitions .row .title {
            text-transform: uppercase;
            color: #3098bb;
            font-weight: 600;
            letter-spacing: 4px;
            font-family: 'GalanoGrotesqueRegular';
        }

        .different_acquisitions .row h3 {
            color: #1a529f;
            font-weight: 100;
            margin: 20px 0px;
            letter-spacing: 1px;
        }

    .different_acquisitions button {
        border: 0;
        padding: 12px 32px;
        border-radius: 100px;
        text-transform: uppercase;
        font-size: 14px;
        background-image: linear-gradient(to right, #145ca6, #0b8cb6);
        color: #fff;
        display: flex;
        align-items: center;
        gap: 16px;
        transition: all 150ms ease-in 0ms;
        font-family: 'Poppins';
        cursor: pointer;
    }

    .different_acquisitions button:hover {
            background-image: unset;
            background-color: #9acb3c;
            color: #222;
    }

/* Acquisitions overview Styles ends here */




/* Development gallery Styles starts here */

.filter_buttons--container {
    padding-top: 24px;
    padding-bottom: 16px;
    position: sticky;
    top: 106px;
    z-index: 1;
    background-color: #fff;
    box-shadow: 0 2px 2px -1px rgb(0 0 0 / 11%);
}

    .filter_buttons--container .filter_buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
        row-gap: 16px;
    }

    .filter_buttons--container .filter_btn {
        border: 0;
        padding: 12px 32px;
        border-radius: 100px;
        text-transform: uppercase;
        font-size: 14px;
        /*background-color: #fff;
        background-color: #222;*/
        background-color: #255ea8;
        color: #222;
        color: #fff;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 16px;
        transition: all 150ms ease-in 0ms;
        /*border: 1px solid;
        border: 1px solid #255ea8;*/
        font-family: 'Poppins', sans-serif;
        text-decoration: none;
    }

    .filter_buttons--container .filter_btn:hover {
        background-image: unset;
            background-color: #9acb3c;
            color: #222;
    }

        .filter_buttons--container .filter_btn.active {
            /*background-color: #255ea8;*/
            background-image: unset;
            background-color: #9acb3c;
            color: #222;
        }

.development_container {
    position: relative;
    margin-bottom: 160px;
}

#eastern_expressway.development_container, #culture_centre.development_container, #upvan_festival.development_container {
    margin-bottom: 120px;
}


.detailed_info {
    display: flex;
    gap: 32px;
    justify-content: space-around;
    margin-bottom: 80px;
}

    .detailed_info .small_details {
        display: flex;
        gap: 48px;
    }

    .detailed_info ul {
        list-style-position: outside;
        line-height: 35px;
    }

        .detailed_info ul li {
            max-width: 1200px;
                list-style: circle;
        }

#eastern_expressway .detailed_info, #culture_centre .detailed_info, #upvan_festival .detailed_info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: flex-start;
    margin-bottom: 80px;
    margin-top: 48px;
}

.detailed_info .detail {
}

    .detailed_info .detail h3 {
        font-family: 'Poppins';
        font-size: 20px;
    }

    .detailed_info .detail span {
        /*font-family: 'Lora';*/
        color: #666;
    }

.detailed_info .detail-1 {
}

.detailed_info .detail-2 {
}

.detailed_info .detail-3 {
}

.slider_container {
    position: relative;
}

.development_gallery {
    height: auto;
    width: 70%;
    position: relative;
    
}
.development_gallery .slick-list{ border-radius:20px; }

.slick-arrow {
    z-index: 1;
}
/*.development_gallery {
    display: grid;
    height: 600px;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 200px;
    grid-gap: 20px;
    grid-auto-flow: row;
    grid-auto-row: 200px;
}*/

.development_gallery .slick-dots li button:before {
    font-size: 36px;
    color: #a3c6f3;
}

.development_gallery .slick-dots li.slick-active button:before {
    font-size: 36px;
    color: #255ea8;
}

.development_slider .slick-dots li button:before {
    font-size: 36px;
    color: #a3c6f3;
}

.development_slider .slick-dots li.slick-active button:before {
    font-size: 36px;
    color: #255ea8;
}

.development_gallery .img {
    width: 100%;
    height: 480px;
}

    .development_gallery .img img {
        width: 100%;
        height: 100%;
        border-radius: 24px;
        /*object-fit: fill;*/
        object-fit: cover;
        position:relative;
    }
    .development_gallery .img img:hover{
            opacity: 0.5;
    }
    .slider_container:hover .add-icon{ display :block; 
    transition:.3s linear; }
    .add-icon{      position: absolute;
    top: 50%;
    left: 35%;
    transform: translate(-50%,-50%);
    background: #00000094;
    color: #fff;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    display: none;
    transition: .3s linear;
    cursor: pointer;
    z-index:-1;
    }


.development_slider {
    display: none;
}


.development_info {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #fff;
    width: calc(30% + 100px);
    padding: 0 12px;
    border-radius: 10px;
    box-shadow: 2px 2px 16px -2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

    .development_info h2 {
        color: #fff;
        text-align: center;
        padding: 12px 24px;
        letter-spacing: 2px;
        background-color: #255EA8;
        margin-right: -12px;
        margin-left: -12px;
        font-size: 28px;
        text-transform: uppercase;
        font-family: GalanoGrotesqueMedium;
    }

    .development_info .information {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding-top: 16px;
        padding-bottom: 24px;
        padding-left: 16px;
        padding-right: 16px;
    }

        .development_info .information .info {
            display: flex;
            justify-content: space-between;
            gap: 24px;
            overflow: hidden;
        }


            .development_info .information .info h3 {
                color: #222;
                    letter-spacing: 1px;
                margin-bottom: 0;
                font-size: 20px;
                font-weight: 600;
                line-height: 29px;
            }

            .development_info .information .info span {
                color: #222;
                /*font-family: Roboto;*/
                font-size: 20px;
                font-weight: 400;
                line-height: 29px;
                text-align: right;
                transform: translateY(100%);
                opacity: 0.5;
                transition: all 250ms 0ms ease-in;
            }




.info_text {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 0;
}


/* Development gallery Styles starts here */





/* Development overview Styles starts here */

    .dvelopment_heading .quote {
        font-size: 1.4rem;
        /* max-width: 400px; */
        line-height: 1.4;
        text-align: center;
    }

    .dvelopment_heading .author {
        float: right;
        font-size: 1.1rem;
        font-weight: bold;
    }

    .dvelopment_heading .quote-icon {
        margin-bottom: 10px;
    }

    .dvelopment_heading .blockquote hr {
        margin-top: 20px;
    }

    .dvelopment_heading .text {
        font-size: 20px;
        font-weight: 400;
        max-width: 800px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

.different_developments {
    margin-bottom: 80px;
}


    .different_developments .img img {
        max-width: 100%;
        border-radius: 24px;
    }

    .different_developments .row:not(:last-of-type) {
        margin-bottom: 64px;
    }

    .different_developments .row {
        align-items: center;
    }

        .different_developments .row h2 {
            color: #1a529f;
            font-size: 32px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: 'GalanoGrotesqueMedium';
        }

    .different_developments button {
        border: 0;
        padding: 12px 32px;
        border-radius: 100px;
        text-transform: uppercase;
        font-size: 14px;
        background-image: linear-gradient(to right, #145ca6, #0b8cb6);
        color: #fff;
        display: flex;
        align-items: center;
        gap: 16px;
        /*font-family: Roboto, sans-serif;*/
        cursor: pointer;
        transition: all 150ms ease-in 0ms;
    }

        .different_developments button:hover {
            background-image: unset;
            background-color: #9acb3c;
            color: #222;
        }

    .different_developments a:hover {
        text-decoration: none;
    }

/* Development overview Styles ends here */


















.about_statistics {
    background-image: linear-gradient(to right, #145ca6, #0b8cb6);
    /*margin-bottom: 90px;*/
}

    .about_statistics .statistics {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

        .about_statistics .statistics .stats {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

            .about_statistics .statistics .stats p {
                color: #fff;
                font-size: 20px;
                margin-bottom: 0;
                font-weight: 600;
                text-align: center;
            }

            .about_statistics .statistics .stats span {
                color: #fff;
                font-size: 64px;
                /*font-family: 'Roboto Condensed', sans-serif;*/
                font-weight: 600;
            }

            .about_statistics .statistics .stats .counter .counter-sup {
                font-size: 45px;
                color: #fff;
            }




/* Insights Styles starts here */

.insights-banner {
    background-image:url('../images/banners/news.jpg')

}

.insights_container .container {

}

.insights_container .row {
    row-gap: 80px;
}

.insights_container .insight {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 24px;
    padding-right: 24px;
    color: #222;
    text-decoration: none;
    transition: all 150ms 0ms ease-in;
}

.insights_container .insight .top_info {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.insights_container .insight .author {
    font-family: 'Poppins';
    font-size: 16px;
    margin-bottom: 0;
}

.insights_container .insight .date {
    position: relative;
    top: -4px;
}

.insights_container .insight .top_info .title {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #464646;
    letter-spacing: 2px;
    font-family: GalanoGrotesqueMedium;
}

.insights_container .sub_heading {
    font-size: 18px;
}

.insights_container .img.arrow {
    margin-top: auto;
}

.insights_container .img.arrow img {
    cursor: pointer;
    transition: all 500ms 0ms ease-in-out;
}

.insights_container .img.arrow img:hover {
    transform: translateX(20px);
}



.news-block:hover h3{ color: #0c72b9; }
.img arrow, .news-block img{ transition:.3s linear; }
.news-block:hover img{ transform: translateX(3px); transition:.3s linear; }
.news-block:hover .img.arrow img{ transform: translateY(-10px); transition:.3s linear; }









/* Insights Styles ends here */


@media only screen and (min-width: 1600px){
    .insights_container .container {
        max-width: 1400px;
        margin: 0 auto;
    }
}




@media only screen and (min-width: 768px) {
    /*.social_icons a.social {
        display: none;
    }*/

    a.social {
        display: none;
    }
}

/*@media only screen and (max-width: 1540px){
    header .logo {
        width: 300px;
    }

    header .logo img {
        width: 100%;
    }

}*/

@media only screen and (min-width: 1600px) {
    section.contact.banner .page_title {
        width: 360px;
        padding-left: 80px;
    }
}

@media only screen and (max-width:1600px) {

    /* Contact banner Media queries */
    /*section.contact.banner .page_title {
    display: none;
    }*/



}

@media only screen and (max-width: 1513px) {
    section.banner {
        margin-top: 148px;
    }
}

@media only screen and (max-width: 1500px) {
    section.banner {
        margin-top: 114px;
    }
}

@media only screen and (max-width: 1399.98px) {
    section.banner {
        margin-top: 105px;
    }

    .lower_footer .social_icons {
        width: 100%;
        justify-content: center;
    }
}


@media only screen and (max-width: 1400px) {

    /*.upper_header .right_part {
        flex-wrap: wrap;
    }

    
.developments-1 {
    display: none !important;
}

.developments-2 {
    display: block !important;
}*/

    .developments .img.outside_top_content {
        display: none;
    }

    .developments .img.inside_top_content {
        display: block;
    }
}

@media only screen and (max-width: 1199.98px) {

    section.banner {
        margin-top: 98px;
    }

    section.contact.banner .page_title {
        /*width: 360px;*/
        width: 230px;
        /*padding-left: 80px;*/
    }

    .contact_form--wrapper {
        padding: 80px 0;
    }

        .contact_form--wrapper .container {
            height: auto;
        }

            .contact_form--wrapper .container > .row {
                position: static;
                top: unset;
            }

    /* Footer Media queries */
    .lower_footer {
        flex-direction: column;
    }

        .lower_footer .left_part {
            width: 100%;
            margin-bottom: 32px;
        }

            .lower_footer .left_part .img img {
                position: relative;
                top: 50%;
                transform: translateY(-50%);
            }

            .lower_footer .left_part p {
                font-size: 18px;
                line-height: 1.3;
            }

    /* Header Media queries */

    header .dynamic_links {
        display: none;
    }

        header .dynamic_links.mobile_version {
            display: block;
        }

    header h1 {
        left: 42%;
        transform: translate(-50%, -50%);
        font-size: 48px;
        top: 54%;
    }

    .upper_header ul li a {
        font-size: 16px;
    }


    /* At karnavat Media  */

    .at_karnavat .upper_part h2 {
        font-size: 36px;
    }

    .brownfield_heading h2 {
        font-size: 36px;
    }

    .greenfield_heading h2 {
        font-size: 36px;
    }

    .at_karnavat .upper_part h3 {
        font-size: 28px;
    }

    .at_karnavat .upper_part p {
        font-size: 16px;
    }

    .at_karnavat .statistics .stats p {
        font-size: 18px;
    }

    .at_karnavat .statistics .stats span {
        font-size: 44px;
    }
    /* Acquisitions Media queries */


    /* Check region Media queries */
        .community .below_upvan {
            font-size: 16px !important;
  }



    /* Region served Media queries */

    .regions_served .left_section .content {
        padding-left: 80px;
    }

        .regions_served .left_section .content h3 {
            font-size: 32px;
        }

    .regions_served .right_section .content {
        width: 360px;
        height: 360px;
    }

    .regions_served .region_slider .img {
        width: 360px;
        height: 360px;
    }

    .regions_served .right_section {
        display: flex;
        justify-content: center;
    }

    /* About us Media queries */

    .about_us.text_content h2 {
        font-size: 34px;
    }

    .acquisitions_heading {
        margin-bottom: 40px;
    }

        .acquisitions_heading h2 {
            margin-bottom: 8px;
        }

    .dvelopment_heading {
        margin-bottom: 40px;
    }

        .dvelopment_heading h2 {
            margin-bottom: 8px;
        }

    /* Development singular Media queries */
 
    .about_statistics .statistics .stats p {
        font-size: 18px;
    }

    .about_statistics .statistics .stats span {
        font-size: 44px;
    }

    .provided_services .container > .row {
        gap: 48px;
    }

    .development_container {
        margin-bottom: 120px;
    }

    .development_info {
        width: calc(45% + 100px);
    }

    #eastern_expressway.development_container, #culture_centre.development_container, #upvan_festival.development_container {
        margin-bottom: 100px;
    }
}



@media only screen and (min-width: 991.98px) and (max-width: 1044px) {
    .greenfield_acquisition .project_type {
        min-height: 96px;
    }
}


@media only screen and (max-width: 1012.98px) {
    /* Header Media queries */
    .upper_header ul li.active a::after {
        content: '';
        position: absolute;
        bottom: -13px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #fff;
    }

    .upper_header ul li a::after {
        content: '';
        position: absolute;
        bottom: 0px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #fff;
    }

    .upper_header ul li a:hover::after {
        content: '';
        position: absolute;
        bottom: -13px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #fff;
    }

    .brownfield_heading h2::before {
        content: none;
    }

    .greenfield_heading h2::before {
        content: none;
    }

    .developments_heading h2::before {
        content: none;
    }
}

@media only screen and (min-width: 991.98px){
    /* Community changes */

    .slider-section {
    /* Community change */
    height: 100%;
    }

    .bg-community {
    /* Community change */
    height: 100%;
    }

    #communityInsights .slick-slider .slick-track, #communityInsights .slick-slider .slick-list {
    /* Community change */
    height: 100%;
    width: 100%;
}

}

@media only screen and (max-width: 991.98px) {


    .enquiry button {
        padding: 4px 16px;
        text-transform: capitalize;
        font-weight: 500;
    }


    .social_icons a {
        width: 32px;
        height: 32px;
    }

    section.banner {
        margin-top: 102px;
    }


    /* Header Media queries */
    div.hamburger {
        display: block;
    }

    .hamburger_menu {
        display: flex;
    }

    .upper_header ul li.active a::after {
        content: '';
        position: absolute;
        bottom: -13px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #fff;
    }

    .upper_header ul li a::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #fff;
    }

    .upper_header ul li a:hover::after {
        content: '';
        position: absolute;
        bottom: -13px;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #fff;
    }

    .upper_header .right_part {
        display: none;
    }

    /* At karnavat Media queries */
    .at_karnavat {
        padding-left: 24px;
        padding-right: 24px;
        padding-bottom: 16px;
    }

        .at_karnavat .statistics .stats {
            margin-bottom: 48px;
        }

    /* Footer Media queries */
    footer .copyright {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 16px;
    }

        footer .copyright p {
            margin-bottom: 0;
            text-align: center;
        }

    .upper_footer {
        width: 95% !important;
    }

        .upper_footer .column_1, .upper_footer .column_2 {
            border-right: 0;
            margin-bottom: 48px;
        }

    .lower_footer .left_part {
        flex-direction: column;
    }

        .lower_footer .left_part .img {
            margin-bottom: 24px;
            padding-right: 0;
            border-right: 0;
        }

            .lower_footer .left_part .img img {
                top: unset;
                left: 50%;
                transform: translateX(-50%);
            }

        .lower_footer .left_part p {
            padding-left: 0;
        }

    /* Check region Media queries */
    .check_region {
        flex-direction: column;
        margin-bottom: 0;
    }

        .check_region .content {
            padding-left: 0;
            padding-left: 24px;
            padding-right: 24px;
            margin-bottom: 48px;
        }

    /* Acquisition Media queries */

    .acquisitions p {
        font-size: 18px;
    }

    .acquisition.acquisition1, .acquisition.acquisition2 {
        flex-direction: column;
    }

    .acquisition .content {
        width: 100%;
        margin-bottom: 48px;
    }


    .acquisition2 .img {
        order: 1;
    }

    .acquisition h3 {
        max-width: unset;
    }

    .acquisition p {
        max-width: unset;
    }

    /* Community Media queries */

    .community {
    }

        .community .img {
            display: none;
        }

        .community .top_content {
            width: 100%;
            padding-left: 0px;
        }

        .community .bottom_content {
            width: 100%;
            margin-bottom: 50px;
        }

    /* Developments Media queries */


    .developments .top_content {
        width: 100%;
    }

    .developments .bottom_content {
        width: 100%;
    }

        .developments .bottom_content h2 {
            text-align: left;
        }

    /* Serving Media queries */

    .serving_sector {
        flex-direction: column;
    }

        .serving_sector .after_hover_content p {
            text-align: center;
        }


    /* Regions served Media queries */

    .regions_served .left_section .content {
        padding-left: 40px;
    }

    /* About us Media queries */

    .about_us {
        padding-top: 80px;
        padding-bottom: 80px;
    }



    .brownfield_heading .quote {
        text-align: center;
    }

    .greenfield_heading .quote {
        text-align: center;
    }



    .developments_heading .quote {
        text-align: center;
    }

    .developments_heading {
        margin-bottom: 56px;
    }




    .different_acquisitions .row {
        align-items: stretch;
    }

        .different_acquisitions .row .img {
            height: 100%;
        }

            .different_acquisitions .row .img img {
                height: 100%;
                object-fit: cover;
            }



    /* Careers Media queries */

    .cr_contact_form--wrapper {
        padding: 64px 0;
    }

        .cr_contact_form--wrapper .container {
            height: auto;
        }

            .cr_contact_form--wrapper .container > .parent_row {
                flex-direction: column;
                position: static;
                top: unset;
            }

    .cr_address_container {
        padding-right: 15px;
    }

    .cr_address {
        border-bottom-left-radius: 0;
        border-top-right-radius: 80px;
    }

    .cr_form_container {
        padding-left: 15px;
        order: 1;
    }

    .cr_address, .cr_contact-form {
        margin: 0 auto;
    }

    .cr_contact-form {
        border-top-right-radius: 0;
        border-bottom-left-radius: 80px;
    }

    /* Development singular Media queries */
    .development_container {
        margin-top: 64px;
        margin-bottom: 140px;
    }

    #eastern_expressway.development_container, #culture_centre.development_container, #upvan_festival.development_container {
        margin-bottom: 100px;
    }

    .development_info h2 {
        font-size: 24px;
    }

    .development_info .information .info h3 {
        font-size: 18px;
    }

    .development_info .information .info span {
        font-size: 18px;
    }

    /*.info_text {
        margin-top: 56px;
        margin-bottom: 56px;
    }*/

    .about_statistics .statistics .stats {
        margin-bottom: 48px;
    }

    a.social img {
        width: 32px;
    }

    /* Insights Media queries starts */

    .insights_container {
    margin-top: 80px;
    margin-bottom: 80px;
    }

    /* Insights Media queries ends */


    
    /* Brownfield lists */
    .field_list li {
    display: block !important;
    gap: unset !important;
}

    .field_list li span {
        min-width: unset !important;
    }
}

@media only screen and (max-width: 767.98px) {

    /* Contact banner Media queries */
    section.contact.banner .page_title {
        display: block;
    }

    /* At karnavat Media queries */
    .at_karnavat .statistics .stats span {
        font-size: 48px;
    }

    .at_karnavat .upper_part h2 {
        font-size: 28px;
    }

    .brownfield_heading h2 {
        font-size: 28px;
    }

    .greenfield_heading h2 {
        font-size: 28px;
    }

    .at_karnavat .upper_part h3 {
        font-size: 30px;
    }

    .at_karnavat .upper_part p {
        font-size: 16px;
    }

    /* Check region Media queries */
    .check_region .content h2 {
        font-size: 28px;
    }

    .check_region .content p {
        font-size: 16px;
    }

    .check_region .content button {
        font-size: 14px;
    }

    /* Acquisitions Media queries */

    .acquisition1 .img, .acquisition2 .img {
        width: 100%;
    }

    /* Regions served Media queries */

    .regions_served {
        padding-top: 64px;
        padding-bottom: 64px;
    }

        .regions_served .left_section .content h3 {
            font-size: 24px;
        }

        .regions_served .left_section .content {
            padding-left: 0;
        }

        .regions_served .left_section {
            margin-bottom: 48px;
        }

        .regions_served::before {
            width: calc(100%);
        }

        .regions_served .left_section .content h2 {
            left: 40px;
        }

    /* Provided services Media queries */

    .provided_services {
        margin-bottom: 80px;
    }

        .provided_services .container .service_container {
            flex-direction: column;
        }

        .provided_services .service_icon {
            width: 240px !important;
            height: 240px !important;
        }

        .provided_services .left_section .service_icon.icon1 {
            border-top-left-radius: 80px;
            border-bottom-right-radius: 80px;
            border-top-right-radius: 0;
            border-bottom-left-radius: 0;
            background-color: #96c940;
        }



    /* Brownfield acquisition Media queries */


    .brownfield_acquisitions {
        padding-top: 80px;
        padding-bottom: 10px;
    }

    .brownfield_acquisition .img {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .brownfield_acquisition .project_type {
        min-height: auto;
    }

    .brownfield_acquisition .main_content, .greenfield_acquisition .main_content {
        max-width: 400px;
        /*margin: 0 auto;*/
    }


    /* Greenfield acquisition Media queries */


    .greenfield_acquisitions {
        padding-top: 80px;
        padding-bottom: 10px;
    }

    .greenfield_acquisition .img {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .greenfield_acquisition .project_type {
        min-height: auto;
    }


    .developments_heading {
        margin-bottom: 40px;
    }


    .about_us.text_content .image_text {
        padding-top: 40px;
        padding-bottom: 40px;
    }

        .about_us.text_content .image_text .image {
            order: -1;
            margin-bottom: 32px;
        }

    .about_us.text_content .img img {
        height: 250px;
    }

    .about_us.text_content h2 {
        font-size: 24px;
    }

    /* Leadership Media queries */


        .leadership .content {
            column-count: 1;
        }

        .leadership .img {
            width: 400px;
            height: 280px;
        }

        .leadership .leader {
            margin-bottom: 96px;
        }




    /* Acquisitions overview Media queries */
    .different_acquisitions {
        margin-bottom: 60px;
    }

        .different_acquisitions .row h2 {
            font-size: 24px;
        }

    .acquisitions_heading h2 {
        font-size: 32px;
    }

    .dvelopment_heading h2 {
        font-size: 32px;
    }

    .acquisitions_heading .quote {
        font-size: 1.1rem;
    }

    .dvelopment_heading .quote {
        font-size: 1.1rem;
    }

    .dvelopment_heading .under_quote {
        font-size: 16px;
        /*font-family: 'roboto';*/
    }

    /* Contact form Media queries */

    .contact_form--wrapper {
        padding: 64px 0;
    }

        .contact_form--wrapper .container {
            height: auto;
        }

            .contact_form--wrapper .container > .row {
                flex-direction: column;
                position: static;
                top: unset;
            }

    .address_container {
        padding-right: 15px;
    }

    .form_container {
        padding-left: 15px;
        order: -1;
    }

    .address, .contact-form {
        margin: 0 auto;
    }

    /* Development singular Media queries */

    .development_gallery {
       width: 100%;
    }
    .development_gallery .img img{ height: 100%; }
    .development_gallery .img{ height:300px; }

    .development_slider {
        display: block;
    }

        .development_slider .slick-slide img {
            height: auto;
            width: 100%;
            border-radius: 16px;
            object-fit: contain;
            box-shadow:none!important;
        }


        .development_slider .slick-prev {
            left: -10px;
            rotate: -90deg;
        }

        .development_slider .slick-next {
            right: -10px;
            rotate: 90deg;
        }


        .development_slider .slick-prev::before {
            content: '\005E';
            font-size: 30px;
        }

        .development_slider .slick-next::before {
            content: '\005E';
            font-size: 30px;
        }

    .development_info {
        position: static;
        transform: unset;
        width: 100%;
        border-radius: 8px;
        margin-top: 48px;
    }

        .development_info h2 {
            border-radius: 8px;
        }

        .development_info .information .info {
            flex-direction: column;
            align-items: center;
            gap: 2px;
        }

            .development_info .information .info span {
                text-align: center;
            }

    .about_statistics .statistics .stats span {
        font-size: 48px;
    }

    /* Development singular Media queries */
    .development_container {
        margin-bottom: 80px;
    }

    .filter_buttons--container {
        /*display: none;*/
    }

        .filter_buttons--container .filter_btn {
            padding: 8px 16px;
            font-size: 14px;
        }

    /*section.enquiry {
        display: none;
    }*/

    .enquiry button {
        padding: 0 8px;
        text-transform: capitalize;
        font-weight: 500;
    }

    .social_icons a {
        width: 32px;
        height: 32px;
        /* flex-shrink: 0; */
    }

    .development_heading {
        font-size: 32px;
    }

    .enquiry {
        column-gap: 3vh;
    }


        .enquiry .social_icons {
            /*width: auto;*/
            /* new */
            /*flex-wrap: nowrap;
        gap: 0;*/
            /*width: 3px;*/
            overflow: hidden;
            transition: all 300ms 50ms ease-in;
        }

    .show_icons {
        width: auto !important;
        transition: all 300ms 500ms ease-in !important;
    }

    .enquiry button {
        padding: 3px 12px;
    }

    /*.enquiry .social_icons a:not(a.social) {
        display: none;
    }*/



    /* Insights Media queries starts */

    .insights_container .row {
        row-gap: 64px;
    }

    /* Insights Media queries ends */


    /* Brownfield lists */
    .field_list li {
    display: flex !important;
    gap: 24px !important;
    margin-bottom: 4px;
}

    .field_list li span {
        min-width: 122px !important;
    }

}



@media only screen and (max-width: 575.98px) {

    /* Form Media queries */
    #my_form {
        max-width: 400px;
        width: 80%;
    }

    #my_form .form-buttons {
        row-gap: 8px;
        justify-content: center;
    }

    /* Footer Media queries */

    .upper_footer ul {
        padding-left: 24px;
        gap: 4px;
    }

        .upper_footer ul li a {
            font-size: 16px;
        }

        .upper_footer ul.quick_links-list li::before {
            left: 0;
        }

        ul.quick_links-list li a {
            margin-left: 18px;
        }


    .lower_footer {
        padding: 14px;
    }

        .lower_footer .left_part p {
            text-align: center;
            font-size: 16px;
        }

        .lower_footer .social_icons {
            justify-content: center;
            width: 100%;
        }

            .lower_footer .social_icons a {
                width: 32px;
                height: 32px;
            }

    footer .copyright p {
        font-size: 14px;
    }

    /* Acquisitions Media queries */
    .acquisitions h2 {
        font-size: 24px;
    }

    .acquisitions p {
        font-size: 18px;
    }

    .acquisition h3 {
        font-size: 24px;
    }

    /* Developments Media queries */
    .developments {
        width: 100%;
    }

    /* Header Media queries */
    header .logo {
        width: 200px;
    }

    header h1 {
        font-size: 38px;
        min-height: unset;
    }

    .dynamic_links.mobile_version {
        margin-left: -14px;
    }

    header .dynamic_links ul {
        padding-left: 0;
    }

        header .dynamic_links ul li a > span {
            font-size: 16px;
        }
        .developments .top_content h2 {
            margin-bottom: 16px;
        }

        .developments .top_content h3 {
            margin-bottom: 12px;
        }

        .developments .top_content h2::before {
            content: none;
        }

    /* Region served Media queries */

    .regions_served .right_section .content {
        width: 280px;
        height: 280px;
    }

    .regions_served .right_section .img {
        width: 280px;
        height: 280px;
    }

    .regions_served .region_slider .img h3 {
        padding: 8px 16px;
        font-size: 24px;
    }

    .regions_served {
        margin-top: 40px;
        margin-bottom: 40px;
    }

        .regions_served::before {
            border-bottom-right-radius: 0;
        }

    /* About us Media queries */

    .about_statistics {
        margin-bottom: 80px;
    }

    .about_us {
        padding-top: 80px;
        padding-bottom: 20px;
    }

        .about_us.text_content h2 {
            font-size: 24px;
        }

        .about_us .heading {
            padding: 0;
        }



        /* About us Collage Media queries */

        .about_us.text_content .image .images {
            width: 100%;
            height: 560px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(8, 1fr);
            grid-gap: 8px;
            grid-auto-flow: row;
            grid-auto-rows: 150px;
        }

        .about_us.text_content .image .images .img1 {
            grid-area: 1 / 1 / 3 / 3;
        }

        .about_us.text_content .image .images .img2 {
            grid-area: 1 / 3 / 3 / 5;
        }

        .about_us.text_content .image .images .img3 {
            grid-area: 3 / 1 / 5 / 3;
        }

        .about_us.text_content .image .images .img4 {
            grid-area: 3 / 3 / 5 / 5;
        }

        .about_us.text_content .image .images .img5 {
            grid-area: 5 / 1 / 7 / 3;
        }

        .about_us.text_content .image .images .img6 {
            grid-area: 5 / 3 / 7 / 5;
        }

        .about_us.text_content .image .images .img7 {
            grid-area: 7 / 1 / 9 / 5;
        }

    /* Provided services Media queries */

    .provided_services {
        margin-bottom: 50px;
    }

        .provided_services .service_icon {
            width: 160px !important;
            height: 160px !important;
            margin-left: auto;
            margin-right: auto;
            border-top-left-radius: 40px !important;
            border-bottom-right-radius: 40px !important;
        }

        .provided_services h2 {
            font-size: 20px;
            width: 160px;
        }



    /* Brownfield acquisition Media queries */


    .brownfield_acquisitions {
        padding-top: 56px;
        padding-bottom: 0;
    }

    .brownfield_acquisition {
        padding-right: 0;
        padding-left: 0;
    }

        .brownfield_acquisition .img {
            max-width: 440px;
            height: 312px;
        }

        .brownfield_acquisition .main_content, .greenfield_acquisition .main_content {
            /*top: unset;
        left: unset;*/
        }

        .brownfield_acquisition .project_type {
            text-align: center;
        }

        .brownfield_acquisition .project_status, .greenfield_acquisition .project_status {
            text-align: center;
        }

        .brownfield_acquisition .main_content, .greenfield_acquisition .main_content {
            padding: 32px 8px;
            width: 100%;
        }

    /* Greenfield acquisition Media queries */


    .greenfield_acquisitions {
        padding-top: 56px;
        padding-bottom: 0;
    }

    .greenfield_acquisition .img {
        max-width: 320px;
        height: 240px;
    }

    .brownfield_heading .text {
        font-size: 16px;
    }

    .greenfield_heading .text {
        font-size: 16px;
    }


    .developments_heading .text {
        font-size: 16px;
    }

    .developments_gallery .development {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 100px;
        grid-gap: 20px;
        grid-auto-flow: row;
        grid-auto-rows: 100px;
    }

    .development_filter .butn {
        border: 0;
        padding: 4px 8px;
        font-size: 14px;
    }

        .development_filter .butn.active {
            border: 0;
            padding: 6px 12px;
            font-size: 14px;
        }

    .development_filter .filters {
        justify-content: flex-start;
        gap: 8px;
    }

    .banner .page_title {
        width: 280px;
    }

    /* Leadership Media queries */
    .leadership .meta .top {
        margin-bottom: 16px;
    }

    .leadership .leader {
        margin-bottom: 80px;
    }

    .leadership .content {
        font-size: 16px;
    }

    .leadership .name {
        font-size: 24px;
        transform: translateY(0%);
    }

    .leadership .title .role {
        font-size: 18px;
    }

    .leadership .img {
        width: 280px;
        height: 240px;
    }

    div.hamburger {
        padding-right: 16px;
    }

    /* Acquisitions overview Media queries */
    .different_acquisitions {
        margin-bottom: 48px;
    }

    .acquisitions_heading {
        margin-bottom: 0;
        width: 90%;
    }

    .dvelopment_heading {
        margin-bottom: 0;
        width: 90%;
    }


    .dvelopment_heading .blockquote {
        padding: 20px 0;
    }

    .acquisitions_heading h2 {
        font-size: 24px;
    }

    .dvelopment_heading h2 {
        font-size: 24px;
    }

    /* Contact form Media queries */
    .address .contact_details h3 a {
        font-size: 16px;
    }

    /* Careers Media queries */
    .cr_address .contact_details h3 a {
        font-size: 16px;
    }

    .inputs_container .input_container {
        padding: 0;
    }

        .inputs_container .input_container > input {
            border-bottom-left-radius: 0 !important;
            border-top-right-radius: 20px !important;
        }

    .buttons_container {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .cr_contact-form .submit-button-wrapper {
        justify-content: center;
    }

    .cr_contact-form .cv-button-wrapper {
        justify-content: center;
    }

        .cr_contact-form .cv-button-wrapper a {
            text-align: center;
        }

    .cr_address {
        padding: 30px 0;
    }

        .cr_address .contact_details h2 {
            font-size: 24px;
        }

        .cr_address .contact_details h3 {
            font-size: 16px;
        }

    /* Development singular Media queries */
    .development_container {
        margin-top: 48px;
        margin-bottom: 28px;
    }

    #eastern_expressway.development_container, #culture_centre.development_container, #upvan_festival.development_container {
        margin-bottom: 80px;
    }

    .info_text {
        font-size: 16px;
        /*padding: 0 24px;*/
        padding: 0;
    }



    .about_statistics .statistics {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

        .about_statistics .statistics .stats {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

            .about_statistics .statistics .stats p {
                color: #fff;
                font-size: 20px;
                margin-bottom: 0;
                font-weight: 600;
            }

            .about_statistics .statistics .stats span {
                color: #fff;
                font-size: 64px;
                /*font-family: 'Roboto Condensed', sans-serif;*/
                font-weight: 600;
            }


            .about_statistics .statistics .stats .counter .counter-sup {
                font-size: 45px;
                color: #fff;
            }

    /* Development singular Media queries */
    .development_container {
        margin-bottom: 80px;
    }

    .filter_buttons--container .filter_buttons {
        row-gap: 8px;
    }

    .filter_buttons--container .filter_btn {
        padding: 6px 12px;
    }

    .detailed_info {
        flex-wrap: wrap;
    }

    .development_heading {
        font-size: 28px;
    }

    .development_info h2 {
        font-size: 20px;
    }

    .detailed_info ul {
        padding-left: 10px;
    }

    /* Insights Media queries starts here */

    .insights_container {
    margin-top: 56px;
    margin-bottom: 56px;
    }

    .insights_container .row {
        row-gap: 48px;
    }

    .insights_container .insight {
        gap: 16px;
    }

    /* Insights Media queries ends here */

    /* Brownfield lists */
    .field_list li {
    display: block !important;
    gap: unset !important;
    margin-bottom: 8px;
}

    .field_list li span {
        min-width: unset !important;
    }

}




.logo-offscroll {
    width: 310px !important;
}

.logo-onscroll {
    display: none;
    width: 250px !important;
    transition: .3s linear;
}

.logo-innerpage {
    width: 250px !important;
    transition: .3s linear;
}

#inner_header ul > li > a {
    color: #333;
}

#inner_header ul > li .subMenu li a {
    color: #fff;
}


.lg-download{ display:none; }


.parsley-errors-list{ margin: -13px 0 19px;
    font-weight: 600;
    font-family: 'Poppins'; }












.content_lb {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px;
}


.gallery_lb {
    position: relative;
    display: block;
    /*max-width: 500px;
  max-height: 300px;*/
    margin: auto;
    border-radius: 4px;
    overflow: hidden;
}

.slick-list {
    overflow: hidden;
}

.slick-slide {
    outline: none !important;
}

.gallery-arrow_lb {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 14px;
    font-family: Helvetica, sans-serif;
    line-height: 40px;
    text-align: center;
    background-color: #E6E6E6;
    z-index: 10;
    cursor: pointer;
    transition: background .3s ease;
}

    .gallery-arrow_lb:hover {
        background: #D0DFE6;
    }

    .gallery-arrow_lb.mod-prev {
        left: 0;
        border-radius: 0 4px 4px 0;
    }

    .gallery-arrow_lb.mod-next {
        right: 0;
        border-radius: 4px 0 0 4px;
    }


.gallery-item_lb {
    position: relative;
    float: left;
    vertical-align: middle;
    text-align: center;
}

.gallery-img-holder_lb {
    display: inline-block;
    width: auto;
    height: auto;
    max-width: 500px;
    max-height: 500px;
}

.gallery-img_lb {
    width: 100%;
    height: 100%;
}

.slick-lightbox .slick-arrow {
    z-index: 10;
}

/*privacy-policy*/
h2.policy-text {
    text-align: left !important;
}

.policy-inner p {
    text-align: justify;
}

.policy-inner {
    margin-bottom: 30px;
}

.privacy.banner {
    background-image: url(../images/banners/privacy-policy.jpg);
}

.policy-inner a {
    color: #1c98ba;
}





.lg-actions .lg-prev {
    left: 90px;
}
.lg-actions .lg-next {
    right: 90px;
}
.social-share-m {
    display: none;
}
.js-btn-open{    position: fixed;
    right: 25px;
    background: #1254a1;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center; }


    .share-m {
        position: fixed;
        top: 45%;
        right: 12px;
        z-index: 1;
    }

        .share-m .btn:hover {
            transform: rotate(360deg);
        }

            .share-m .btn:hover i {
                color: #3498db;
            }

        .share-m .btn i {
            cursor: pointer;
            color: #fff;
        }

        .share-m .social-share-m.open ul li {
            opacity: 1;
        }

        .share-m .social-share ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .share-m .social-share-m ul li {
             border-radius: 50%;
    background: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    /* color: #fff; */
    cursor: pointer;
    margin: 18px 0px;
    border: 1px solid #999;
        }

 .share-m .social-share-m ul li:hover {
     -webkit-box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.5);
     -moz-box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.5);
     box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.5);
       }

 .share-m .social-share-m ul li i {
    color: #000!important;
    font-size: 16px;
      }

    .social-open-menu {
        background: linear-gradient(to right, #145ea7 0%, #1074ae 51%, #0c8bb6 100%);
        color: #fff;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        margin: 5px 0px;
        box-shadow: 0px 7px 7px rgb(0 0 0 / 23%);
        border-radius: 50%;
    }
    .social-share-m ul li a span {
        width: 160px;
        height: 38px;
        line-height: 38px;
        float: right;
        text-align: center;
        background: #3478c2;
        color: #fff;
        margin: -40px 74px;
        transform-origin: 0;
        visibility: hidden;
        opacity: 0;
        transform: rotateX(45deg);
        border-radius: 5px;
        transition: all .5s ease .300ms;
    }

    .social-share-m ul li span:after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        right: -20px;
        top: 7px;
        border-right: 10px solid transparent;
        border-left: 10px solid #3478c2;
        border-bottom: 10px solid transparent;
        border-top: 10px solid transparent;
    }

    .social-share-m ul li a:hover span {
        visibility: visible;
        opacity: 1;
        transform: rotateY(0);
        font-size: 0.9rem;
    }



 .acquisition .form-control{ 
     border-radius:0px;
     height:45px;
     font-family: 'Poppins';
 }
 .acquisition-heading,  .acquisition p { font-family: 'Poppins'; }
 .acquisition-heading h3{     margin-bottom: 0;
    color: #1254a1;  letter-spacing: 2px;     font-family: GalanoGrotesqueMedium;
    text-transform: uppercase;
    font-weight: 500; }
 .acquisition-box {      background: #1152a1;
    color: #fff;
    font-family: 'Poppins';
    justify-content: space-around;
    align-items: center;
    border-radius: 24px; text-align:center; padding: 12px 0px; 
    position: relative;
    margin-top:20px;
    margin-bottom: -30px;
 }
     
  .acquisition-box h1{ font-size: 1.5rem; font-weight: 100; margin:0; }
  .acquisition-box h2{ font-weight:700; font-size:2.5rem; margin:0; }
  .acquisition-box h4{      font-weight: 100;
    font-size: 1rem;
    margin-top: 10px;
    line-height: 22px;
    padding: 0px 5px; }
  .acquisition-box img{ width: 45px;}
  .acquisition-box span{ font-size: 14px; }
  .img-map{ 
    max-height: 600px;
    width: 100%;
    object-fit: cover;
  }
  .border-line{ border-left: 1px solid #eeeeee61; }
  .greenfield_list p{ border:none!important; margin-bottom:0px; text-align:left!important; }




 /*boutique developments*/

 .item-slick.slick-slide.slick-current.slick-active {
	outline: none!important  
}

.slider-for {
  margin-bottom: 5px;
}

.slider-for img {
  width: 100%;
  min-height: 100%; 
}

.slider-nav {
  margin: auto;
}
.slider-nav img{
    width: 150px;
    height: 150px;
    object-fit: cover;
}
.slider-nav .slick-slide{ border: 5px solid #fff; }
.slider-nav .slick-current{ border: 5px solid rgb(146, 186, 50); }

.slider-nav .item-slick {
  max-width: 240px;
  margin-right: 15px;
  outline: none!important;
  cursor: pointer;
}

.slider-nav .item-slick img {
  max-width: 100%;
  background-size: cover;
  background-position: center; 
}


 .bannerSlider{  height:100%;
    width:100%;
    background-size:cover;    background-position: center; }
 .boutique_developments h1{ text-transform: uppercase; font-family: 'GalanoGrotesqueMedium';
    margin-bottom: 25px;     letter-spacing: 5px; }
 .projects_gallery h5{ letter-spacing: 2px;
    color: #145fa7; margin-top :50px; margin-bottom:30px; }
 .boutique_developments h5{ letter-spacing:1px;}
 .amenities { background:#3ba2c3; width: 115%; }
 .developmentSlider .slick-slide{ justify-content: center; /*height: 60vh;*/ }
 .developmentSlider .slick-slide img{ width:100%; }
 .amenitiesSlider .slick-slide{ padding:18px; }
.boutique_developments{ border-bottom: 2px dashed:#999; }
.boutique_developments h5{     font-weight: 600;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 2px;}
.development-desc{     height: 300px;
    overflow-y: scroll;
    padding-right: 30px;    margin-right: 100px; }
.boutique_developments .slick-arrow{ color:#fff;
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    /*font-size:2rem;*/
}
.img-boutique{
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    z-index: -1;
    position: relative;
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

.boutique_developments .slick-list{
    width: 100%;
    margin: 0 auto;
} 
   

.boutique_developments .slick-slide img{    margin: 0 auto; }
.slider-for .slick-slide img{width:100%; height: 450px;
    object-fit: cover; }
.boutique_developments .slick-slide p{ text-align: center; color:#fff;    margin-bottom: 0px;
    line-height: 20px; margin-top: 15px; font-size: 16px;
 }
#amenitiesSlider .item-amenities img{ height:44px; }
.developmentSlider .slick-list { width:100%; }
.developmentSlider .slick-list .slick-slide a img {
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}
/*.developmentSlider .slick-list, .developmentSlider .slick-track{ height:100%; }*/
.slider-nav .slick-arrow, .slider-for .slick-arrow{    z-index: 1;
    background: #1254a1;
    opacity: 1!important;
    width: 35px;
    height: 50px;
    font-size: 0rem;
    line-height: 16px; }

.slider-nav .slick-prev:before, .slider-nav .slick-next:before{  color: #fff!important; }

.slider-nav .slick-prev{ left: 5%!important; }
.slider-nav .slick-next{ right: 5%!important; }

.highlights h5{ font-size: 1.1rem;
    letter-spacing: 1px; }
.highlights ul{ font-size: 16px;     list-style: circle;
    line-height: 30px; }

.field_list img{  width: 65px; padding: 5px; display: block;  margin: 0 auto; }
.field_list p{ border-top: 1px solid #3c71b25e; text-align:center;  padding: 5px; display: inline-block; font-size: 16px; }
.greenfield_list img{  margin: 0; }




.field_list li {
    /*font-family: "Lora";*/
    display: flex;
    gap: 24px;
}

.field_list li span {
    min-width: 124px;
}


.greenfield_banner {
    background-image:url('../images/banners/greenfield_header.jpg') !important;
}

.boutique_developments .block {
    padding-bottom: 0;
}

.boutique_developments.last .block {
    padding-bottom: 7rem;
}

.go_to_top {
    width: 40px;
    height: 40px;
    background-color: #1451a1;

    position: fixed;
    right: 24px;
    cursor: pointer;
    z-index: 1000;

    display: flex;
    justify-content: center;
    align-items: center;
}

.acquisition_enquiry a{ text-decoration:none;     border-bottom: 1px solid;
    color: #1c98ba;}
.acquisition_enquiry a:hover{  border-bottom: 2px dotted; }
#accordion .card{ border: none; }
#accordion .card-header{     background: transparent;
    border-top: 1px solid #ddd;     border-bottom: none; border-radius:0px;   }

#accordion .card-header{ position:relative;}
#accordion .card-header a{  width: 100%;
  display: block; font-weight: 600; color: #000;    text-transform: uppercase;
    letter-spacing: 2px; }
#accordion .card-header a:hover{ text-decoration:none; }
#accordion .card-header span{ position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%); color: #3ba2c3; }
#accordion .card-header h5 a .removeIcon { display:block; }
#accordion .card-header h5 a .addIcon { display:none; }

#accordion .card-header h5 a.collapsed .removeIcon { display:none; }
#accordion .card-header h5 a.collapsed .addIcon { display:block; }

#accordion.card-header, #accordion .card-body{ transition: .3s linear;}
#accordion .card-body{ padding:0px 20px; }
.small_details ul{ line-height: 35px; }


.expertise-block{ position:relative; }
.expertise-icon{     background: #ddd;
    text-align: center;
    border-radius: 10px; }
.expertise-block .icon-arrow{     position: absolute;
    }
.expertise-block h4{     text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #555;     width: 87%;}



     /*brownfield*/
   .brownfieldMap .tab-menu {
        background: #1254a1;
    }
    .brownfieldMap .tab-menu .pin {
        background-repeat: no-repeat;
         background-size: 40px;
    }
    .brownfieldMap .tab-menu .active-a .pin,
    .brownfieldMap .tab-menu .active-a1 .pin {
        background: #de1f12;
        background-repeat: no-repeat;
        background-size: 40px;
    }

    /*greenfield*/
.bg-greenfieldMap {
        background-image: url('../images/greenfield_map.png');
        position: relative;
        height: 380px;
        background-size: cover;
        background-position: top;
}
.expertise .icon{     background: #ebebeb;
    padding: 40px;
    height: 200px;
    width: 200px;
    text-align: center; margin: 0 auto; }
.expertise .icon img { width: 60px; }


    /*.brownfieldMap .tab-menu .tab-a:nth-child(1) .pin {
        background-image: url("../images/acquisitions_icons/mobile/residential_housing_white.png");
    }

    .brownfieldMap .tab-menu .tab-a:nth-child(2) .pin {
        background-image: url("../images/acquisitions_icons/mobile/warehouse_icon_white.png");
    }

    .brownfieldMap .tab-menu .tab-a:nth-child(3) .pin {
        background-image: url("../images/acquisitions_icons/mobile/residential_housing_white.png");
    }

    .brownfieldMap .tab-menu .tab-a:nth-child(4) .pin {
        background-image: url("../images/acquisitions_icons/mobile/Commercial_icon_white.png");
    }

    .brownfieldMap .tab-menu .tab-a1:nth-child(1) .pin {
        background-image: url("../images/acquisitions_icons/white/Affordable_Residential.png");
    }

    .brownfieldMap .tab-menu .tab-a1:nth-child(2) .pin {
        background-image: url("../images/acquisitions_icons/white/Commercial%20Project.png");
    }*/ 


    .brownfieldMap .tab-menu .tab-a:nth-child(1) .pin {
        background-image: url("../images/acquisitions_icons/white/Warehousing_Cluster.png");
    }
    .brownfieldMap .tab-menu .tab-a:nth-child(2) .pin {
        background-image: url("../images/acquisitions/Warehousing.png");
    }
    .brownfieldMap .tab-menu .tab-a:nth-child(3) .pin {
        background-image: url("../images/acquisitions/Affordable_Residential.png");
    }
    .brownfieldMap .tab-menu .tab-a:nth-child(4) .pin {
        background-image: url("../images/acquisitions/Commercial%20Project.png");
    }


    .brownfieldMap .tab-menu .tab-a1:nth-child(1) .pin {
        background-image: url("../images/acquisitions/Affordable_Residential.png");
    }

    .brownfieldMap .tab-menu .tab-a1:nth-child(2) .pin {
        background-image: url("../images/acquisitions/Commercial%20Project.png");
    }

.tab{
	display: none;
}
.tab p{
	color: rgba(0,0,0,0.6);
}
.tab-active{
	display: block;
}
.map-marker{ position:relative; }



 .tab-field {
           margin: 30px 0px 20px;
    border-top: 1px solid #ddd;
    justify-content: space-around;
    }
 .tab-field li {
            list-style: none;
            display: inline-flex;
                text-align: center;
                   margin: 0px 25px;
        }

 .tab-field li a {
                color: #222;
                padding: 10px 10px;
                    text-transform: uppercase;
                    text-align:center;
    letter-spacing: 1px;
            }
 .tab-field li a:hover{ text-decoration:none; }
 .tab-field li a.active {
                color: #1254a1;
                font-weight: 600;
            }
 .tab-field li .active {
            border-top: 3px solid;
        }




.tab-menu {
        background: #1254a1;
    }
 .tab-menu .pin {
            background-repeat: no-repeat;
            background-size: 40px;
        }
.tab-menu .active-a .pin {
            background: #de1f12;
            background-repeat: no-repeat;
            background-size: 40px;
        }
.pin {
        width: 48px;
        height: 48px;
        background: #1254a1;
        border-radius: 10px !important;
        background-position: center !important;
        position: absolute;
        transform: rotate(0deg) !important;
        left: 50%;
        top: 50%;
        margin: -20px 0 0 -20px;
        animation-name: bounce;
        animation-fill-mode: both;
        animation-duration: 1s;
    }


.acquisitionSlider .slick-list{ width: 83%; }

    .greenfield_map .tab-menu .tab-a:nth-child(1) .pin {
        background-image: url("../images/acquisitions_icons/white/second-home-gated-white.png");
    }
    .greenfield_map .tab-menu .tab-a:nth-child(2) .pin {
        background-image: url("../images/acquisitions_icons/white/Warehousing.png");
    }

    .greenfield_map .tab-menu .tab-a:nth-child(3) .pin {
        background-image: url("../images/acquisitions_icons/white/second_home.png");
    }

    .greenfield_map .tab-menu .tab-a:nth-child(4) .pin {
        background-image: url("../images/acquisitions_icons/white/Warehousing.png");
    }
    .greenfield_map .tab-menu .tab-a:nth-child(5) .pin {
        background-image: url("../images/acquisitions_icons/white/second_home.png");
    }
    .greenfield_map .tab-menu .tab-a:nth-child(6) .pin {
        background-image: url("../images/acquisitions_icons/white/wellness_resort.png");
    }


    .greenfield_map .tab-menu a {
        position: absolute;
        transform: translate(-50%, -50%);
    }

    .greenfield_map .tab-menu a:nth-child(1) {
            top: 7%;
            left: 44%;
        }

    .greenfield_map .tab-menu a:nth-child(2) {
            top: 12%;
            left: 50%;
        }

    .greenfield_map .tab-menu a:nth-child(3) {
            top: 20%;
            left: 38%;
        }

    .greenfield_map .tab-menu a:nth-child(4) {
            top: 25%;
            left: 43.5%;
        }

    .greenfield_map .tab-menu a:nth-child(5) {
            top: 50%;
            left: 42%;
        }

    .greenfield_map .tab-menu a:nth-child(6) {
            top: 29%;
            left: 83%;
        }







  /*Pune map*/
.brownfieldPuneMap .tab-menu a:nth-child(1) {
        position: absolute;
        top: 30%;
        left: 18%;
    }

    .brownfieldPuneMap .tab-menu a:nth-child(2) {
        position: absolute;
        top: 61%;
        left: 46%;
        transform: translate(-50%, -50%);
    }


.medium-logo img{ width:20px; }
.medium-logo .medium2{ display:none; } 
.medium-logo:hover .medium1{ display: none; }
.medium-logo:hover .medium2{ display: block; }






