/*
Theme Name: Donations 2 feed
Theme URI: https://wordpress.org/themes/twentytwenty/
Template: twentytwenty
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
Tags: blog,one-column,custom-background,custom-colors,custom-logo,custom-menu,editor-style,featured-images,footer-widgets,full-width-template,rtl-language-support,sticky-post,theme-options,threaded-comments,translation-ready,block-patterns,block-styles,wide-blocks,accessibility-ready
Version: 3.0.1770887872
Updated: 2026-02-12 09:17:52
*/
/* ************************* Global ************************* */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary: #2D6B97;
    --secondary: #CD4D50;
    --accent: #CE983C;
    --white: #fff;
    --bg-primary: #f9f9f9;
    --black: #000;
    --base: #535862;
    --title-font: "Lato", sans-serif;
    --body-font: "Noto Serif", serif;
    --base-transition: all .3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    line-height: 1.5;
    font-family: var(--body-font);
    min-height: 100svh;
    color: var(--base);
}

img {
    vertical-align: top;
    width: 100%;
    height: auto;
}

body a {
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    color: currentColor;
    display: inline-block;
}

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

p {
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0 !important;
}

.h--1,
h1 {
    font-size: 60px;
    line-height: 1.2;
}

.h--2,
h2 {
    font-size: 48px;
    line-height: 1.2;
}

.h--3,
h3 {
    font-size: 36px;
    line-height: 1.2;
}

.h--4,
h4 {
    font-size: 30px;
    line-height: 1.2;
}

.h--5,
h5 {
    font-size: 24px;
    line-height: 1.2;
}

.h--6,
h6 {
    font-size: 20px;
    line-height: 1.2;
}

.text--primary {
    color: var(--primary);
}

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

.text-xl {
    font-size: 18px;
    line-height: 1.5;
}

section {
    padding-block: 80px;
    padding-inline: 20px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.block {
    display: flex;
    flex-direction: column;
}

.gap-m {
    gap: 4rem;
}

.grid {
    display: grid;
    grid-template-rows: 1fr;
}

.title-tag {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 8px;
    font-weight: 600;
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.5;
}

.title-tag::after {
    content: '';
    position: absolute;
    background: currentColor;
    width: 60px;
    height: 2px;
    border-radius: 4px;
    left: 0;
    bottom: 0;
}

.btn-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    padding: .8em 1.5em;
    text-decoration: none;
    transition: all .3s ease;
    border-radius: 4px;
    font-size: 17px;
    border: 2px solid transparent;
    font-weight: 600;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--secondary);
    color: var(--black);
    border-color: var(--secondary);
}

.btn-white {
    color: var(--primary);
    background: var(--white);
}

.btn-white:hover {
    color: var(--white);
    background: var(--accent);
}

.btn-secondary {
    background: var(--secondary);
    /* color: var(--black); */
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.grid-intro {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.intro {
    max-width: 768px;
    margin-inline: auto;
    gap: 1.5em;
}

.text--center .title-tag::after {
    left: 50%;
    transform: translateX(-50%);
}

.play_btn::before,
.play_btn::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #ffd;
    border-radius: 50%;
    box-shadow: 0 0 0 0 var(--white);
    animation: button-ripple 3s infinite;
    opacity: 0.6;
    z-index: 0;
}

.play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    border-radius: 50%;
    z-index: 3;
}

.play_btn::after {
    animation-delay: 0.3s;
}

.play_btn::before {
    animation-delay: 0.9s;
}

@keyframes button-ripple {
    70% {
        box-shadow: 0 0 0 35px var(--white);
        opacity: 0;
    }

    100% {
        box-shadow: 0 0 0 0 var(--white);
        opacity: 0;
    }
}

/* ******************* form********************** */
body .gform_wrapper .top_label .gfield_label {
    font-size: 16px;
    line-height: 26px;
    margin-top: 0;
}

body .gform_wrapper .gform_fields .gchoice label {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
}

body .gform_wrapper .gform_fields .ginput_container_checkbox {
    padding-top: 10px;
}

body .gform_wrapper .gform_fields .gfield_checkbox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-bottom: 20px;
}

body .gform_wrapper .gform_fields .gchoice {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
}

body .gform_wrapper .ginput_complex label {
    font-size: 16px;
    line-height: 26px;
    color: var(--black);
    font-weight: 400;
    text-align: left;
}

body .gform_wrapper .gform_fields .gchoice input[type="checkbox"],
body .gform_wrapper .gform_fields .gchoice input[type="radio"] {
    width: 20px;
    height: 20px;
    padding: 0;
    border-radius: 4px;
    border: 1px solid var(--primary);
    margin-top: 2px;
}

body .gform_wrapper .gfield select,
body .gform_wrapper .gfield input,
body .gform_wrapper .gfield textarea {
    position: relative;
    display: block;
    width: 100%;
    border: 1px solid #ddd;
    font-size: 16px;
    color: var(--black);
    padding: 10px 16px;
    transition: all 500ms ease;
    line-height: 28px;
    height: auto;
    border-radius: 8px;
    box-shadow: none;
    outline: none !important;
    background-color: var(--white);
}

body .gform_wrapper .gfield input::placeholder,
body .gform_wrapper .gfield textarea::placeholder {
    opacity: 0.5;
}

body .gform_wrapper .gform_fields .gchoice input[type="radio"] {
    border-radius: 50%;
}

body .gform_wrapper .gform_fields .gchoice input[type="checkbox"]::before,
body .gform_wrapper .gform_fields .gchoice input[type="radio"]::before {
    top: 2px;
    position: absolute;
    left: 2px;
    color: var(--secondary) !important;
}

body .gform_wrapper .gform_fields .gchoice input[type="radio"]::before {
    top: 4px !important;
    left: 4px !important;
    background-color: var(--secondary) !important;
    width: 10px;
    height: 10px;
}

.gform_wrapper .gform_fields .gchoice input[type="checkbox"]::before {
    top: 2px;
    position: absolute;
    left: 2px;
    color: var(--secondary);
    font-size: 14px;
}

.gform_wrapper form .gform_body .gform_fields fieldset legend {
    font-weight: 600;
}

body .gform_wrapper .gfield_required {
    font-size: .9em;
    color: var(--primary);
}

body .gform_wrapper .gfield textarea {
    height: 180px;
    min-height: unset;
    min-block-size: unset !important;
}

.gform_wrapper form .gform_body .gform_fields .gfield--type-phone,
.gform_wrapper form .gform_body .gform_fields .gfield--type-email {
    width: calc(50% - 12px);
}

body .gform_wrapper .gform_fields {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gform_wrapper form .gform_body .gform_fields fieldset .ginput_container--name {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin: 0px;
}

.gform_wrapper form .gform_body .gform_fields fieldset .ginput_container--name span {
    padding: 0px;
}

body .gform_wrapper .gfield {
    width: 100%;
}

.gform_wrapper .gform_confirmation_message {
    border: 1px solid var(--color-secondary);
    padding: 10px 20px;
}

body .gform_wrapper .gform_validation_errors {
    display: none !important;
}

.gform-footer input[type="submit"] {
    padding: .8em 1.5em !important;
    text-decoration: none !important;
    transition: all .3s ease !important;
    border-radius: 4px !important;
    font-size: 17px !important;
    border: 2px solid transparent !important;
    font-weight: 600 !important;
    display: inline-block !important;
    text-align: center !important;
    background: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary) !important;
    font-family: var(--body-font) !important;
    opacity: 1 !important;
}

.gform-footer input[type="submit"]:hover {
    background: var(--secondary) !important;
    color: var(--black) !important;
    border-color: var(--secondary) !important;
}

/* ******************* form********************** */
/* ************************* Global ************************* */
/******************* header *******************/
.site_header {
    padding: 20px;
    position: fixed;
    transition: all .3s linear;
    top: 0;
    z-index: 99;
    background: transparent;
    width: 100%;
}

.site_header .header_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
    position: relative;
}

.site_header .header_logo {
    position: relative;
    z-index: 4;
    width: 18%;
}

