* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

@font-face {
    font-family: 'graphik';
    src: url("../font/Graphik\ Family/");
    font-weight: normal;
    font-style: normal;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

:root {
    --text-white: #ffffff;
    --text-gray: #444444;
    --text-blue: #212E50;
    --text-dark-blue: #1F3F71;
    --text-yellow: #FFD16F;
    --text-btn: #3363A8;
    --bg-button: #3363A8;
    --bg-linen: #F3EEE8;
    --bg-white: #ffffff;
    --bg-yellow: #FFD16F;
    --bg-blue: #3363A8;
    --bg-dark-blue: #1F3F71;
}

.bg_linen {
    background-color: var(--bg-linen);
}

.bg_white {
    background-color: var(--bg-white);
}

.bg_dark_blue {
    background-color: var(--bg-dark-blue);
}

.bg_yellow {
    background-color: var(--bg-yellow);
}

.box_radius {
    border-radius: 15px;
}

/*Topbar Start*/
.topbar {
    background-color: var(--bg-blue);
    padding: 15.5px 0;
}

.topbar ul {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.topbar ul li a img {
    width: 16px;
    margin-right: 8px;
    padding-bottom: 3px;
}

.topbar ul li a {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 400;
}

.topbar ul li a:hover {
    color: var(--text-yellow);
}

.topbar ul li a:hover img {
    filter: brightness(0) saturate(100%) invert(90%) sepia(44%) saturate(3350%) hue-rotate(308deg) brightness(106%) contrast(107%);
}

.google_translate {
    position: relative;
    display: inline-block;
}

.google_translate .dropdown-toggle {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 400;
}

.google_translate .dropdown-toggle:hover {
    color: var(--text-yellow);
}

.google_translate .dropdown-menu {
    min-width: 150px;
    padding-top: 13px;
    background-color: var(--bg-blue);
    max-height: 235px;
    overflow-y: scroll;
    display: block;
    position: absolute;
    right: 0px;
    transform: translate3d(0px, 39px, 0px) !important;
    visibility: hidden;
    border-radius: 0;
    border: none;
    opacity: 0;
}

.google_translate .dropdown-menu.show {
    visibility: visible;
    opacity: 1;
}

.google_translate .dropdown-menu::before {
    padding-top: 0;
}

.google_translate .dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: var(--text-white);
}

#goog-gt-tt,
.goog-te-banner-frame,
.goog-text-highlight,
#google_translate_element2 {
    display: none !important;
}

button#dropdownLanguageButton {
    background: transparent;
    border: none;
}

button#dropdownLanguageButton [aria-expanded="true"] {
    background: transparent;
    border: none;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

button#dropdownLanguageButton [aria-expanded="false"] {
    background: transparent;
    border: none;
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}


button#dropdownLanguageButton:focus-visible {
    outline: none;
}

.topbar ul.dropdown-menu li a:hover {
    color: var(--text-yellow);
}

.google_translate ul.dropdown-menu li a::before {
    display: none;
}

/*Topbar End*/
/*Header Start*/
nav.navbar.navbar-expand-xl {
    background-color: var(--bg-white);
    padding: 0;
    z-index: 4;
    position: relative;
}

nav .navbar_brand img {
    width: 100%;
    max-height: 131px;
    height: 100%;
    background-color: #ffffff;
    padding: 8px;
    border-radius: 7px;
    margin-top: -45px;
}

nav a.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-gray);
    line-height: 1.2;
    transition: all 0.5s ease;
    padding-right: 0 !important;
}

nav a.nav-link:hover {
    color: var(--bg-button);
}

.navbar li.nav-item.dropdown {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: all 0.4s ease;
}

.navbar button.dropdown-toggle {
    position: relative;
    height: 8px;
    width: 16px;
    border: none;
    background: none;
    transition: all 0.4s ease;
}

.navbar button.dropdown-toggle::after {
    position: absolute;
    content: "";
    width: 8px;
    height: 10px;
    top: 0;
    right: 0;
    border: none;
    background-size: 8px;
    background-image: url(../images/right-chavrone-blue.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.5s ease;
    transform: rotate(90deg);
}

li.nav-item.dropdown:hover button.dropdown-toggle::after {
    transform: rotate(-90deg);
}

li.nav-item.dropdown:hover button.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(-90deg);
}

