@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Text:ital,wght@0,300..700;1,300..700&display=swap');

* {
    margin: 0;
    box-sizing: border-box;
}

:root {
    --Base-Black: #000;
    --Base-White: #FFFFFF;
    --Primary: #231757;
    --Secondary: #E0BF5E;
    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --slate-900: #0F172A;
    --slate-950: #020617;
    --font: "Red Hat Text", sans-serif;
}

body {
    font-family: var(--font);
    margin: 0;
}

@media (min-width: 1701px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}

.main_heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.main_heading h2 {
    font-weight: 500;
    text-align: center;
    color: var(--slate-900);
}

.main_heading h2 span {
    color: var(--Secondary);
}

.main_heading h6 {
    text-align: center;
    color: var(--slate-800);
}

.rn_section_gapTop {
    padding: 96px 0;
}

.inner_gapTop {
    margin-top: 48px;
}

.bg_lightGray {
    background-color: var(--slate-50);
}

.btn {
    font: normal normal 500 16px/24px var(--font);
    padding: 11px 19px;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: .4s all ease-out;
}

.btn img {
    width: 20px;
    height: auto;
}

.btn_primary {
    color: var(--Base-White);
    border: 1px solid var(--Primary);
    background: var(--Primary);
}

.btn_primary:hover {
    color: var(--Base-White);
    border: 1px solid var(--Base-Black);
    background: var(--Base-Black);
}

.btn_secondary {
    color: var(--Base-Black);
    border: 1px solid var(--Secondary);
    background: var(--Secondary);
}

.btn_secondary:hover {
    color: var(--Base-White);
    border: 1px solid var(--Primary);
    background: var(--Primary);
}

.btn_white {
    color: var(--Base-Black);
    border: 1px solid var(--Base-White);
    background: var(--Base-White);
}

.btn_white:hover {
    color: var(--Base-White);
    border: 1px solid var(--Base-White);
    background: transparent;
}

.btn_border {
    color: var(--Base-Black);
    border: 1px solid #475569;
    background: transparent;
}

.btn_border:hover {
    color: var(--Base-White);
    border: 1px solid var(--Primary);
    background: var(--Primary);
}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

h1 {
    font: normal normal 600 48px/125% var(--font);
    letter-spacing: -1.2px;
}

h2 {
    font: normal normal 600 48px/125% var(--font);
    letter-spacing: -1.2px;
}

h3 {
    font: normal normal 600 36px/122.222% var(--font);
    letter-spacing: -0.9px;
}

h4 {
    font: normal normal 600 24px/133.333% var(--font);
    letter-spacing: -0.6px;
}

h5 {
    font: normal normal 500 20px/150% var(--font);
    letter-spacing: -0.5px;
}

h6 {
    font: normal normal 400 18px/155.556% var(--font);
    letter-spacing: -0.45px;
}

p {
    font: normal normal 400 16px/150% var(--font);
    letter-spacing: -0.4px;
}

.header {
    position: fixed;
    top: 52px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    max-width: 1344px;
    z-index: 9999;
    border-radius: 16px;
    background: var(--Base-White);
    box-shadow: 0 20px 24px -4px rgba(16, 24, 40, 0.08), 0 8px 8px -4px rgba(16, 24, 40, 0.03);
    transition: .4s all ease-out;
}

.header.scrolled {
    top: 20px;
}

.header .nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
}

.header .nav-bar .logo img {
    width: 115px;
    height: auto;
}

.header .nav-bar .nav-wrapper {
    display: flex;
    align-items: center;
    gap: 48px;
}

.header .nav-bar .nav-wrapper .nav-item {
    position: relative;
    z-index: 0;
}


.header .nav-bar .nav-wrapper .nav-item .nav-link {
    font: normal normal 400 18px/28px var(--font);
    color: var(--slate-800);
    letter-spacing: -0.45px;
    display: flex;
    align-items: center;
    gap: 4px;
    height: 48px;
}

.header .nav-bar .nav-wrapper .nav-item .nav-link img {
    width: 20px;
    height: auto;
    transition: .4s all ease-out;
}

.header .nav-bar .nav-wrapper .nav-item.open .nav-link img {
    transform: rotate(180deg);
}

.header .nav-bar .nav-wrapper .nav-item .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--Base-White);
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    border-radius: 0 0 8px 8px;
    display: none;
    padding: 20px 0 8px;
    z-index: 100;
}