.site_header .header_logo img {
    height: 70px;
    width: 100%;
    object-fit: contain;
    /* border-radius: 38px 38px 0px 0px; */
}

.site_header .header_menu .nav-menu {
    list-style: none;
}

@media (min-width:1025px) {
    .site_header .header_menu {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin-left: auto;
    }

    .site_header .header_row>.btn_wrap {
        width: auto;
        display: flex;
        justify-content: flex-end;
    }

    .site_header .btn_wrap a {
        margin-left: auto;
    }

    .site_header .header_menu .nav-menu {
        display: flex;
        margin: 0;
        gap: 40px;
        align-items: center;
        justify-content: center;
    }

    .site_header .header_menu .mega_menu.menu-item-has-children:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: visible !important;
        display: flex;
        pointer-events: all;
    }

    .site_header .header_menu ul.nav-menu>li>a {
        position: relative;
        line-height: 1.5;
        display: inline-block;
        font-size: 16px;
        color: var(--black);
        font-family: var(--title-font);
        font-weight: 600;
    }

    .site_header .header_menu .nav-menu li a:hover {
        color: var(--primary);
    }
}

.site_header .header_menu ul.nav-menu>li.menu-item-has-children {
    display: flex;
    gap: 6px;
    align-items: center;
    transition: all .3s ease-in-out;
    flex-wrap: wrap;
    cursor: pointer;
}

@media(max-width:1024px) {

    .header_menu__wrap,
    .site_header .header_row .btn-wrap {
        display: none;
    }

    .site_header .header_logo {
        width: auto;
    }

    body .mobile_toggle_icon {
        display: flex;
    }

    .pricing_plans_section .pricing_plans_wrapper .pricing_plan.best {
        scale: 1;
        margin-inline: 0px;
        order: -1;
        max-width: 493px;
        margin: auto;
        grid-column: 1/-1;
    }
}

.mobile_toggle_icon.active span {
    background-color: var(--primary) !important;
}

.header_mobile-menu {
    display: flex !important;
    position: fixed;
    width: 100vw;
    left: 100%;
    right: 0;
    background-color: var(--white);
    height: 100%;
    top: 0;
    padding-top: 100px;
    padding-inline: 25px;
    padding-bottom: 40px;
    transition: var(--base-transition);
}

.header_mobile-menu .btn_wrap a {
    background: var(--primary) !important;
    color: var(--white) !important;
    border: 1px solid var(--primary) !important;
}

.header_mobile_menu__wrap {
    overflow: auto;
    width: 100%;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.site_header .header_logo {
    width: auto;
}

.mobile_toggle_icon {
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
    display: none;
}

.header_menu .mobile_toggle_icon span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--white);
    border-radius: 9px;
    opacity: 1;
    transform: rotate(0.1deg);
    transition: .25s ease-in-out;
    left: 0;
}

.site_header.custom_sticky .header_menu .mobile_toggle_icon span {
    background: var(--primary);
}

.header_menu .mobile_toggle_icon span:nth-of-type(1) {
    top: 0px;
}

.header_menu .mobile_toggle_icon span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
}

.header_menu .mobile_toggle_icon span:nth-of-type(3) {
    top: 100%;
    transform: translateY(-100%);
}

.header_menu .mobile_toggle_icon.active span:nth-of-type(2) {
    opacity: 0;
}

.header_menu .mobile_toggle_icon.active span:nth-of-type(1) {
    transform: translate(-50%, -50%) rotate(45deg);
    top: 50%;
    left: 50%;
}

.header_menu .mobile_toggle_icon.active span:nth-of-type(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
    top: 50%;
    left: 50%;
}

.header_open .header_mobile-menu {
    left: 0;
}

.header_mobile-menu .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1em;
    font-weight: 500;
}

.header_mobile-menu .btn_wrap {
    margin-top: 30px;
}

.header_mobile-menu .header_mobile_menu__wrap .btn-wrap {
    display: flex !important;
}

body.header_open {
    overflow: hidden;
}

.header_mobile-menu ul.nav-menu>li>a {
    color: var(--primary) !important;
}

.header_mobile-menu .nav-menu a[aria-current="page"] {
    color: var(--primary) !important;
}

header:not(.custom_sticky) .btn_wrap a {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.site_header .header_menu ul.nav-menu>li>a:hover::after {
    width: 100%;
}

.site_header .header_menu ul.nav-menu>li>a::after {
    content: '';
    position: absolute;
    background: currentColor;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -0.17em;
    transition: var(--base-transition);
    transform-origin: left;
}

.site_header .menu-item-has-children li {
    width: 100%;
}

body .site_footer .inner_wrap .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
    flex-basis: unset !important;
}

/* ********* */
.site_header.custom_sticky,
.page-template-parter .site_header,
.page-template-help .site_header,
.page-template-store-location .site_header {
    background: var(--white) !important;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.page-template-parter .site_header:not(.custom_sticky) .header_menu ul.nav-menu>li>a,
.page-template-help .site_header:not(.custom_sticky) .header_menu ul.nav-menu>li>a,
.page-template-store-location .site_header:not(.custom_sticky) .header_menu ul.nav-menu>li>a {
    color: var(--black);
}

.site_header:not(.custom_sticky) .header_menu ul.nav-menu>li>a {
    color: var(--white);
}

.page-template-parter .site_header:not(.custom_sticky) .header_menu__wrap .nav-menu>li.mega_menu>span.sub-arrow,
.page-template-parter .site_header:not(.custom_sticky) .header_mobile-menu .nav-menu>li.mega_menu>span.sub-arrow,
.page-template-help .site_header:not(.custom_sticky) .header_menu__wrap .nav-menu>li.mega_menu>span.sub-arrow,
.page-template-help .site_header:not(.custom_sticky) .header_mobile-menu .nav-menu>li.mega_menu>span.sub-arrow,
.page-template-store-location .site_header:not(.custom_sticky) .header_menu__wrap .nav-menu>li.mega_menu>span.sub-arrow,
.page-template-store-location .site_header:not(.custom_sticky) .header_mobile-menu .nav-menu>li.mega_menu>span.sub-arrow {
    filter: unset;
}

.site_header:not(.custom_sticky) .header_menu__wrap .nav-menu>li.mega_menu>span.sub-arrow,
.site_header:not(.custom_sticky) .header_mobile-menu .nav-menu>li.mega_menu>span.sub-arrow {
    filter: invert(1);
}

/* ********* */
/******************* header *******************/
/* ************************** mega menu ************************** */
.site_header .header_menu .mega_menu>ul.sub-menu {
    position: absolute;
    top: 80px;
    left: 50%;
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.09);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    display: flex;
    transition: 0.3s all ease-in-out;
    min-width: 1010px;
    padding: 20px;
    margin: auto;
    transform: translateX(-50%);
    z-index: 10;
    list-style: none;
    gap: 20px;
    pointer-events: none;
    max-width: 1010px;
}