li.nav-item.dropdown:hover button.dropdown-toggle[aria-expanded="false"]::after {
    transform: rotate(90deg);
}

li.nav-item {
    margin: 36.5px 15px 36.5px 15px;
}

li.nav-item.dropdown ul.dropdown-menu::before {
    position: absolute;
    content: "";
    top: 50px;
    left: 0;
    z-index: -1;
    background: var(--bg-button);
    width: 100%;
    height: 100%;
}

ul.dropdown-menu li a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.2;
    padding: 14px 22px 14px;
    position: relative;
    transition: all 0.3s ease;
    text-transform: capitalize;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
}

ul.dropdown-menu li:last-child a {
    border-bottom: 1px solid transparent;
}

ul.dropdown-menu li a::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 40%;
    left: -10px;
    background-size: 10px;
    background-image: url(../images/right-chavrone-blue.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

ul.dropdown-menu li a.dropdown-item:hover::before {
    left: 6px;
}

.nav-item.dropdown .dropdown-menu {
    border: none;
    left: 0;
    top: 21.5px;
    max-width: fit-content;
    min-width: 200px;
    border: unset;
    background: transparent;
    border-width: 0px 1px 1px 1px;
    border-radius: 0;
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
    transition: all 0.5s ease-in-out;
    transform-origin: top;
    overflow: hidden;
    display: block;
    opacity: 0;
    visibility: hidden;
    padding: 50px 0 0;
    z-index: 1;
    margin-top: 0;
}

.nav-item.dropdown:hover .dropdown-menu {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1;
    visibility: visible;
}

ul.dropdown-menu li a.dropdown-item:hover {
    color: var(--bg-button);
    background: var(--text-yellow);
}

.book_free_visit {
    width: 143px;
    height: 138px;
    background: var(--bg-yellow);
    position: absolute;
    top: 62px;
    right: 5%;
    z-index: 2;
}

.car_box {
    width: 100%;
    height: 61%;
    background-color: var(--bg-dark-blue);
    border-bottom-left-radius: 70px;
    border-bottom-right-radius: 70px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.car_box img {
    max-width: 57px;
    filter: brightness(0) saturate(100%) invert(90%) sepia(44%) saturate(3350%) hue-rotate(308deg) brightness(106%) contrast(107%);
}

.car_text_box {
    display: flex;
    align-items: flex-end;
    height: 39%;
}

.book_free_visit .car_text_box p {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark-blue);
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    padding: 0 22px 10px;
    line-height: 1;
}

.book_free_visit span {
    width: 2px;
    height: 68px;
    background: var(--bg-yellow);
    margin-top: -62px;
    position: absolute;
    left: 50%;
}

.book_free_visit span::after {
    position: absolute;
    content: "";
    bottom: -5px;
    left: -2.8px;
    width: 8px;
    height: 8px;
    border: 0.18rem solid var(--bg-yellow);
    border-radius: 50%;
}

/*Header End*/
/*btn_light Start*/
.nav_inquiry_btn {
    margin-left: 20px;
}

.btn_light {
    border: 2px solid #707070;
    background-color: var(--bg-white);
    padding: 13px 17.5px;
    position: relative;
    display: inline-block;
}

.btn_light:hover {
    border: 2px solid var(--bg-yellow);
}

.btn_light:before {
    --progress: 100%;
    background: var(--text-yellow);
    clip-path: polygon(100% 0, var(--progress) var(--progress), 0 100%, 100% 100%);
    content: "";
    inset: 0;
    position: absolute;
    transition: clip-path 0.2s ease;
}

.btn_light:hover:before {
    --progress: 0%;
}

.btn_light .btn_light_container {
    display: block;
    overflow: hidden;
    position: relative;
}

.btn_light .btn_light_text {
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    position: relative;
    color: var(--text-gray);
}

.btn_light:hover .btn_light_text {
    animation: move-up-alternate 0.3s ease forwards;
    color: var(--text-btn);
}

@-webkit-keyframes move-up-alternate {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(80%);
    }

    51% {
        transform: translateY(-80%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes move-up-alternate {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(80%);
    }

    51% {
        transform: translateY(-80%);
    }

    to {
        transform: translateY(0);
    }
}

/*btn_light End*/
/*Hero Carousel Start*/
.hero_carousel {
    width: 100%;
    overflow: hidden;
}

.carousel-caption {
    text-align: left;
    top: 25%;
    left: 15%;
    z-index: 1;
}

.carousel-item .carousel_image {
    height: 850px;
    width: 100%;
    object-fit: cover;
}

.carousel-caption h2 {
    font-family: "Inter Tight", sans-serif;
    font-size: 85px;
    line-height: 0.94;
    font-weight: bold;
    text-transform: uppercase;
    white-space: pre-line;
    color: var(--text-white);
}

.carousel-caption h4 {
    font-family: "Handlee", cursive;
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
    color: var(--text-white);
}

.carousel-caption h5 {
    font-family: "Inter Tight", sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
    color: var(--text-white);
    margin-bottom: 22px;
}

.hero_carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.05);
}