.header .nav-bar .nav-wrapper .nav-item .nav-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header .nav-bar .nav-wrapper .nav-item .nav-dropdown li a {
    font: normal normal 400 16px/150% var(--font);
    letter-spacing: -0.4px;
    color: var(--slate-800);
    padding: 10px 16px;
    display: block;
    text-decoration: none;
}

.header .nav-bar .nav-wrapper .nav-item .nav-dropdown li a:hover {
    background: var(--slate-100);
}

.header .nav-bar .hamburger-menu {
    display: none;
}

.hamburger-menu {
    position: relative;
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hamburger-line {
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    border-radius: 3px;
    background: var(--Primary);
    transition: all 0.6s ease;
}

.hamburger-line:nth-child(1) {
    top: 4px;
}

.hamburger-menu.is-active .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotateZ(-135deg);
}

.hamburger-line:nth-child(2) {
    top: 11px;
}

.hamburger-menu.is-active .hamburger-line:nth-child(2) {
    right: 50%;
    width: 0;
}

.hamburger-line:nth-child(3) {
    top: 18px;
    width: 12px;
}

.hamburger-menu.is-active .hamburger-line:nth-child(3) {
    top: 50%;
    width: 100%;
    transform: translateY(-50%) rotateZ(135deg);
}

@media screen and (max-width: 991px) {
    body:has(.nav-wrapper.open) {
        overflow: hidden;
    }

    .header {
        top: 0;
        border-radius: 0;
    }

    .header.scrolled {
        top: 0;
    }

    .header .nav-bar .logo img {
        width: 80px;
    }

    .header .nav-bar .hamburger-menu {
        display: block;
    }

    .header .nav-bar .nav-wrapper {
        position: fixed;
        left: 0;
        top: 0;
        background: var(--Primary);
        width: 70%;
        max-width: 265px;
        height: 100vh;
        padding: 72px 16px 24px;
        flex-direction: column;
        gap: 0;
        visibility: hidden;
        transform: translateX(-100%);
        transition: .4s all ease-out;
    }

    .header .nav-bar .nav-wrapper.open {
        visibility: visible;
        transform: translateX(0);
    }

    .header .nav-bar .nav-wrapper .nav-item {
        width: 100%;
    }

    .header .nav-bar .nav-wrapper .nav-item .nav-link {
        font: normal normal 400 16px / 24px var(--font);
        letter-spacing: -0.42px;
        padding: 10px 0;
        color: var(--Base-White);
        height: auto;
    }

    .header .nav-bar .nav-wrapper .nav-item .nav-link img {
        width: 18px;
        filter: brightness(0) invert(1);
    }

    .header .nav-bar .nav-wrapper .nav-item .nav-dropdown {
        position: static;
        min-width: auto;
        box-shadow: none;
        border-radius: 8px;
        padding: 6px 0;
        background-color: #130d31;
        margin: 0;
    }

    .header .nav-bar .nav-wrapper .nav-item .nav-dropdown li a {
        font: normal normal 400 14px / 150% var(--font);
        letter-spacing: -0.36px;
        color: var(--Base-White);
        padding: 5px 12px;
    }

    .header .nav-bar .nav-wrapper .nav-item .nav-dropdown li a:hover {
        background: var(--Secondary);
        color: var(--Base-Black);
    }
}

.hero_banner {
    padding: 20px 20px 0;
}

.hero_banner .hero_slider {
    border-radius: 24px;
    overflow: hidden;
}

.hero_banner .hero_slider .slide_item {
    position: relative;
    z-index: 0;
}

.hero_banner .hero_slider .slide_img::before {
    position: absolute;
    left: 0;
    top: 0;
    content: ' ';
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 11, 18, 0.44) 0%, rgba(8, 11, 18, 0.28) 50%, rgba(8, 11, 18, 0.00) 100%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
    backdrop-filter: blur(2px);
    z-index: 0;
}

.hero_banner .hero_slider .slide_img img {
    height: 95vh;
    object-fit: cover;
    object-position: center;
}

.hero_banner .hero_slider .slide_content {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 532px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
}

.hero_banner .hero_slider .slide_content h1,
.hero_banner .hero_slider .slide_content h2,
.hero_banner .hero_slider .slide_content h5 {
    color: var(--Base-White);
}

.hero_banner .hero_slider .slide_content h5 {
    max-width: 85%;
}

.hero_banner .hero_slider .slide_content .btn {
    margin-top: 32px;
}