.site_header .header_menu .mega_menu>ul.sub-menu:before {
    content: "";
    position: absolute;
    height: 50px;
    width: 100%;
    top: -42px;
    background-color: #ffffff00;
    left: 0px;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left {
    width: 50%;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right {
    width: 50%;
    text-align: left;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right .btn:hover a {
    color: var(--black);
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right>ul.sub-menu {
    list-style: none;
    text-align: left;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: #012d760d;
    border-radius: 8px;
    padding: 20px 20px;
    gap: 15px;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right .mega_menu_img {
    width: 100%;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right>a {
    display: none;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right .mega_menu_img img {
    max-width: 100%;
    object-fit: cover;
    width: 100%;
    border-radius: 5px;
    margin: auto;
    /* height: auto; */
    aspect-ratio: 435/280;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right .mega_menu_content a {
    color: var(--text) !important;
    text-align: left;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right .btn_wrap a {
    color: var(--white);
    background-color: var(--primary);
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right .btn_wrap a:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>a {
    display: none;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu {
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>a {
    display: none;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu .sub_mega_item>a {
    display: flex;
    padding: 15px 50px 15px 15px !important;
    background-image: url(/wp-content/uploads/2026/02/caret-double-right.svg);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center right 20px;
    color: var(--primary);
    font-size: 16px;
    line-height: 22px;
    border-radius: 5px;
    gap: 10px;
    font-weight: 600;
    flex-wrap: wrap;
    align-items: center;
    transition: var(--base-transition);
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu .sub_mega_item>a:hover {
    background-position: center right 12px;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu .sub_mega_item>a>img {
    max-width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    width: 100%;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu .sub_mega_item>a>div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu .sub_mega_item>a>div>span {
    font-size: 14px;
    color: var(--base);
    font-weight: 400;
    line-height: 1.3;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu .sub_mega_item>a>div>strong {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu .sub_mega_item>a:hover {
    background-color: #012d760d;
}

.site_header .header_menu .mega_menu_left-inner>.sub-menu .sub_mega_item>a .menu-description {
    display: block;
    color: var(--text);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-transform: none;
}

.site_header .header_menu__wrap .nav-menu>li.mega_menu>span.sub-arrow,
.site_header .header_mobile-menu .nav-menu>li.mega_menu>span.sub-arrow {
    width: 20px;
    height: 20px;
    background-image: url(/wp-content/uploads/2026/02/arrow-down-svgrepo-com.svg) !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    display: block !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.site_header .header_menu__wrap .nav-menu>li.mega_menu:hover>.sub-arrow {
    transform: rotate(180deg);
}

.site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right .btn {
    width: auto;
}

/* ************************** mega menu ************************** */
/* ************************** mega menu responsive  ************************** */
@media(max-width:1024px) {
    .site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_right {
        display: none;
    }

    .site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left {
        width: 100%;
    }

    .site_header .header_mobile-menu .nav-menu>li.mega_menu>span.sub-arrow {
        filter: brightness(0) saturate(100%) invert(33%) sepia(100%) saturate(361%) hue-rotate(161deg) brightness(90%) contrast(86%) !important;
    }

    .site_header .header_mobile-menu .nav-menu>li.mega_menu:hover>span.sub-arrow {
        filter: brightness(0) saturate(100%) invert(78%) sepia(94%) saturate(3877%) hue-rotate(322deg) brightness(83%) contrast(94%) !important;
    }

    .site_header .header_mobile-menu .nav-menu>li.mega_menu>span.sub-arrow.active {
        transform: rotate(-180deg);
    }

    .site_header .header_menu .mega_menu>ul.sub-menu {
        position: static;
        pointer-events: unset !important;
        min-width: auto;
        padding: 10px 20px;
        transform: unset;
        gap: 15px;
        margin: 0px 0px 10px 0px;
        max-width: 500px;
        box-shadow: unset;
        width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
        height: 100%;
        transform: none;
        transition: none;
    }

    .site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu .sub_mega_item>a {
        padding: 10px 45px 10px 10px !important;
        background-color: unset;
    }

    .site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu {
        gap: 5px;
    }

    /* ******* */
    body .site_header .header_mobile_menu__wrap ul.nav-menu>li.menu-item-has-children {
        position: relative;
    }

    body .site_header .header_mobile_menu__wrap ul.nav-menu>li {
        width: fit-content;
    }

    body .site_header .header_mobile_menu__wrap ul.nav-menu>li>a::after {
        display: none;
    }

    body .site_header .header_mobile_menu__wrap ul.nav-menu>li>a:hover {
        color: var(--accent) !important;
    }
}

/* ************************** mega menu responsive  ************************** */
@media(max-width:768px) {
    .site_header {
        padding: 14px 20px;
    }

    .site_header .header_logo img {
        height: 56px;
    }
}

@media(max-width:575px) {
    .site_header .header_menu .mega_menu>ul.sub-menu>.mega_menu_left>.sub-menu .mega_menu_left-inner>.sub-menu .sub_mega_item>a>img {
        display: none;
    }
}

/* ******************* Home banner *********************** */
.home_banner_sec {
    min-height: calc(80svh - 110px);
    overflow: hidden;
}

.home_banner_sec::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(45deg, black, transparent);
    background: #000;
    opacity: 0.7;
}

.home_banner_sec .container {
    padding-top: 120px;
}

.home_banner_sec .home_banner_row {
    grid-template-columns: 1fr 40%;
    align-items: center;
    position: relative;
    z-index: 1;
}

.home_banner_inner {
    gap: 30px;
    max-width: 768px;
}

.home_banner_inner .home_banner_intro {
    color: var(--white);
}

.home_banner_inner .home_banner_content {
    font-weight: 400;
    max-width: 550px;
    margin-top: 20px;
    line-height: 1.5;
    /* margin-inline: auto; */
}

.home_banner_inner .home_banner_form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home_banner_form .home_banner_form-desc {
    color: var(--white);
}

.home_banner_form .home_banner_form-desc a {
    color: var(--secondary);
}

.home_banner_form .home_banner_form-desc a:hover {
    color: var(--white);
}

/* * */
.home_banner_sec .gf_progressbar_wrapper,
.home_banner_sec .gform_wrapper .gform-body .field_description_below .gfield_validation_message,
.home_banner_sec .gform_wrapper .gform_validation_errors {
    display: none;
}

.home_banner_sec .gform_wrapper.gravity-theme .gf_progressbar_blue {
    background: #f9f9f9;
}

.home_banner_sec .gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_blue {
    background-color: var(--var-accent)
}

.home_banner_sec .gform_wrapper p {
    margin-bottom: 0;
    color: var(--white);
}

.home_banner_sec .gform_wrapper .gform-body #gform_page_2_1 {
    position: relative;
}

.home_banner_sec .gform_wrapper .gform-body #gform_page_2_1 .field_description_below {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 7px 7px 24px !important;
    background-color: var(--white);
    border-radius: 50px;
    border: 1px solid transparent;
}

.home_banner_sec .gform_wrapper .gform-body #gform_page_2_1 .field_description_below.gfield_error {
    border-color: #ff2e00;
}

.home_banner_sec .gform_wrapper .gform-body .field_description_below .gfield_label.gform-field-label {
    display: none !important;
}

.home_banner_sec .gform_wrapper #gform_page_2_1 .ginput_container.ginput_container_text {
    width: 61%;
}

.home_banner_sec .gform_wrapper input[type=button] {
    width: 150px;
}

.home_banner_sec .gform_wrapper #gform_page_2_1 .ginput_container.ginput_container_text input {
    border: none !important;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    background-color: var(--white);
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    font-family: "Ubuntu", sans-serif;
    color: #202020;
    padding: 0;
    height: 40px;
    margin: 0;
    border: none !important;
    background-color: rgba(0, 0, 0, 0);
    outline: none !important;
    box-shadow: unset !important;
}

.home_banner_sec .gform_wrapper .gform-body #gform_page_2_1 .gform_page_footer {
    position: absolute;
    top: 50%;
    right: 6px;
    margin: 0;
    padding: 0;
    transform: translateY(-50%);
}

.home_banner_sec .gform_wrapper input[type="button"],
.home_banner_sec .gform_wrapper input[type="submit"],
.agent_no_results button[type="button"] {
    background-color: var(--accent) !important;
    color: var(--white);
    position: relative;
    line-height: 24px !important;
    transition: all 0.3s ease-in-out !important;
    text-transform: uppercase !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 10px 25px !important;
    border: 0;
    border-radius: 50px !important;
    margin: 0;
    text-decoration: none !important;
    outline: none !important;
    width: 150px !important;
}

.home_banner_sec .gform_wrapper input[type=button]:hover,
.home_banner_sec .gform_wrapper input[type=submit]:hover,
.agent_no_results button[type=button]:hover {
    background-color: var(--primary) !important;
}

.home_banner_sec .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container .gfield_checkbox .gchoice label::before {
    border: 1px solid #fff;
}

.home_banner_sec .gform_wrapper form .gform-body .gform_fields .gfield .ginput_container .gfield_checkbox .gchoice label::after {
    top: 2px;
    left: 3px;
    font-size: 12px;
}

.home_banner_sec .gform_wrapper .gform-field-label {
    display: none !important;
}

.home_banner_sec .gform_wrapper #gform_page_2_2 input {
    /*     padding: 14px 20px !important; */
    border: 1px solid transparent;
    border-radius: 4px;
}

.home_banner_sec .gform_wrapper #gform_page_2_2 [type=button] {
    background: #fff;
    color: var(--accent);
}

.home_banner_sec .gform_wrapper .gfield_checkbox label {
    color: #fff;
    padding-left: 10px;
    display: inline-block !important;
    width: 90%;
}

.home_banner_sec .gform_wrapper.gravity-theme .gfield_error input {
    border: 1px solid #ff2e00 !important;
}

.home_banner_sec .gform_wrapper.gravity-theme .gfield.gfield--width-full {
    border: 0 !important;
}

/* * */
.hero-sec_video {
    max-width: 558px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hero-sec_video a {
    position: relative;
    display: block;
}

.hero-sec_video a img {
    width: 100%;
    height: auto;
    /* object-fit: cover; */
    /* min-height: 260px; */
    /* aspect-ratio: 480/320; */
    /* transform: scale(1); */
}

.home_banner_row:not(:has(.hero-sec_video)) {
    grid-template-columns: 1fr;
}

.home_banner_row:not(:has(.hero-sec_video)) .btn-wrap {
    justify-content: center;
}

.home_banner_row:not(:has(.hero-sec_video)) .home_banner_inner {
    margin: auto;
}

.home_banner_row:not(:has(.hero-sec_video)) .title-tag::after {
    left: 50%;
    transform: translateX(-50%)
}

.home_banner_row:has(.hero-sec_video) .home_banner_intro {
    margin: 0px;
}

.home_banner_row:not(:has(.hero-sec_video)) .home_banner_inner .home_banner_intro {
    align-items: center;
    text-align: center;
}

.home_banner_row:not(:has(.hero-sec_video)) .home_banner_inner .home_banner_form .home_banner_form-desc {
    text-align: center;
}

.home_banner_row:not(:has(.hero-sec_video)) .home_banner_inner .home_banner_content {
    margin-inline: auto;
}

.hero-sec {
    padding-block: 60px;
    min-height: unset;
}

/* ******************* Home banner *********************** */
.map-info_sec .map-info__row {
    gap: 30px;
}

/* ******************* Our Partners *********************** */
.our-partners {
    background: linear-gradient(to top, #fff 70%, #f9f9f9);
}

.our-partners .our-partners_inner {
    justify-content: center;
    align-items: stretch;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    row-gap: 26px;
}

.partners-item .partners-item_content a {
    color: var(--secondary);
}

.partners-item .partners-item_content a:hover {
    color: var(--primary);
}

.our-partners .our-partners_inner .partners-item {
    width: 20%;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 14px;
    flex-direction: column;
    padding: 0px 28px;
    border-right: 2px solid var(--accent);
    position: relative;
    justify-content: center;
}
.ribbon {
	--r: .8em;
	padding-inline: calc(var(--r) + .3em);
	clip-path: polygon(0 0,100% 0,calc(100% - var(--r)) 50%,100% 100%,0 100%, var(--r) 50%);
	background: var(--secondary);
	width: 100%;
	min-height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	max-width: 218px;
	margin: auto;
	font-size: 16px;
	line-height: 1.2;
}
.our-partners .btn_wrap {
    text-align: center;
}

.our-partners .our-partners_inner .partners-item:last-child {
    border: 0px;
}

.our-partners .our-partners_inner .partners-item .partners-item_img img {
    object-fit: contain;
    height: 50px;
}

/* .partners-item .partners-item_content {
    min-height: 54px;
} */
/* ******************* Our Partners *********************** */

/* ******************* Counter *********************** */
.counter-sec {
    background: var(--bg-primary);
}

.counter_inner {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: auto;
    width: 100%;
}

.counter_inner .counter-card {
    width: calc(33.33% - 20px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    justify-content: center;
}

.counter-card .counter-card_number {
    font-size: 44px;
    font-weight: 800;
    color: var(--accent);
}

.counter_inner .counter-card:nth-child(2) .counter-card_number {
    color: var(--primary);
}

.counter_inner .counter-card:nth-child(3) .counter-card_number {
    color: var(--secondary);
}

.counter-sec .btn_wrap {
    display: flex;
    justify-content: center;
}

/* ******************* Counter *********************** */

/* ******************* Our Process *********************** */
.our_process {
    background-color: var(--bg-primary);
}

.our_process_inner {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.process-card {
    display: flex;
    flex-direction: column;
    background-color: #f0f0f0;
    border-radius: 10px;
    width: calc(33.33% - 20px);
    max-width: 500px;
}

.process-card .process-card_img-wrp {
    overflow: hidden;
    border-radius: 10px;
}

.process-card:hover .process-card_img-wrp img {
    transform: scale(1.08);
}

.process-card .process-card_img-wrp img {
    aspect-ratio: 380/300;
    object-fit: cover;
    transition: var(--base-transition);
}

.process-card_info {
    padding: 24px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.process-card_subtitle {
    color: var(--accent);
    font-size: 18px;
}

.our_process .btn_wrap {
    display: flex;
    justify-content: center;
}

.process-card .btn_wrap {
    margin-top: auto;
    padding: 0px 20px 24px 20px;
    display: block;
}

/* ******************* Our Process *********************** */
/* ******************* About *********************** */
.about-sec .about_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
}

.about-sec .about_row .about_right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* .about-sec .about_row .about_img-wrap {
    max-width: 550px;
} */
.about-sec .about_row .about_img-wrap .about_img {
    width: 100%;
    object-fit: contain;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
    padding: 5px;
    background-color: #fff;
    object-position: top;
    /* aspect-ratio: 568/500; */
}

@media(min-width: 1025px) {
    .about-sec .about_row .about_left {
        position: sticky;
        top: 150px;
    }
}

/* ******************* About *********************** */
/* *********************** Testimonail Card *********************** */
.testimonial-sec {
    background: var(--bg-primary);
}

.testimonial_list__bottm {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.testimonial_list__bottm .rating-container>a {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.testimonial_list__bottm .rating-container>a:hover {
    color: var(--accent);
}

.testimonial_list__bottm .rating-container>a .google-logo {
    width: 100%;
    text-align: center;
}

.testimonial_list__bottm .rating-container>a .google-logo img {
    max-width: 80px;
    vertical-align: middle;
    width: 100%;
}

.testimonial_list__bottm .rating-container>a .star-rating img {
    width: 22px;
    object-fit: contain;
    height: auto;
}

.testimonial_list__bottm .rating-container>a .star-rating {
    display: flex;
    width: 100%;
    margin: auto;
    gap: 3px;
}

.testimonial_list__bottm .rating-container>a .review-info {
    font-weight: 600;
    font-size: 16px;
    width: 100%;
}

.testimonial_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.tl-card__info {
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    flex-grow: 1;
}

.tl-card__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
    position: relative;
    flex-grow: 1;
}

.tl-card__info-title {
    font-weight: 600;
    margin-bottom: 1.2em;
    font-size: 20px;
    line-height: 1.5;
    z-index: 1;
    position: relative;
    padding-right: 73px;
}

.tl-card__info-desc {
    font-size: 17px;
    line-height: 1.5;
    z-index: 1;
    position: relative;
}

.tl-card__info>i {
    position: absolute;
    top: 0px;
    right: 20px;
    font-size: 78px;
    line-height: 1;
    color: #dee4eb;
}

.tl-card__author {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 12px 8px;
}

.tl-card__author-info {
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

span.tl-card__author-name {
    color: var(--color-primary);
    font-weight: 500;
}

span.tl-card__author-date {
    font-size: 14px;
    text-align: right;
}

.tl-card__author-rating {
    color: #f6bb06;
}

.tl-card__media {
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
    border-radius: 12px;
}

.tl-card__media img {
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
}

.tl-card {
    padding: 16px;
    background: #E4E4EA;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    width: calc(33.33% - 21.33px);
}

/* *********************** Testimonail Card *********************** */
/* *********************** faq *********************** */
.faq_sec .accordion_list {
    padding: 0;
    margin: auto;
    max-width: 1000px;
    width: 100%;
}

.faq_sec .accordion_list .accordion_item {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    background-color: #F9F9F9;
    margin: 0 auto 15px auto;
    border: 1px solid #eee;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
}

.faq_sec .accordion_list .accordion_item:last-child {
    margin: 0px;
}

.accordion_item_title.active:before {
    content: "-" !important;
}

.faq_sec .accordion_list .accordion_item .accordion_item_title::before {
    content: "+";
    color: var(--black);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    transition: var(--base-transition);
}

.faq_sec .accordion_list .accordion_item .accordion_item_title {
    padding: 15px 40px 15px 20px;
    font-size: 20px;
    line-height: 1.2;
}

.faq_sec .accordion_list .accordion_item div.answer {
    position: relative;
    padding: 0 50px 15px 20px;
}

.faq_sec .accordion_list .accordion_item div.answer ul {
    padding: 0;
}

.faq_sec .accordion_list .accordion_item div.answer ul li {
    border: 0;
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    margin-bottom: 8px;
}

.faq_sec .accordion_list .accordion_item div.answer ul li strong {
    font-weight: 600;
}

/* *********************** faq *********************** */
/* *********************** map *********************** */
.map_section {
    position: relative;
    /* padding: 0px 0px 60px 0px; */
    padding-top: 250px;
}

/* 
.map_section .container {
    height: 100%;
    max-width: 100%;
    padding: 0;
    width: 100%;
} */
.map_section .bg-map {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
}

.map_section .map_row {
    height: 100%;
    justify-content: end;
}

.map_section .bg-map iframe {
    position: relative;
    inset: 0;
    height: 100% !important;
    width: 100% !important;
}

.map_section .map_wrapper .intro {
    width: calc(60% - 12px);
    padding: 40px 0 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: unset;
    margin: 0px;
}

.map_section .map_wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 24px;
    background-color: var(--white);
    /* max-width: 1170px; */
    box-shadow: 0 10px 40px 10px rgba(0, 0, 0, .05);
    /* margin-top: -350px; */
    /* margin-left: auto;
    margin-right: auto; */
    /* width: calc(100% - 40px); */
}

.map_section .map_row .map_img-wrapper {
    width: calc(40% - 12px);
    position: relative;
}

.map_section .map_row .map_img-wrapper>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map_section .map_row .map_info_wrapper {
    position: absolute;
    bottom: 20px;
    left: 30px;
    right: 30px;
    z-index: 1;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.map_section .map_row .map_img-wrapper::after {
    position: absolute;
    content: "";
    background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, .95) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
}

.map_section .map_wrapper .intro-content ul {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    row-gap: 8px;
    margin-bottom: 20px;
    padding: 0;
}

.map_section .map_wrapper .intro-content ul li {
    position: relative;
    width: 33.333%;
    font-size: 16px;
    padding-left: 27px;
    margin: 0;
    list-style: none;
    font-weight: 300;
}

.map_section .map_wrapper .intro-content ul li:after {
    position: absolute;
    font-family: "FontAwesome";
    font-size: 16px;
    font-weight: 700;
    left: 0;
    top: 0;
    content: "\f058";
    color: var(--accent);
}

/* *********************** map *********************** */
/* *************************** About *************************** */
.about-sec__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.about-sec__info {
    gap: 1.5rem;
}

.about-sec__info ul li {
    list-style: none;
    position: relative;
    margin-bottom: 10px;
    display: flex;
    gap: 12px;
}

.about-sec__info ul li::before {
    content: "";
    display: block;
    background-image: url(/wp-content/uploads/2026/02/check-mark.svg);
    width: 1em;
    height: 1.625em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.about-sec__img {
    position: relative;
    padding-right: 24px;
    padding-bottom: 24px;
    max-width: 550px;
}

.about-sec__img img {
    position: relative;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    aspect-ratio: 548/450;
}

.about-sec__img::before {
    position: absolute;
    content: '';
    left: 20px;
    bottom: 0px;
    background: linear-gradient(0deg, #CD4D50 40%, #cd4d4f6e 100%);
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 10px;
}

.team-member__item {
    width: calc((100% / var(--column)) - (((var(--column) - 1) * var(--gap)) / var(--column)));
}

.team-member__list {
    --column: 3;
    --gap: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem var(--gap);
    align-items: stretch;
    justify-content: center;
}

.team-member__card-img img {
    aspect-ratio: 378/320;
    object-fit: cover;
}

.team-member__card {
    text-align: center;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px rgba(0, 54, 110, 0.15);
    border-bottom: 3px solid var(--primary);
    height: 100%;
}

.team-member__card-name {
    padding: 1.5rem 1rem;
    flex-grow: 1;
}

.team-member__card-name h3 {
    color: var(--primary);
}

.team-member__card-name span {
    font-weight: 400;
    display: block;
    color: var(--black);
    font-size: 1rem;
    margin-top: 0.2rem;
    margin-bottom: 1rem;
}

.know_more {
    margin-top: auto;
}

.know_more a {
    position: relative;
    color: var(--accent);
    font-family: var(--title-font);
    text-underline-offset: 0.25em;
    font-weight: 600;
}

.know_more a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: currentColor;
    left: 0;
    bottom: -3px;
    border-radius: 4px;
    transition: var(--base-transition);
}

.know_more a:hover::after {
    left: auto;
    right: 0;
    width: 0;
}

/* ################## ***** Benefit sec ***** ################### */
.benefit_inner {
    grid-template-columns: 48% 45%;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

.benefit_img_block img {
    object-fit: cover;
    position: absolute;
    border-radius: 24px;
    object-position: top center;
}

.benefit_inner__left {
    position: relative;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-block: 70px;
    max-width: 800px;
}

.benefit_img_block {
    width: 100%;
    position: absolute;
    height: 100%;
}

.benefit_img_block img:first-child {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: calc(50% - 10px);
    height: 90%;
}

.benefit_img_block img:nth-child(2) {
    width: 43%;
    right: 4%;
    top: 0;
    height: calc(50% - 10px);
}

.benefit_img_block img:nth-child(3) {
    width: calc(50% - 20px);
    right: 0;
    top: auto;
    bottom: 0;
    height: calc(50% - 10px);
}

.benefit_counter {
    background: var(--accent);
    z-index: 2;
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    margin: 0px 20px;
}

.number_cont_box {
    text-align: center;
}

.number_cont_box_inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    line-height: 1;
    gap: 10px;
    margin-bottom: 8px;
}

.number_cont_box_inner p {
    font-size: 36px;
    line-height: 1;
}

.number_cont_child:not(:last-child) {
    border-bottom: 1px solid currentColor;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.number_cont_box span {
    font-size: 17px;
}

.benefit_icon_box {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: flex-start;
}

.benefit_icon__wrap {
    border-radius: 50%;
    background: var(--primary);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
}

.benefit_icon__wrap img {
    height: 34px;
    width: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(38%) hue-rotate(254deg) brightness(110%) contrast(110%);
}

.benefit_icon_box_content {
    gap: 8px;
}

.benefit_inner__right {
    gap: 32px;
}

.benefit_icon_box_title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
}

.benefit_sec .benefit_row .desc_wrapper {
    border-left: 1px solid var(--accent);
    padding-left: 30px;
}

/* ################## ***** Benefit sec ***** ################### */
/* ################## ***** House ***** ################### */
.house_cta_sec {
    background-color: var(--bg-primary);
}

.house_cta_row {
    align-items: center;
    justify-content: space-between;
    grid-template-columns: 70% 1fr;
    gap: 30px;
}

.house_cta_left {
    grid-template-columns: 200px 1fr;
    align-items: center;
    gap: 24px;
}

.house_cta_left img {
    width: 100%;
    border-radius: 8px;
    max-width: 300px;
}

.house_cta_inner {
    gap: 10px;
}

.house_cta_title {
    font-size: 34px;
    line-height: 1.5;
    font-weight: 700;
}

.house_cta_right.block {
    align-items: end;
}

/* ################## ***** House ***** ################### */
/* *************************** About *************************** */
/* *************************** Contact *************************** */
/* ################## ***** Choose us ***** ################### */
.choose-us-sec .choose-us_map iframe {
    height: 500px !important;
    width: 100% !important;
}

.choose-us-sec .choose-us_row .choose-us_inner {
    grid-template-columns: 1fr 1fr;
}

.intro-content ul {
    padding-left: 22px;
    flex-wrap: wrap;
}

.intro-content ul li {
    list-style: disc;
    width: 100%;
}

.choose-us_inner .intro-content ul {
    margin-top: 20px !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.choose-us_inner .intro-content ul li {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.choose-us_inner .intro-content ul li .icon-bg {
    background: var(--primary);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
}

.choose-us_inner .intro-content ul li .contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.choose-us_inner .intro-content ul li .contact-list h6 {
    font-size: 20px;
    line-height: 1.2;
}

.choose-us_form .gform_wrapper .gfield_html h2 {
    font-size: 36px;
    line-height: 30px;
}

.choose-us_form .gform_wrapper .gfield_html {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.choose-us-sec .choose-us_inner .choose-us_form {
    background-color: #eee;
    padding: 30px;
    border-radius: 10px;
}

.page-template-contact-us .faq_sec {
    background: linear-gradient(to bottom, #f9f9f9 0%, #f9f9f9 30%, #ffffff 70%, #ffffff 100%);
}

/* ################## ***** Choose us ***** ################### */
/* *************************** Contact *************************** */
/* *************************** Thank you *************************** */
.details-sec .details-sec_row {
    grid-template-columns: 1fr 1fr;
}

.details-sec .details-sec_row .details-right,
.details-sec .details-sec_row .details-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.details-sec .details_inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.details_inner::before {
    content: "";
    border-left: 2px solid var(--accent);
    position: absolute;
    top: 5px;
    bottom: 5%;
    left: 12px;
}

.details-sec .details_inner .details-item {
    padding-left: 45px;
    position: relative;
    z-index: 2;
}

.details-sec .details_inner .details-item .details-item_count h6 {
    width: 26px;
    height: 26px;
    border-radius: 24px;
    background-color: var(--accent);
    color: var(--white);
    font-weight: 600;
    text-align: center;
    line-height: 26px;
    font-size: 12px;
    position: absolute;
    left: 0;
    top: 4px;
    font-variant: lining-nums;
}

.details-sec .details_inner .details-item .details-item_wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.details-sec_row .details-left .faq_sec {
    padding: 0px;
}

/* *************************** Thank you *************************** */
/* ************************** Footer ************************** */
.site-footer {
    background-color: #151414;
    color: var(--white);
    padding-block: 80px 30px;
    padding-inline: 20px;
}

.site-footer .site-footer_row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.site-footer .site-footer_row .site-footer_items {
    width: calc(33.33% - 20px);
}

.site-footer .site-footer_row .site-footer_items .widget_first {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer .site-footer_row .site-footer_items .widget_first .widget_media_image img {
    height: 70px !important;
    width: auto !important;
    object-fit: contain;
    aspect-ratio: unset !important;
}

.site-footer .site-footer_row .site-footer_items .widget_first p {
    max-width: 340px;
}

.site-footer .site-footer_row ul.wp-block-social-links {
    display: flex;
    align-items: flex-start;
    margin: 0px !important;
    padding: 20px 0px 0px 0px !important;
    gap: 20px;
}

.site-footer .site-footer_row ul.wp-block-social-links li {
    list-style: none !important;
}

.site-footer .site-footer_row ul.wp-block-social-links li a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent);
    border-radius: 50%;
    font-size: 24px;
}

.site-footer .site-footer_row ul.wp-block-social-links li:after {
    display: none !important;
}

.site-footer .site-footer_row ul.wp-block-social-links li a:hover {
    background-color: var(--primary);
}

.site-footer .site-footer_row ul.wp-block-social-links li:hover a,
body .site-footer .site-footer_row ul.wp-block-social-links li a:hover {
    color: var(--white) !important;
}

.site-footer .site-footer_row .site-footer_items h2 {
    font-size: 26px;
    margin: 0;
    line-height: 36px;
    margin-bottom: 20px;
}

.site-footer .site-footer_row .site-footer_items .widget_second {
    padding-left: 40px;
}

.site-footer .site-footer_row .site-footer_items ul {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer .site-footer_row .site-footer_items ul li::after {
    content: "";
    width: 7px;
    height: 7px;
    display: block;
    background-color: var(--white);
    position: absolute;
    left: -20px;
    top: 8px;
    transition: var(--base-transition);
}

.site-footer .site-footer_row .site-footer_items ul li {
    position: relative;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
}

.site-footer .site-footer_row .site-footer_items ul li a {
    color: var(--white);
}

.site-footer .site-footer_row .site-footer_items ul li a:hover {
    color: var(--accent) !important;
}

.site-footer .site-footer_row .site-footer_items ul li:has(a):hover::after {
    background-color: var(--accent);
}

.site-footer .site-footer_row .site-footer_items .widget_second .widget_media_image {
    padding-top: 26px;
}

.site-footer .site-footer_row .site-footer_items .widget_second img {
    max-width: 180px;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.site-footer_items .widget_third .contact_info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.site-footer .site-footer_row .site-footer_items li {
    list-style: none !important;
}

.site-footer_items .widget_third .contact_info>* {
    position: relative;
    padding-left: 32px;
}

.site-footer_items .widget_third .contact_info>div {
    display: flex;
}

.site-footer_items .widget_third .contact_info i {
    color: var(--accent);
    padding-right: 20px;
    font-size: 19px;
    padding-top: 4px;
    position: absolute;
    top: 0;
    left: 0;
    min-width: 40px;
    text-align: center;
}

.site-footer .copright_wrapper {
    margin-top: 45px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--white);
}

.site-footer .copright_wrapper .copyright_content {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 1.5;
    text-align: center;
    font-style: italic;
    opacity: 0.8;
}

/* ************************** Footer  ************************** */
/* popup */
.team_member_popup {
    display: none;
}

.team_member_popup .popup_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.team_member_popup .main_wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    transform: translateY(-50%) translateX(-50%);
    height: calc(100vh - 40px);
    display: flex;
    width: calc(100vw - 40px);
}

.team_member_popup .content_wrapper {
    max-width: 1200px;
    margin: auto;
    background-color: #fff;
    padding: 0;
    position: relative;
    width: 100%;
}

.team_member_popup .content_wrapper .close_popup {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-size: 32px;
    line-height: 20px;
}

.team_member_popup .content_wrapper .close_popup {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    font-size: 32px;
    line-height: 20px;
}

.team_member_popup .content_wrapper .popup_data {
    display: flex;
    box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.5);
}

.team_member_popup .content_wrapper .popup_data .member_img {
    width: 40%;
}

.team_member_popup .content_wrapper .popup_data .member_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team_member_popup .content_wrapper .popup_data .about_member {
    width: 60%;
    padding: 40px;
}

.team_member_popup .content_wrapper .popup_data .about_member .about_member__info {
    overflow-y: scroll;
    /*     scrollbar-width: none; */
}

.team_member_popup .content_wrapper .popup_data .about_member .about_member__info {
    overflow-y: scroll;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team_member_popup .content_wrapper .popup_data .about_member .about_member__info .about_member__position {
    color: var(--primary);
}

.team_member_popup .content_wrapper .popup_data .about_member .about_member__info .about_member_content {
    padding-top: 10px;
}

/* popup */
/* *************************** partners *************************** */
.supplier_sec {
    background: var(--bg-primary);
}

.page-template-parter .supplier_sec .container,
.page-template-help .our_process .container,
.page-template-store-location .map-info_sec .container {
    padding-top: 70px;
}

.supplier_sec .supplier_row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.supplier_card .supplier_card__link {
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    width: 100%;
    height: 100%;
}

.supplier_sec .supplier_card {
    font-weight: 600;
    padding: 15px 15px;
    border-radius: 10px;
    border: 2px solid #ddd;
    width: calc(25% - 18px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    position: relative;
}

.supplier_sec .supplier_card .supplier_card_img-wrap {
    margin: auto;
}

.supplier_sec .supplier_card .supplier_card_img-wrap .supplier_card_img {
    width: 100%;
    max-width: 200px;
    display: block;
    object-fit: contain;
    aspect-ratio: 200/100;
}

.supplier_sec .supplier_card .supplier_card_info .supplier_card_title {
    font-size: 20px;
}

/* *************************** partners *************************** */
/* *************************** Help *************************** */
.get_started {
    background: var(--bg-primary);
}

.get_started .get_started_row .intro-inner .get_started_title {
    /* 	font-family: "WhiteAngelica"; */
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 52px;
    line-height: 1.4;
    color: var(--primary);
}

.get_started .get_started_inner {
    position: relative;
    display: flex;
    justify-content: center;
}

.get_started .get_started_inner a .play_btn {
    position: relative;
    transform: unset;
    left: unset;
    top: unset;
}

.get_started .get_started_inner a {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--accent);
}

.get_started .get_started_inner a:hover {
    color: var(--primary);
}

.get_started_inner a .play_btn::before,
.get_started_inner a .play_btn::after {
    box-shadow: 0 0 0 0 var(--accent);
}

.get_started .get_started_row {
    max-width: 786px;
    margin: auto;
}

.get_started .get_started_row .gform-footer {
    display: flex;
    justify-content: center;
}

.get_started_form .gform_wrapper .gfield--type-html {
    display: none;
}

/* *************************** Help *************************** */
/* *************************** Report a Bin *************************** */
.gallery_section {
    background: var(--bg-primary);
}

.gallery_list {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
    display: grid;
    grid-template-rows: auto;
}

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

.gallery_list a:nth-child(1) {
    grid-column: span 2;
    height: 500px;
    grid-row: span 2;
}

.gallery_list a:nth-child(2) {
    grid-column: span 3;
    height: 300px;
}

.gallery_list a:nth-child(3) {
    height: 400px;
    width: calc(166% - 24px);
}

.gallery_list a:nth-child(4) {
    height: 400px;
    grid-column: span 2;
    width: calc(79% - 24px);
    margin-left: auto;
}

.gallery_list a:nth-child(5) {
    grid-column: span 2;
    margin-top: -224px;
    height: 280px;
}

.gallery_list a:nth-child(6) {
    grid-column: span 3;
    grid-row: span 2;
    height: 444px;
}

.gallery_list a:nth-child(7) {
    grid-column: span 2;
    margin-top: 0;
    height: 363px;
}

.gallery_list a {
    position: relative;
}

.gallery_list a::after {
    content: '';
    position: absolute;
    background: var(--black);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transition: var(--base-transition);
}

.gallery_list a:hover::after {
    opacity: 0.5;
}

.gallery_list a::before {
    position: absolute;
    content: '';
    pointer-events: none;
    mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgZmlsbD0iIzAwMDAwMCIgdmlld0JveD0iMCAwIDI1NiAyNTYiPjxwYXRoIGQ9Ik0yMTYsNDhWOTZhOCw4LDAsMCwxLTE2LDBWNjcuMzFsLTQyLjM0LDQyLjM1YTgsOCwwLDAsMS0xMS4zMi0xMS4zMkwxODguNjksNTZIMTYwYTgsOCwwLDAsMSwwLTE2aDQ4QTgsOCwwLDAsMSwyMTYsNDhaTTk4LjM0LDE0Ni4zNCw1NiwxODguNjlWMTYwYTgsOCwwLDAsMC0xNiwwdjQ4YTgsOCwwLDAsMCw4LDhIOTZhOCw4LDAsMCwwLDAtMTZINjcuMzFsNDIuMzUtNDIuMzRhOCw4LDAsMCwwLTExLjMyLTExLjMyWk0yMDgsMTUyYTgsOCwwLDAsMC04LDh2MjguNjlsLTQyLjM0LTQyLjM1YTgsOCwwLDAsMC0xMS4zMiwxMS4zMkwxODguNjksMjAwSDE2MGE4LDgsMCwwLDAsMCwxNmg0OGE4LDgsMCwwLDAsOC04VjE2MEE4LDgsMCwwLDAsMjA4LDE1MlpNNjcuMzEsNTZIOTZhOCw4LDAsMCwwLDAtMTZINDhhOCw4LDAsMCwwLTgsOFY5NmE4LDgsMCwwLDAsMTYsMFY2Ny4zMWw0Mi4zNCw0Mi4zNWE4LDgsMCwwLDAsMTEuMzItMTEuMzJaIj48L3BhdGg+PC9zdmc+');
    width: 100%;
    height: 100%;
    background: var(--white);
    mask-position: center;
    mask-repeat: no-repeat;
    opacity: 0;
    transform: scale(0);
    transition: var(--base-transition);
    z-index: 2;
    mask-size: 40px;
}

.gallery_list a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.gallery_list a .img_caption {
    position: absolute;
    bottom: 0;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.98);
    margin: 10px;
    left: 0;
    right: 0;
}

.gallery_list a .img_caption p {
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    text-overflow: ellipsis;
}

.report-sec .report_inner {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.report-sec .report_inner .report-card {
    width: calc(20% - 19.2px);
    position: relative;
    background: #f5f5f5;
    padding: 10px 10px 16px 10px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.report-card .report-card_img-wrap {
    overflow: hidden;
    border-radius: 6px;
}

.report-card:hover .report-card_img-wrap .report-card_img {
    transform: scale(1.07);
}

.report-card .report-card_img-wrap .report-card_img {
    width: 100%;
    aspect-ratio: 200/140;
    object-fit: cover;
    transition: var(--base-transition);
}

.report-sec .report_inner .report-card .report-card_link {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: block;
}

.report-card .report-card_desc {
    font-size: 16px;
    line-height: 1.4;
}

/* *************************** Report a Bin *************************** */
/* *************************** Responsive *************************** */
@media(max-width:1024px) {
    .grid-intro {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .title-tag {
        margin-bottom: 15px;
    }

    .site-footer .site-footer_row .site-footer_items {
        width: calc(50% - 15px);
    }

    .home_banner_sec .home_banner_row {
        grid-template-columns: 1fr;
    }

    .our-partners .our-partners_inner .partners-item {
        width: 33.33%;
    }

    .process-card {
        width: calc(50% - 15px);
    }

    .about-sec .about_row {
        grid-template-columns: 1fr;
    }

    .tl-card {
        width: calc(50% - 16px);
    }

    .map_section .map_wrapper .intro-content ul li {
        width: 50%;
    }

    .about-sec__grid {
        grid-template-columns: 1fr;
    }

    .benefit_inner {
        grid-template-columns: 1fr;
    }

    .team-member__list {
        --column: 2;
    }

    .house_cta_row {
        grid-template-columns: 1fr;
    }

    .house_cta_right.block {
        align-items: start;
    }

    .choose-us-sec .choose-us_row .choose-us_inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .choose-us_inner .intro-content ul {
        padding-left: 0;
    }

    .details-sec .details-sec_row {
        grid-template-columns: 1fr;
    }

    .team_member_popup .content_wrapper .popup_data .about_member .about_member__info {
        scrollbar-width: thin;
        max-height: 490px;
        padding-right: 10px;
    }

    .supplier_sec .supplier_card {
        width: calc(33.33% - 16px);
    }

    .gallery_list {
        gap: 24px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery_list a:nth-child(1),
    .gallery_list a:nth-child(2),
    .gallery_list a:nth-child(3),
    .gallery_list a:nth-child(4),
    .gallery_list a:nth-child(5),
    .gallery_list a:nth-child(6),
    .gallery_list a:nth-child(7) {
        height: 300px;
        width: 100%;
        grid-column: unset;
        grid-row: unset;
        margin: 0px;
    }

    .gallery_list a {
        width: calc(33.33% - 16px) !important;
    }

    .report-sec .report_inner .report-card {
        width: calc(25% - 18px);
    }

    .about-sec .about_row .about_right .block.intro {
        margin: 0;
        max-width: none;
    }
}

@media(max-width:768px) {

    .h--1,
    h1 {
        font-size: 40px;
    }

    .h--2,
    h2 {
        font-size: 38px;
    }

    .h--3,
    h3 {
        font-size: 30px;
    }

    .h--4,
    h4 {
        font-size: 28px;
    }

    .site-footer .site-footer_row .site-footer_items {
        width: 100%;
    }

    .site-footer .site-footer_row .site-footer_items .widget_second {
        padding-left: 0px;
    }

    .site-footer .site-footer_row .site-footer_items .widget_first p {
        max-width: 500px;
    }

    .site-footer {
        padding-block: 60px 40px;
    }

    section {
        padding-block: 60px;
    }

    .home_banner_sec {
        min-height: auto;
    }

    .home_banner_sec .container {
        padding-top: 50px;
    }

    .our-partners .our-partners_inner {
        flex-wrap: wrap;
        gap: 30px;
    }

    .our-partners .our-partners_inner .partners-item {
        width: calc(50%- 15px);
    }

    .process-card {
        width: 100%;
    }

    .tl-card {
        width: 100%;
    }

    .map_section .map_wrapper {
        flex-wrap: wrap;
        gap: 0px;
    }

    .map_section .map_row .map_img-wrapper {
        width: 100%;
    }

    .map_section .map_wrapper .intro {
        width: 100%;
    }

    .map_section .map_row .map_img-wrapper>img {
        height: 300px;
    }

    .map_section {
        padding-top: 180px;
    }

    .map_section .map_row {
        height: 100%;
        justify-content: end;
        width: 90%;
        margin: auto;
    }

    .map_section .map_wrapper .intro {
        padding: 40px;
    }

    .about-sec__grid {
        gap: 30px;
    }

    .benefit_counter {
        padding: 20px;
    }

    .number_cont_box_inner p {
        font-size: 32px;
        line-height: 1;
    }

    .team-member__list {
        --column: 1;
    }

    .house_cta_left {
        grid-template-columns: 1fr;
    }

    .choose-us-sec .choose-us_map iframe {
        height: 400px !important;
    }

    .team_member_popup .content_wrapper .popup_data {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .team_member_popup .content_wrapper .popup_data .member_img,
    .team_member_popup .content_wrapper .popup_data .about_member {
        width: 100%;
    }

    .team_member_popup .content_wrapper .popup_data .about_member .about_member__info {
        scrollbar-width: thin;
        max-height: 430px;
        padding-right: 10px;
    }

    .team_member_popup .content_wrapper .popup_data .member_img img {
        aspect-ratio: 767/650;
    }

    .team_member_popup .content_wrapper .popup_data .about_member {
        padding: 32px 24px;
    }

    .supplier_sec .supplier_card {
        width: calc(50% - 12px);
    }

    .page-template-parter .supplier_sec .container,
    .page-template-help .our_process .container,
    .page-template-store-location .map-info_sec .container {
        padding-top: 70px;
    }

    .gallery_list a {
        width: calc(50% - 12px) !important;
        height: 280px !important;
    }

    .report-sec .report_inner .report-card {
        width: calc(50% - 12px);
    }
}

@media(max-width:575px) {

    .h--1,
    h1 {
        font-size: 32px;
    }

    .h--2,
    h2 {
        font-size: 30px;
    }

    .h--3,
    h3 {
        font-size: 28px;
    }

    .h--4,
    h4 {
        font-size: 26px;
    }

    .h--5,
    h5 {
        font-size: 22px;
    }

    .title-tag {
        font-size: 14px;
        line-height: 1.4;
    }

    .btn {
        padding: .6em 1.2em;
        font-size: 15px;
    }

    .text-xl {
        font-size: 16px;
        line-height: 1.4;
    }

    section {
        padding-block: 60px;
    }

    .gap-m {
        gap: 2.6rem;
    }

    .site-footer .site-footer_row .site-footer_items .widget_first .widget_media_image img {
        height: 60px !important;
    }

    .home_banner_sec .gform_wrapper .gform-body #gform_page_2_1 .gform_page_footer {
        position: static;
        margin-top: 12px;
        transform: unset;
    }

    .home_banner_sec .gform_wrapper input[type="button"],
    .home_banner_sec .gform_wrapper input[type="submit"],
    .agent_no_results button[type="button"] {
        width: 100% !important;
    }

    .home_banner_sec .gform_wrapper #gform_page_2_1 .ginput_container.ginput_container_text input {
        height: 32px;
    }

    .our-partners .our-partners_inner .partners-item {
        width: 80%;
        border: 0px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--accent);
    }

    .tl-card__info-title {
        padding-right: 30px;
    }

    .tl-card__info>i {
        font-size: 60px;
    }

    .tl-card__info {
        padding: 32px 20px;
    }

    .faq_sec .accordion_list .accordion_item .accordion_item_title {
        font-size: 17px;
    }

    .map_section .map_wrapper .intro {
        padding: 30px 20px;
    }

    .map_section .map_row .map_img-wrapper>img {
        height: 260px;
    }

    .map_section .map_wrapper .intro-content ul li {
        width: 100%;
    }

    /* .map_section .map_wrapper {
	margin-top: -200px;
} */
    .map_section .map_row iframe {
        height: 300px !important;
    }

    .benefit_inner__left {
        padding-block: 54px;
    }

    .number_cont_box_inner p {
        font-size: 22px;
    }

    .number_cont_box span {
        font-size: 14px;
    }

    .benefit_icon_box {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit_icon__wrap {
        width: 44px;
    }

    .benefit_icon__wrap img {
        height: 20px;
    }

    .benefit_icon_box_title {
        font-size: 20px;
        line-height: 1.3;
    }

    .house_cta_title {
        font-size: 28px;
    }

    .choose-us_inner .intro-content ul li {
        flex-direction: column;
    }

    .choose-us-sec .choose-us_map iframe {
        height: 260px !important;
    }

    .choose-us-sec .choose-us_inner .choose-us_form {
        padding: 30px 18px;
    }

    .gform_wrapper form .gform_body .gform_fields fieldset .ginput_container--name {
        grid-template-columns: 1fr;
    }

    .gform_wrapper form .gform_body .gform_fields .gfield--type-phone,
    .gform_wrapper form .gform_body .gform_fields .gfield--type-email,
    .home_banner_form form .contact-address .gform_page_fields .gfield--type-text,
    .home_banner_form form .contact-address .gform_page_fields .gfield--type-email {
        width: 100% !important;
    }

    .choose-us_form .gform_wrapper .gfield_html h2 {
        font-size: 28px;
        line-height: 17px;
    }

    .supplier_sec .supplier_card {
        width: 100%;
    }

    .get_started .get_started_inner a {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .get_started .get_started_row .intro-inner .get_started_title {
        font-size: 32px;
    }

    .get_started .get_started_row .intro-title {
        font-size: 22px;
    }

    .gallery_list {
        gap: 16px !important;
    }

    .gallery_list a {
        width: calc(100% - 0px) !important;
        height: auto !important;
        aspect-ratio: 1/1;
    }

    .report-sec .report_inner .report-card {
        width: calc(100% - 12px);
        max-width: 280px;
    }

    .report-card .report-card_img-wrap .report-card_img {
        height: 160px;
    }

    .report-card .report-card_desc {
        font-size: 14px;
    }

    .map_section .map_row {
        width: 95%;
    }

    .map_section {
        padding-top: 140px;
    }

    .counter_inner .counter-card {
        width: 100%;
    }
}

/* *************************** Responsive *************************** */