.btn_light.hero_btn {
    background: transparent;
    border: 1px solid var(--bg-white);
    padding: 18.5px 28.5px;
}

.btn_light.hero_btn:hover {
    border: 1px solid var(--bg-yellow);
}

.btn_light.hero_btn .btn_light_text {
    color: var(--text-white);
    font-size: 22px;
}

.btn_light.hero_btn:hover .btn_light_text {
    color: var(--text-btn);
}

.hero_carousel .carousel-indicators {
    bottom: 80px;
}

.carousel-indicators [data-bs-target] {
    height: 5px;
    width: 26px;
    background-color: var(--bg-white);
    transition: all 0.5s ease-in-out;
}

.carousel-indicators [data-bs-target].active {
    width: 44px;
}

/*Hero Carousel End*/
/*Welcome Section Start*/
.wl_text_box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 64px;
    border-top-right-radius: 50px;
    border-top-left-radius: 15px;
}

.wl_img_box {
    border-top-left-radius: 50px;
    border-top-right-radius: 15px;
    width: 100%;
    height: 100%;
    padding: 25px;
}

.wl_img_box img {
    border-top-left-radius: 40px;
    border-top-right-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 230px;
}

.title_box h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-blue);
    font-family: "Inter Tight", sans-serif;
    white-space: pre-line;
    margin-bottom: 16px;
    text-transform: capitalize;
    transition: all 0.5s ease;
}

.title_box p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-gray);
    line-height: 1.6;
    transition: all 0.5s ease;
}

.title_box .read_more_btn {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-btn);
    position: relative;
    padding: 10px 10px 10px 40px;
    border-radius: 60px;
    background: transparent;
    transition: all 0.6s ease;
    border: none;
}

.title_box .read_more_btn:after {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    transition: all 0.6s ease;
}

.title_box .read_more_btn:hover:after {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.title_box .read_more_btn:hover {
    background: var(--bg-button);
    color: var(--text-white);
    padding: 10px 40px 10px 20px;
}

.title_box .read_more_btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: var(--bg-button);
    background-image: url(../images/right-chavrone-white.svg);
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
    border-radius: 50%;
    transition: all 0.6s ease;
}

.title_box .read_more_btn:hover::before {
    left: calc(100% - 40px);
}

.book_your_plot {
    border-radius: 15px;
    padding: 64px 20px;
    display: block;
}

.book_your_plot h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-yellow);
    text-transform: capitalize;
}