.hero_banner .hero_slider .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 32px;
    margin: auto;
    width: fit-content;
    min-width: 103px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    background: var(--Base-White);
    box-shadow: 0 4px 8px -2px rgba(16, 24, 40, 0.10), 0 2px 4px -2px rgba(16, 24, 40, 0.06);
}

.hero_banner .owl-carousel button.owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 100px;
    background: var(--slate-400);
    transition: .3s all ease-out;
}

.hero_banner .owl-carousel button.owl-dot.active {
    width: 25px;
    background: var(--Base-Black);
}

.hero_banner .owl-carousel .owl-nav button.owl-prev {
    left: 72px;
}

.hero_banner .owl-carousel .owl-nav button.owl-next {
    right: 72px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background-color: var(--Base-White);
    box-shadow: 0 4px 8px -2px rgba(16, 24, 40, 0.10), 0 2px 4px -2px rgba(16, 24, 40, 0.06);
    font-size: 0;
}

.owl-carousel .owl-nav button.owl-prev {
    left: -64px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -64px;
}

.owl-carousel .owl-nav button.owl-next::before,
.owl-carousel .owl-nav button.owl-prev::before {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.owl-carousel .owl-nav button.owl-prev::before {
    background-image: url(../img/arrow-narrow-left.svg);
}

.owl-carousel .owl-nav button.owl-next::before {
    background-image: url(../img/arrow-narrow-right.svg);
}

.about_witlet .about_grids {
    display: grid;
    grid-template-columns: 168px 428px 556px;
    align-items: center;
    gap: 72px;
}

.about_witlet .about_grids .about_bnrImg img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.about_witlet .about_grids .about_statistics {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about_witlet .about_grids .card_statis {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--slate-300);
}

.about_witlet .about_grids .card_statis:last-child {
    padding-bottom: 0;
    border-bottom: none;
}


.about_witlet .about_grids .card_statis h2 {
    color: var(--Primary);
}

.about_witlet .about_grids .card_statis h6 {
    color: var(--slate-900);
}

.about_witlet .about_grids .main_heading {
    gap: 16px;
}

.about_witlet .about_grids .main_heading h2,
.about_witlet .about_grids .main_heading h6 {
    text-align: left;
}

.about_witlet .about_grids .main_heading .btn {
    margin-top: 8px;
}

.properties_sale .search_bar {
    width: 800px;
    padding: 8px 8px 8px 24px;
    border-radius: 60px;
    border: 1px solid var(--slate-200);
    background: var(--Base-White);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.10);
    margin: 36px auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.properties_sale .select_property {
    position: relative;
    z-index: 9;
}

.properties_sale .select_property .btn_selectProperties {
    font: normal normal 400 16px/24px var(--font);
    color: var(--slate-800);
    letter-spacing: -0.4px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    background-color: transparent;
}

.properties_sale .select_property .btn_selectProperties img {
    width: 18px;
    height: auto;
    transition: .3s all ease-out;
}

.properties_sale .select_property.active .btn_selectProperties img {
    transform: rotate(180deg);
}

.properties_sale .select_property .options {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    width: 124px;
    list-style: none;
    padding: 4px 0;
    margin: 0;
    border-top: none;
    border: 1px solid var(--slate-200);
    border-radius: 0 0 8px 8px;
    background: var(--Base-White);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.10);
    overflow: hidden;
    display: none;
}

.properties_sale .select_property .option {
    font: normal normal 400 16px/20px var(--font);
    color: var(--slate-800);
    letter-spacing: -0.4px;
    padding: 8px 12px;
    cursor: pointer;
}

.properties_sale .select_property .option.selected {
    background-color: var(--slate-50);
}

.properties_sale .divider {
    width: 1px;
    height: 32px;
    background: var(--slate-300);
}

.properties_sale .serach_input {
    position: relative;
    z-index: 0;
    width: 100%;
}

.properties_sale .serach_input .form-control {
    font: normal normal 400 16px/24px var(--font);
    color: var(--slate-500);
    letter-spacing: -0.4px;
    padding: 0;
    border: none;
    background-color: transparent;
    min-height: 48px;
}

.form-control:focus {
    box-shadow: none;
}