.book_your_plot p {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.1;
    color: var(--text-yellow);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.welcome_sec {
    position: relative;
}

.welcome_sec .container {
    position: relative;
    top: -46px;
    z-index: 1;
    padding-bottom: 34px;
}

.welcome_sec .wl_image {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-top-left-radius: 50px;
    border-top-right-radius: 15px;
}

.welcome_sec .wl_image img {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 0;
    transform: scale(1);
    transition: all 450ms ease-out;
}

.welcome_sec .container:hover .wl_image img {
    transform: scale(1.1);
}

.welcome_sec .wl_image::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5%;
    height: 5%;
    background-color: rgba(0, 34, 87, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 450ms ease-out;
}

.welcome_sec .container:hover .wl_image::after {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
}

/*Welcome Section End*/
/*Connectivity Section Start*/
.connectivity_sec {
    margin-top: 80px;
}

.connectivity_owl .owl-carousel.owl-theme.owl-loaded.owl-drag {
    padding: 26px 0;
}

.connectivity_owl .owl-carousel .owl-stage {
    display: flex;
    margin-bottom: 12px;
}

.connectivity_sec .connectivity_owl h3 {
    text-align: center;
    margin-bottom: 30px;
}

.connectivity_owl .connectivity_owl_img {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.connectivity_owl .item {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.connectivity_owl .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.37, 0.95);
}

.connectivity_owl .owl-carousel .owl-item:hover img {
    transform: scale(1.1);
}

.connectivity_owl .connectivity_owl_text {
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0px 10px 19px rgb(0 0 0 / 9%);
    z-index: 1;
    position: relative;
    padding: 42px 47px 0 47px;
    margin: -35px 28px 28px;
    height: 50%;
    transition: all 450ms ease-out;
    overflow: hidden;
}

.connectivity_owl_text:hover h4,
.connectivity_owl_text:hover p {
    color: var(--text-blue);
}

.title_box h4 {
    font-size: 22px;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.connectivity_owl_img::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5%;
    height: 5%;
    background-color: rgba(225, 225, 225, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 450ms ease-out;
}

.connectivity-owl .item:hover .connectivity_owl_img::after {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
}

.connectivity_owl .connectivity_owl_text::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    height: 5%;
    width: 5%;
    background: linear-gradient(0deg, rgba(255, 209, 111, 1) 30%, rgba(255, 209, 111, 1) 80%, rgba(255, 255, 255, 1) 100%);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: all 450ms ease-out;
}

.connectivity-owl .item:hover .connectivity_owl_text::after {
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
}

/*Owl Nav Button Start*/
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: block;
}

.owl-theme .owl-nav {
    margin-top: 10px;
    width: 100%;
    position: absolute;
    display: flex !important;
    justify-content: end;
}

.owl-nav::after {
    position: absolute;
    content: "";
    left: 0;
    width: calc(100% - 87px);
    height: 0.02rem;
    background: #C9C9C9;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next:focus-visible,
.owl-carousel .owl-nav button.owl-prev:focus-visible {
    width: 40px;
    height: 35px;
    margin: 0;
    background: transparent !important;
    outline: none;
}

.owl-carousel .owl-nav button.owl-next img,
.owl-carousel .owl-nav button.owl-prev img {
    width: 35px;
    height: 35px;
    border: 1px solid #C9C9C9;
    padding: 7px;
    border-radius: 5px;
    transition: all 0.4s ease;
}

.owl-carousel .owl-nav button.owl-next img:hover,
.owl-carousel .owl-nav button.owl-prev img:hover {
    background-color: var(--bg-yellow);
    border: 1px solid var(--bg-yellow);
}

/*Owl Nav Button End*/
/*Connectivity Section End*/
/*Our Projects Section Start*/
section.our_projects_sec {
    margin: 80px 0;
}

.our_projects_sec .projects_img {
    overflow: hidden;
}

.projects_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 260px;
}

section.our_projects_sec .title_box.text-center {
    margin-bottom: 40px;
}

.our_pro_price_box .our_pro_price_text .projects_text h5 {
    font-size: 30px;
    font-weight: 600;
    color: var(--text-gray);
    font-family: "Inter Tight", sans-serif;
    margin-bottom: 0;
}

.our_pro_price_box .our_pro_price_text .projects_text p {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

.our_pro_price_box .our_pro_price_text .projects_text h6 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 0;
}

.our_projects_sec .our_pro_price_box .our_pro_price_text {
    padding: 20px 30px 20px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 450ms ease-out;
    overflow: hidden;
}

.our_projects_sec .our_pro_price_box .our_pro_price_text::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 30%, rgba(255, 209, 111, 1) 80%, rgba(255, 209, 111, 1) 100%);
    transition: all 450ms ease-out;
    height: 0%;
    width: 100%;
    visibility: hidden;
    z-index: -1;
}

.our_projects_sec .our_pro_price_box .our_pro_price_text:hover::after {
    height: 100%;
    visibility: visible;
    top: auto;
    bottom: 0;
}

.our_projects_sec .our_pro_price_box {
    height: 100%;
    width: 100%;
}

.our_pro_price_box .our_pro_price_text {
    height: 100%;
    width: 100%;
}

.our_pro_price_box .our_pro_price_text:first-child {
    margin-top: 0;
}

.our_pro_price_box .our_pro_price_text:last-child {
    margin-bottom: 0;
}

.our_projects_sec .our_pro_price_box .our_pro_price_text:hover .title_box .read_more_btn {
    background: var(--bg-button);
    color: var(--text-white);
    padding: 10px 40px 10px 20px;
}

.our_projects_sec .our_pro_price_box .our_pro_price_text:hover .title_box .read_more_btn::before {
    left: calc(100% - 40px);
}

/*Our Projects Section End*/

/*Infrastructure Section Start*/
.infrastructure_sec {
    padding: 80px 0;
}

.infrastructure_sec .container-fluid {
    max-width: 1600px;
}

.infrastructure_owl_carousel .item {
    border-radius: 15px;
    background: var(--bg-white);
    padding: 20px 24px;
    height: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.infrastructure_sec .title_box h3 {
    font-size: 35px;
    font-weight: 500;
    white-space: pre-line;
    color: var(--text-white);
}

.infrastructure_owl_carousel .owl-stage {
    display: flex;
    padding: 35px 0 30px;
}

/* .infrastructure_owl_carousel.owl-carousel.owl-theme.owl-loaded.owl-drag {
    max-width: 1600px;
    margin: 0 auto;
} */

.infrastructure_owl_carousel .item {
    border-radius: 15px;
    background: var(--bg-white);
    background: linear-gradient(0deg, rgba(255, 209, 111, 1) 0%, rgba(255, 255, 255, 1) 23%, rgba(255, 255, 255, 1) 100%);
    padding: 20px 24px;
    height: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.infrastructure_owl_carousel .item::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    height: 0%;
    width: 100%;
    background: linear-gradient(0deg, rgba(255, 209, 111, 1) 30%, rgba(255, 209, 111, 1) 80%, rgba(255, 255, 255, 1) 100%);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: all 450ms ease-out;
}

.infrastructure_owl_carousel .item:hover::after {
    height: 100%;
    opacity: 1;
    visibility: visible;
}

.infrastructure_owl_carousel .item img {
    height: 66px;
    margin: 30px 0 40px 5px;
    max-width: 70px;
    transition: all 450ms ease-out;
}

.infrastructure_owl_carousel .item:hover img {
    transform: rotateY(180deg);
}

.infrastructure_owl_carousel .item h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-gray);
    border-top: 1px solid #d2d2d2;
    font-family: "Inter Tight", sans-serif;
    padding: 30px 0 3px 10px;
    white-space: pre-line;
    transition: all 450ms ease-out;
}

.infrastructure_owl_carousel .item:hover h3 {
    border-top: 1px solid var(--text-white);
}

.infrastructure_owl_carousel.owl-carousel .owl-nav button.owl-next img,
.infrastructure_owl_carousel.owl-carousel .owl-nav button.owl-prev img {
    border: 1px solid #ffffff4D;
}

.infrastructure_owl_carousel.owl-carousel .owl-nav::after {
    background: #ffffff4D;
    left: 114px;
    width: calc(100% - 315px);
}

.infrastructure_owl_carousel.owl-carousel .owl-nav {
    padding-right: 114px;
}

/*Infrastructure Section End*/
/*Why Invest Section Start*/
.why_invest_sec {
    margin: 80px 0;
}

.why_invest_box {
    display: flex;
}

.why_invest_img img {
    object-fit: cover;
    min-height: 582px;
    height: 100%;
}

.why_invest_img {
    height: 100%;
    width: 100%;
    min-width: 672px;
    border-radius: 15px;
    overflow: hidden;
}

.box_content {
    background: #ffffff;
    padding: 46px 44px 51px 74px;
    border-bottom-left-radius: 15px;
    /*margin-left: -200px;*/
    height: fit-content;
    transition: all 0.9s ease;
}

.why_invest_info.title_box p,
.why_invest_info.title_box h2 {
    margin-bottom: 26px;
}

/*Why Invest Section End*/
/*Customer Testimonials Section Start*/
.testimonials_sec {
    padding: 70px 0;
}

.customer_testi_owl .owl-stage {
    display: flex;
    padding: 20px 0 0;
}

.customer_testi_owl .item {
    background-color: var(--bg-white);
    border-radius: 15px;
    border: 1px solid #d4d4d4;
    padding: 58px 55px 45px 55px;
    height: 100%;
    margin-left: 3px;
}

.customer_testi_owl .customer_box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
}

.customer_testi_owl .customer_box img {
    max-width: 48px;
    height: 100%;
    border-radius: 50%;
}

.customer_testi_owl .customer_box h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-btn);
    text-transform: capitalize;
}

.customer_testi_owl .owl-nav {
    display: none !important;
}