.properties_sale .serach_input .btn_search {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    background: var(--Secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.properties_sale .serach_input .btn_search img {
    width: 24px;
    height: auto;
}

.properties_sale .owl-carousel .owl-stage-outer {
    padding-bottom: 8px;
}

.properties_sale .slide_item .img_box {
    width: 100%;
    height: 235px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 8px -2px rgba(16, 24, 40, 0.10), 0 2px 4px -2px rgba(16, 24, 40, 0.06);
}

.properties_sale .slide_item .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: .4s all ease-out;
}

.properties_sale .slide_item:hover .img_box img {
    transform: scale(1.06);
}

.properties_sale .slide_item .properties_info {
    padding: 16px;
    border-radius: 16px;
    background: var(--Base-White);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 8px -2px rgba(16, 24, 40, 0.10), 0 2px 4px -2px rgba(16, 24, 40, 0.06);
}

.properties_sale .slide_item .properties_info .info_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.properties_sale .slide_item .properties_info .top_left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.properties_sale .slide_item .properties_info .chip_segment {
    font: normal normal 400 14px/20px var(--font);
    color: var(--slate-900);
    letter-spacing: -0.35px;
    padding: 4px 8px;
    border-radius: 100px;
    background: var(--slate-100);
    display: flex;
    align-items: center;
    gap: 4px;
}

.properties_sale .slide_item .properties_info .chip_segment.sale {
    color: #039855;
    background: #D1FADF;
}

.properties_sale .slide_item .properties_info .chip_segment.rent {
    color: #175CD3;
    background: #D1E9FF;
}

.properties_sale .slide_item .properties_info .chip_segment img {
    width: 16px;
    height: auto;
}

.properties_sale .slide_item .properties_info .info_top h5 {
    color: var(--slate-950);
    font-weight: 700;
}

.properties_sale .slide_item .properties_info .info_center {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.properties_sale .slide_item .properties_info .info_center h5 {
    color: var(--slate-900);
}

.properties_sale .slide_item .properties_info .info_center span {
    font: normal normal 400 14px/20px var(--font);
    color: var(--slate-600);
    letter-spacing: -0.35px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.properties_sale .slide_item .properties_info .info_center span img {
    width: 20px;
    height: auto;
}

.properties_sale .slide_item .properties_info .info_center p {
    color: var(--slate-800);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.properties_sale .slide_item .properties_info .btn {
    padding: 10px 18px;
    width: 100%;
}

.what_weDo .row {
    row-gap: 24px;
}

.what_weDo .offers_grids {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.what_weDo .offers_grids .card_box {
    padding: 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 416px;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.what_weDo .offers_grids .card_box:nth-child(1) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.01) 100%), #231757;
}

.what_weDo .offers_grids .card_box:nth-child(2) {
    background: #FAEFCC;
}

.what_weDo .offers_grids .card_box:nth-child(3) {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.01) 100%), #002124;
}

.what_weDo .offers_grids .card_box:nth-child(4) {
    background: #C6E3E5;
}

.what_weDo .offers_grids .card_box:nth-child(5) {
    background: var(--Secondary);
}

.what_weDo .offers_grids .card_box:nth-child(6) {
    background: #DFDBF4;
}

.what_weDo .offers_grids .card_box::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    transition: .3s all ease-out;
}

.what_weDo .offers_grids .card_box:hover::before {
    transform: scale(1.05);
}

.what_weDo .offers_grids .card_box:nth-child(1)::before {
    background-image: url(../img/offers-01.png);
}

.what_weDo .offers_grids .card_box:nth-child(2)::before {
    background-image: url(../img/offers-02.png);
}

.what_weDo .offers_grids .card_box:nth-child(3)::before {
    background-image: url(../img/offers-03.png);
}

.what_weDo .offers_grids .card_box:nth-child(4)::before {
    background-image: url(../img/offers-04.png);
}

.what_weDo .offers_grids .card_box:nth-child(5)::before {
    background-image: url(../img/offers-05.png);
}

.what_weDo .offers_grids .card_box:nth-child(6)::before {
    background-image: url(../img/offers-06.png);
}

.what_weDo .offers_grids .card_box h3 {
    font-weight: 700;
    color: var(--slate-950);
}

.what_weDo .offers_grids .card_box h5 {
    font-weight: 400;
    color: var(--slate-950);
    margin-top: 8px;
}

.what_weDo .offers_grids .card_box:nth-child(1) h3,
.what_weDo .offers_grids .card_box:nth-child(3) h3 {
    color: var(--Base-White);
}

.what_weDo .offers_grids .card_box:nth-child(1) h5,
.what_weDo .offers_grids .card_box:nth-child(3) h5 {
    color: var(--Base-White);
}