/*Customer Testimonials Section End*/
/*Footer Start*/
.footer {
    padding: 54px 0 34px;
}

.footer .row {
    padding-bottom: 12px;
}

.footer .footer_box h4 {
    color: var(--text-yellow);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer .footer_box p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.6;
    white-space: pre-line;
    padding: 5px 0 0 0;
    text-transform: capitalize;
    margin-bottom: 24px;
}

.footer .footer_box ul li {
    position: relative;
}

.footer .footer_box a {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.4;
    text-transform: capitalize;
    position: relative;
    transition: all 0.5s ease;
}

.footer .footer_box a.tt_none {
    text-transform: none;
}

.footer .footer_box a.enquiry_btn_ftr {
    text-transform: inherit;
}

ul.footer_social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 26px;
    margin: 24px 0;
}

ul.footer_social img {
    max-width: 18px;
}

ul.footer_social li a::before {
    display: none;
}

.footer .footer_box .footer_social li a:hover {
    padding-left: 0;
}

.footer .footer_box .footer_social li a:hover img {
    padding-left: 0;
    filter: brightness(0) saturate(100%) invert(90%) sepia(44%) saturate(3350%) hue-rotate(308deg) brightness(106%) contrast(107%);
}

.footer .footer_box ul.footer_social li:last-child {
    margin-bottom: 0;
}

.footer .footer_box ul li {
    padding: 5px 0 2px;
}

.footer .footer_box ul li:last-child {
    margin-bottom: 24px;
}

.footer .footer_box li a::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
    background-size: 9px;
    background-image: url(../images/right-chavrone-yellow.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.5s ease;
    opacity: 0;
}

.footer .footer_box li a:hover::before {
    left: 0;
    opacity: 1;
}

.footer .footer_box li a:hover {
    padding-left: 15px;
    color: var(--text-yellow);
}

.f_contact_box ul li a::before {
    display: none;
}

.footer .footer_box.f_contact_box li a:hover {
    padding-left: 0;
}

.border_bottom {
    border-bottom: 1px solid #ffffff4d;
}

.footer_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 23px 0 0;
}

.footer_bottom a img {
    margin-left: 4px;
    max-height: 18px;
    filter: grayscale(0.9);
    transition: all 0.3s ease;
}

.footer_bottom a img:hover {
    filter: inherit;
}

.footer_bottom a,
.copy_right span {
    font-size: 15px;
    font-weight: 500;
    color: #ffffffcc;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.copy_right span+span {
    border-left: 1px solid var(--text-white);
    padding-left: 7px;
    margin-left: 3px;
}

.footer_bottom a:hover {
    color: var(--text-yellow);
}

/*Footer End*/
/*Inquiry Popup Form Start*/
.inquiry_modal {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    padding: 60px 30px 30px 30px;
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    border-width: 0px;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    vertical-align: middle;
    z-index: 5;
    overflow-x: hidden;
    overflow-y: auto;
    transition: 0.4s all ease;
}

.inquiry_modal.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 999;
}

.inquiry_form_wrapper {
    background: #fdf6e7;
    max-width: 1000px;
    width: 100%;
    padding: 70px 50px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0px 10px 19px rgb(0 0 0 / 9%);
}

.inquiry_form_wrapper h2 {
    margin-top: 0;
}

.inquiry_form_wrapper input::placeholder,
.inquiry_form_wrapper input:focus-visible,
.inquiry_form_wrapper input,
.inquiry_form_wrapper textarea.form-control {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    color: var(--text-btn);
    outline: none;
    font-weight: 500;
}

.inquiry_form_wrapper .form-group {
    padding-bottom: 30px;
    position: relative;
}

.inquiry_form_wrapper input,
.inquiry_form_wrapper textarea,
.inquiry_form_wrapper .form-control:focus {
    border: 1px solid var(--bg-button);
    background: transparent;
    color: var(--text-btn);
    border-radius: 5px;
    transition: all 0.4s ease;
    box-shadow: none;
}

.inquiry_form_wrapper .form-control:hover,
.inquiry_form_wrapper .form-control:focus {
    background-color: var(--bg-white);
}

.inquiry_form_wrapper input:hover,
.inquiry_form_wrapper textarea:hover {
    border: 1px solid var(--bg-button);
}

.inquiry_form_wrapper input::placeholder {
    padding-left: 0;
}

.inquiry_form_wrapper textarea:focus-visible,
.inquiry_form_wrapper textarea::placeholder {
    font-size: 14px;
    color: var(--text-btn);
}

.inquiry_modal .close_btn {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 30px;
    cursor: pointer;
    font-weight: 400;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-dark-blue);
    transition: all 0.4s ease;
}

.inquiry_modal .close_btn:hover {
    background: var(--text-dark-blue);
}

.inquiry_modal .close_btn::before,
.inquiry_modal .close_btn::after {
    position: absolute;
    content: "";
    width: 2px;
    height: calc(100% - 40%);
    top: 50%;
    left: 50%;
    background-color: var(--bg-white);
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: all 0.4s ease-in;
}

.inquiry_modal .close_btn:hover::before,
.inquiry_modal .close_btn:hover::after {
    background-color: var(--bg-yellow);
}

.inquiry_modal .close_btn::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.inquiry_modal textarea {
    resize: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFD16F;
    max-width: 1200px;
    padding: 60px;
    margin-left: 12px;
    margin-right: 12px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../sub-images/Building-ilu.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 52%;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    background-repeat: repeat-x;
    mix-blend-mode: color-burn;
}

/*Inquiry Popup Form btn_light Start*/
.inquiry_modal .btn_light {
    border: 1px solid var(--bg-dark-blue);
    background-color: var(--bg-dark-blue);
    padding: 13px 17.5px;
    position: relative;
    display: inline-block;
}

.inquiry_modal .btn_light:hover {
    border: 1px solid var(--bg-button);
}

.inquiry_modal .btn_light:hover .btn_light_text {
    color: var(--bg-dark-blue);
}

.inquiry_modal .btn_light:before {
    --progress: 100%;
    background: #fdf6e7;
    clip-path: polygon(100% 0, var(--progress) var(--progress), 0 100%, 100% 100%);
    content: "";
    inset: 0;
    position: absolute;
    transition: clip-path 0.2s ease;
}

.inquiry_modal .btn_light:hover:before {
    --progress: 0%;
}

.inquiry_modal .btn_light .btn_light_container {
    display: block;
    overflow: hidden;
    position: relative;
}

.inquiry_modal .btn_light .btn_light_text {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    position: relative;
    color: var(--text-white);
}

.inquiry_modal .btn_light:hover .inquiry_modal .btn_light_text {
    animation: move-up-alternate 0.3s ease forwards;
    color: var(--text-btn);
}

/*Inquiry Popup Form btn_light End*/
/*Inquiry Popup Form End*/
/*Book Free Visit Cart Drawer Start*/
.cart_drawer {
    position: fixed;
    top: 30%;
    right: 0;
    transform: translateX(100%);
    width: 100%;
    max-width: 500px;
    height: auto;
    background: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.8)), url(../images/grey-bg-stracture.webp);
    background-size: cover;
    background-position: left;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease-in-out;
    z-index: 9999;
    overflow-y: auto;
    padding: 40px;
}

.cart_drawer.open {
    transform: translateX(0);
}

.cart_drawer_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.46, -0.01, 0.49, 0.99);
}

.cart_drawer_overlay.visible {
    opacity: 1;
    visibility: visible;
}

.close_drawer {
    background-color: transparent;
    border: none;
    font-size: 46px;
    position: absolute;
    top: 8px;
    right: 15px;
    color: var(--text-btn);
    line-height: 1;
    font-weight: 300;
}

#dholeraVisitForm {
    position: relative;
}

#dholeraVisitForm input::placeholder,
#dholeraVisitForm input:focus-visible,
#dholeraVisitForm input,
#dholeraVisitForm textarea.form-control {
    width: 100%;
    padding: 10px;
    margin: 10px 0 20px;
    font-size: 14px;
    color: var(--text-gray);
    outline: none;
    font-weight: 500;
    text-transform: capitalize;
}

#dholeraVisitForm input,
#dholeraVisitForm textarea,
#dholeraVisitForm .form-control:focus {
    border: 1px solid var(--text-gray);
    background: transparent;
    border-radius: 5px;
    transition: all 0.4s ease;
    box-shadow: none;
}

#dholeraVisitForm .form-control:hover,
#dholeraVisitForm .form-control:active,
#dholeraVisitForm .form-control:focus {
    border: 1px solid var(--bg-blue);

}