.what_weDo .offers_grids .card_box:nth-child(2) h3 {
    color: #AE8A21;
}

.what_weDo .offers_grids .card_box:nth-child(4) h3,
.what_weDo .offers_grids .card_box:nth-child(4) h5 {
    color: #000F10;
}

.what_weDo .offers_grids .card_box:nth-child(6) h3,
.what_weDo .offers_grids .card_box:nth-child(6) h5 {
    color: #100A27;
}

.what_weDo .offers_grids .card_box .btn {
    width: 56px;
    height: 56px;
    padding: 16px;
    border-radius: 60px;
    border: 1px solid var(--Base-White);
    background: var(--Base-White);
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}

.what_weDo .offers_grids .card_box .btn img {
    width: 24px;
    height: auto;
}

.our_blogs {
    overflow: hidden;
}

.our_blogs .blogs_slide .owl-stage-outer {
    overflow: unset;
}

.our_blogs .blogs_slide .blogs_item {
    padding: 12px;
    display: flex;
    align-items: center;
    border-radius: 16px;
    background: var(--Base-White);
    box-shadow: 0 1px 3px 0 rgba(16, 24, 40, 0.10), 0 1px 2px 0 rgba(16, 24, 40, 0.06);
    cursor: grab;
    transition: .4s all ease-out;
}

.our_blogs .blogs_slide .blogs_item:hover {
    transform: translateY(-5px);
}

.our_blogs .blogs_slide .blogs_item .blogs_content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc((100% - 220px) + 24px);
    margin-right: -24px;
    position: relative;
    border-radius: 8px;
    background: var(--Base-White, #FFF);
    padding: 12px;
    height: 280px;
}