#dholeraVisitForm input:hover,
#dholeraVisitForm textarea:hover {
    border: 1px solid var(--bg-button);
}

#dholeraVisitForm input::placeholder {
    padding-left: 0;
}

#dholeraVisitForm textarea:focus-visible,
#dholeraVisitForm textarea::placeholder {
    font-size: 14px;
    color: var(--text-btn);
}

#dholeraVisitForm .btn_light {
    border: 1px solid var(--bg-dark-blue);
    background-color: var(--bg-dark-blue);
}

#dholeraVisitForm .btn_light:hover .btn_light_text {
    color: var(--text-dark-blue);
}

#dholeraVisitForm .btn_light .btn_light_text {
    color: var(--text-white);
    text-transform: capitalize;
}

/*Book Free Visit Cart Drawer End*/
/*WhatsApp Connect Start*/
button.wtsapp {
    position: fixed;
    z-index: 2;
    right: 8px;
    bottom: 80px;
    transition: all .5s ease;
    background: transparent;
    border: 0;
}

.whatsapp_content.open {
    opacity: 1;
    visibility: visible;
    bottom: 117px;
    right: 47px;
    margin-left: 12px;
    position: fixed;
    border-radius: 7px;
    overflow: hidden;
}

.whatsapp_content {
    max-width: 315px;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms cubic-bezier(0.335, 0.01, 0.03, 1.36);
    position: relative;
    bottom: 60px;
    display: none;
    display: table-column;
    box-shadow: 0px 0px 8px rgb(0 0 0 / 8%);
    z-index: 2;
}

.whatsapp_content.open p {
    background: #29a71a;
    color: var(--text-white);
    font-weight: 500;
    padding: 15px;
    margin: 0;
    font-size: 13px;
}

button#ws_toggle img {
    max-width: 56px;
}

div#whatsapp_content img {
    max-width: 30px;
}

.wtsapp-number {
    padding: 15px;
    background-color: var(--bg-linen);
}

.wtsapp-number a {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 600;
}

.wtsapp {
    position: relative;
    border: none;
    background: transparent;
    padding: 10px;
    cursor: pointer;
    width: 60px;
    height: 60px;
}

.wtsapp img {
    position: relative;
    z-index: 3;
    width: 40px;
    height: auto;
}

.zoom-animate {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    border: 4px solid #29a71a;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 1;
    opacity: 0;
    animation: zoomInOut 2s ease-out infinite;
    transition: all 0.9s ease-in-out;
}

.wave1 {
    animation-delay: 0s;
}

.wave2 {
    animation-delay: 1s;
}

@keyframes zoomInOut {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.6;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/*WhatsApp Connect End*/
/*Instagram Connect Start*/
.instagram {
    position: fixed;
    z-index: 2;
    right: 8px;
    bottom: 20px;
    transition: all .5s ease;
    background: transparent;
    border: 0;
    padding: 10px;
}

.instagram img {
    position: relative;
    z-index: 3;
    width: 40px;
    height: auto;
}

.zoom-animate-insta {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    border: 4px solid #ea1c81;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 1;
    opacity: 0;
    animation: zoomInOutInsta 2s ease-out infinite;
    transition: all 0.9s ease-in-out;
}

.wave11 {
    animation-delay: 0s;
}

.wave22 {
    animation-delay: 1s;
}

@keyframes zoomInOutInsta {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.6;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/*Instagram Connect End*/
/*New Connectivity Section Start*/
.n_connect_sec {
    padding: 80px 0;
}

.n_connect_sec .title_box h4 {
    font-size: 22px;
    color: var(--text-white);
    font-weight: 500;
    text-transform: capitalize;
}

.n_connect_sec .title_box p {
    color: var(--text-white);
    font-weight: 400;
}

.info_box {
    padding: 40px 0 50px;
    height: 100%;
}

.info_box .title_box {
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 15px;
    height: 100%;
}

.info_box .title_box h4 {
    color: var(--text-dark-blue);
    font-weight: 600;
}

.info_box .title_box p {
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 0;
}

.box_img h4 {
    font-size: 20px;
    color: var(--text-white);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0;
    margin: 20px;
    text-align: center;
}

.box_img img {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    max-height: 370px;
    object-fit: cover;
}

.box_image:hover::after {
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
}

.box_image::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5%;
    height: 5%;
    background-color: rgba(225, 225, 225, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 450ms ease-out;
}

.box_image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}