.our_blogs .blogs_slide .blogs_item .top_text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.our_blogs .blogs_slide .blogs_item .top_text h5 {
    font-weight: 600;
    color: var(--slate-900);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.our_blogs .blogs_slide .blogs_item .top_text .btn {
    padding: 0;
    box-shadow: none;
    gap: 4px;
}

.our_blogs .blogs_slide .blogs_item .top_text .btn img {
    width: 16px;
    height: auto;
}

.our_blogs .blogs_slide .blogs_item .blog_img {
    width: 220px;
    min-width: 220px;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
}

.our_blogs .blogs_slide .blogs_item .blog_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.our_blogs .blogs_slide .blogs_item .bottom_text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.our_blogs .blogs_slide .blogs_item .bottom_text span {
    font: normal normal 500 14px/20px var(--font);
    color: var(--slate-800);
    letter-spacing: -0.35px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.our_blogs .blogs_slide .blogs_item .bottom_text span img {
    width: 16px;
    height: auto;
}

.our_blogs .owl-carousel .owl-nav {
    width: 25%;
    position: relative;
    margin: auto;
}

.our_blogs .owl-carousel .owl-nav button.owl-prev {
    left: 0;
}

.our_blogs .owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.our_blogs .owl-carousel .owl-nav button.owl-next,
.our_blogs .owl-carousel .owl-nav button.owl-prev {
    background-color: var(--Primary);
    top: unset;
    bottom: -92px;
}

.our_blogs .owl-carousel .owl-nav button.owl-next::before,
.our_blogs .owl-carousel .owl-nav button.owl-prev::before {
    filter: brightness(0) invert(1);
}

.contact_us {
    border-radius: 0 0 24px 24px;
    background-image: url(../img/contact-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.contact_us::before {
    position: absolute;
    left: 0;
    top: 0;
    content: ' ';
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.48) 100%);
    z-index: -1;
}

.contact_us .main_heading h2 {
    color: var(--Base-White);
}

.contact_us .main_heading h6 {
    color: var(--slate-200);
}

.contact_us .contact_card {
    padding: 24px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
}

.contact_us .contact_card .top_heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact_us .contact_card .top_heading h3,
.contact_us .contact_card .top_heading p {
    color: var(--Base-White);
}

.contact_us .contact_card .form_block {
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact_us .contact_card .form_block .input_inr {
    position: relative;
    z-index: 0;
}

.contact_us .contact_card .form_block .form-control {
    font: normal normal 400 16px/24px var(--font);
    color: var(--slate-200);
    letter-spacing: -0.4px;
    padding: 10px 16px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.48);
    border: none;
    resize: none;
}

.contact_us .contact_card .form_block .input_inr:has(span) .form-control {
    padding-left: 44px;
}

.contact_us .contact_card .form_block .form-control::placeholder {
    color: var(--slate-200);
    opacity: 1;
}

.contact_us .contact_card .form_block .input_inr span {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    height: 36px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_us .contact_card .form_block .input_inr span img {
    width: 20px;
    height: auto;
}

.contact_us .contact_card .intrested_in {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact_us .contact_card .intrested_in h5 {
    color: var(--Base-White);
}

.contact_us .contact_card .intrested_in .intrested_check {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact_us .contact_card .form-check {
    min-height: auto;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact_us .contact_card .form-check .form-check-input {
    margin: 0;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background-color: transparent;
    border: 1px solid var(--slate-300);
    box-shadow: none;
}

.contact_us .contact_card .form-check-input:checked {
    background-color: #1570EF;
    border-color: #1570EF;
}

.contact_us .contact_card .form-check-input:checked[type=radio] {
    background-image: url(../img/check.svg);
    background-size: 16px;
    background-repeat: no-repeat;
}

.contact_us .contact_card .form-check label {
    font: normal normal 400 16px/24px var(--font);
    color: var(--Base-White);
    letter-spacing: -0.4px;
}

.contact_us .contact_card .btn_white {
    width: 100%;
    margin-top: 8px;
}

.contact_us .google_map iframe {
    width: 100%;
    height: 612px;
    border-radius: 16px;
    border: 2px solid var(--Base-White);
    display: block;
}

.footer {
    padding: 72px 0 32px;
}

.footer .footer_wrpr {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer .footer_wrpr .ftr_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .footer_wrpr .ftr_top img {
    width: auto;
    height: 74px;
}

.footer .footer_wrpr .ftr_top .partners {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer .footer_wrpr .divider {
    width: 100%;
    height: 1px;
    background-color: var(--slate-300);
}

.footer .footer_wrpr .ftr_center {
    display: grid;
    grid-template-columns: 514px auto;
    gap: 62px;
}

.footer .footer_wrpr .mailchimp_signUp {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer .footer_wrpr .mailchimp_signUp .mainchimp_form {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer .footer_wrpr .mailchimp_signUp .input_inr {
    position: relative;
    z-index: 0;
    width: 100%;
}

.footer .footer_wrpr .mailchimp_signUp .input_inr .form-control {
    font: normal normal 400 14px / 20px var(--font);
    color: var(--slate-950);
    letter-spacing: 0.035px;
    padding: 11px 16px 11px 44px;
    border-radius: 8px;
    border: 1px solid #D7DAE0;
    background: var(--slate-100);
}

.footer .footer_wrpr .mailchimp_signUp .input_inr .form-control::placeholder {
    color: #667085;
    opacity: 1;
}

.footer .footer_wrpr .mailchimp_signUp .mainchimp_form span {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    height: 36px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .footer_wrpr .mailchimp_signUp .mainchimp_form span img {
    width: 20px;
    height: auto;
}

.footer .footer_wrpr .mailchimp_signUp .mainchimp_form .btn {
    padding: 10px 18px;
}

.footer .footer_wrpr .ftr_menus {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer .footer_wrpr .ftr_links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer .footer_wrpr .ftr_links h4 {
    color: var(--slate-950);
}

.footer .footer_wrpr .ftr_links ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer .footer_wrpr .ftr_links ul li {
    font: normal normal 400 18px/28px var(--font);
    letter-spacing: -0.45px;
}

.footer .footer_wrpr .ftr_links ul li span {
    font-weight: 500;
    color: var(--slate-800);
}

.footer .footer_wrpr .ftr_links ul li a {
    color: var(--slate-700);
    text-decoration: none;
    display: block;
    transition: .3s all ease-out;
}

.footer .footer_wrpr .ftr_links ul li a[href]:hover {
    color: var(--Primary);
    text-decoration: underline;
}

.footer .footer_wrpr .ftr_btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -16px;
}

.footer .footer_wrpr .ftr_btm p {
    color: var(--slate-700);
}

.footer .footer_wrpr .social_info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer .footer_wrpr .social_info a {
    width: 42px;
    height: 42px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--slate-200);
    background: var(--slate-100);
    transition: .3s all ease-out;
}

.footer .footer_wrpr .social_info a:hover {
    background: var(--Primary);
}

.footer .footer_wrpr .social_info a img {
    width: 24px;
    height: auto;
    transition: .3s all ease-out;
}

.footer .footer_wrpr .social_info a:hover img {
    filter: brightness(0) invert(1);
}