@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --white: #ffffff;
    --header-height: 0;
    --primary-color: #121010;
    --secondary-color: #cfae6a;
    --third-color: #267179;
    --description-color: #444444;
    --bg-primary-light: #30535813;
    --title-size: 40px;
    --title-line-height: 52px;
    --description-size: 16px;
    --description-line-height: 28px;
}


* {
    box-sizing: border-box;
}

html {
    margin: 0 !important;
    scroll-behavior: smooth !important;

}

#wpadminbar {
    display: none;

}



body {
    font-family: "Nunito", sans-serif;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

h1 {
    margin: 0;
}

h2 {
    margin: 0;
}

h3 {
    margin: 0;
}

h4 {
    margin: 0;
}

h5 {
    margin: 0;
}

h6 {
    margin: 0;
}

p {
    margin: 0;
    font-family: "Poppins", sans-serif;

}



/* --------------------------  Header CSS Start ------------------ */



.sidebar-open {
    overflow: hidden;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.sidebar-open .overlay {
    opacity: 1;
    visibility: visible;
}

.header {
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 50px 0 0;
    transition: .3s all ease-in-out;
}

.header.scrolled_header {
    background-color: #fff;
    padding: 30px 0px 10px 0px;
    box-shadow: 0px 1px 16px -7px var(--primary-color);
    transition: all 0.3s ease, box-shadow 0.3s ease;
}

.hide_header {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.header.scrolled_header a {
    color: var(--secondary-color);
}

.header.scrolled_header .nav-list .current-menu-item::after {
    background: var(--secondary-color);
}

.header.scrolled_header .header_btn a {
    background: var(--secondary-color);
    color: #fff
}


.header .upper_row {
    padding: 8px 0 8px 0;
    width: 450px;
    max-width: 100%;
    min-height: 34px;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0 0 0 60px;
    background: #EAEBF0;

}


.header .upper_row .inner_container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
}


.header .upper_row .inner_container a:hover {
    opacity: .7;
}

.header .upper_row .inner_container #header_phone_number {
    font-size: 14px;
    font-weight: 400;
    line-height: 19.07px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.header .upper_row .inner_container #header_phone_number::before {
    content: url("../assets/call-icon.svg");
    position: relative;
    top: 1px;

}

.header .upper_row .inner_container #header_email_address {
    font-size: 14px;
    font-weight: 400;
    line-height: 19.07px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.header .upper_row .inner_container #header_email_address::before {
    content: url("../assets/message-icon.svg");
    position: relative;
    top: 1px;

}




.row-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;

}

.row-wrap .logo-wrap a img {
    width: 180px;
}

.row-wrap .logo-wrap a img:hover {
    opacity: .75;
}

.header .header_btn {
    padding: 0;
}

.header .header_btn a {
    padding: 8px 21px 8px 21px;
    background: #fff;
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400 !important;
    line-height: 28px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
}

.header .header_btn a:hover {
    opacity: .7;
}

.header .header_btn::after {
    content: none !important;
}

.menu-mobile-container {
    display: none;

}

.nav-list {
    display: flex;
    align-items: center;
    padding: 0;
    list-style: none;
    margin: 0;
    gap: 20px;

}

.nav-list li {
    padding: 10px 0px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header {
    padding: 40px 0 0;
}

.nav-list li a:hover {
    opacity: .9;
}

.nav-list .current-menu-item a {
    font-weight: 700;
}

.nav-list .current-menu-item .sub-menu a {
    background-color: transparent;
}



.hamburger {
    display: none;
    z-index: 99;
}

.hamburger .line {
    width: 25px;
    height: 2px;
    background-color: #FFF;
    display: block;
    margin: 5px 0;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger .line:nth-child(2) {
    width: 15px;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger.is-active .line {
    background-color: #FFF;
}

.hamburger.is-active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .line:nth-child(1) {
    -webkit-transform: translateY(6.5px) rotate(45deg);
    -ms-transform: translateY(6.5px) rotate(45deg);
    -o-transform: translateY(6.5px) rotate(45deg);
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-6.5px) rotate(-45deg);
    -ms-transform: translateY(-6.5px) rotate(-45deg);
    -o-transform: translateY(-6.5px) rotate(-45deg);
    transform: translateY(-6.5px) rotate(-45deg);
}

.header .nav-wrap {
    display: flex;
    align-items: center;

}


.header .nav-wrap .menu-item-has-children::before {
    content: url("../assets/arrow-header.svg");
    position: absolute;
    right: -6px;
    top: 13px;
}

.header .nav-wrap .menu-item-has-children .sub-menu .menu-item-has-children::before {
    content: none;
}

.header .nav-wrap .menu-item-has-children .sub-menu li {
    width: 48%;
}


.header li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 21.79px;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;

}

.header .sub-menu li a {
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 19.07px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    padding: 6px 10px;


}

.header .sub-menu li .sub-menu li a {
    font-size: 14px !important;
    font-weight: 400 !important;
}

#menu-item-725 .sub-menu li {
    border-bottom: none;
}


.header .nav-wrap .menu-item-has-children .sub-menu {
    padding: 10px 15px 10px 15px;
    position: absolute;
    top: 52px;
    left: 2px;
    width: 665px;
    background: #FFF;
    z-index: 99;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    box-shadow: 0px 14px 24px 0px var(--primary-color)33;
    border-radius: 0 0 5px 5px;
    gap: 5px;
}

#menu-item-627 .sub-menu {
    left: -120px;
}

.header .nav-wrap .menu-item-has-children .sub-menu li {
    flex-direction: column;
}

.header .nav-wrap .menu-item-has-children .sub-menu li .sub-menu {
    position: static;
    width: 100%;
    flex-direction: column;
    padding: 0;
    box-shadow: none;
    gap: 0;
}

.header .nav-wrap .menu-item-has-children .sub-menu li .sub-menu li {
    width: 100%;
    padding: 5px 5px !important;
    background: #F7FAFF !important;
}

.nav-list li {
    align-items: flex-start;
}

#menu-item-360 .sub-menu {
    width: 420px;
}

#menu-item-627>.sub-menu {
    max-height: 710px;
    overflow-y: scroll;
}


.header .nav-wrap .menu-item-has-children .sub-menu li {
    padding: 0px 0px !important;
    justify-content: flex-start;
    background: white !important;
    margin: 5px 0;
    border-radius: 5px;
}

.header .nav-wrap .menu-item-has-children .sub-menu li a {
    background: white !important;
}

.header .nav-wrap .menu-item-has-children .sub-menu li .sub-menu li a {
    background: #F7FAFF !important;
}

.header .nav-wrap .menu-item-has-children .sub-menu {
    display: none;
}



.header .nav-wrap .menu-item-has-children .sub-menu .sub-menu {
    display: flex;
}


/* .header .sub-menu li .sub-menu li {
  border-bottom: 1px solid #AFAFAF;
} */

.header .sub-menu li .sub-menu li:last-child {
    border-bottom: none;
}

.header .sub-menu li .sub-menu li a {
    padding: 10px 5px;
}


.header .nav-wrap .menu-item-has-children .sub-menu li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.header .nav-wrap .menu-item-has-children .sub-menu li::after {
    position: absolute;
    left: -9px;
    right: auto;
    transform: translate(0) scale(0.8);
    bottom: auto;
    top: 5px;
}

.header .nav-wrap .menu-item-has-children .sub-menu .sub-menu li::after {
    top: 10px;
}

.nav-list .current-menu-item .sub-menu a {
    color: var(--primary-color);
    font-weight: 400;
    font-size: 14px;
}

.nav-list .current-menu-item .sub-menu li .sub-menu li a {
    font-weight: 400 !important;
    font-size: 14px !important;
}

#menu-item-360 li a {
    font-weight: 400 !important;
    font-size: 14px !important;
}



.header .nav-wrap .menu-item-335 a::before {
    content: none;
}

.header .nav-wrap .menu-item-335 a::after {
    content: none;
}

.header .nav-wrap .menu-item-335 .sub-menu {
    flex-direction: column;
    padding: 0;
    position: absolute;
    top: 54px;
    right: 18px;
    width: 275px;
    border-radius: 7.348px;
    border: 1.196px solid #353634;
    background: #FFF;
    box-shadow: 0px 0px 13.13px 1.31px rgba(255, 255, 255, 0.30);
    display: none;
}

.header .nav-wrap .menu-item-335 .sub-menu .menu-item-336 .sub-menu {
    right: -260px;
    top: 0px;
    display: none;
    width: 260px
}


.header .nav-wrap .menu-item-335 .sub-menu li {
    list-style: none;
    width: 100%;
    border-bottom: 1px solid #ACACAC;
    padding: 10px 0;
}

.nav-list .menu-item-335 .sub-menu .current-menu-item a {
    background-color: transparent;
    color: #2B2B2B !important;
}


.header .nav-wrap .menu-item-335 .sub-menu li a {
    color: #000 !important;
    font-size: 18.325px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 20px;
    text-align: left;
}

.header .nav-wrap .menu-item-335 .sub-menu li a::after {
    content: none;
}

.header .nav-wrap .menu-item-335 .sub-menu li a::before {
    content: none;
}




.nav-list .current-menu-item {
    position: relative;
}

.nav-list .current-menu-item::after {
    content: url("");
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translate(-50%);
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: white;
}


.header .nav-wrap .cta-button {
    width: 95px;
    height: 40px;
    border-radius: 30px;
    background: rgba(18, 42, 90, 1);
    font-size: 15px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 0em;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;

}

.header .nav-wrap .cta-button:hover {
    opacity: .8;
}





.load-complete {
    position: fixed;
    background: #fff;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999999;
}


.load-complete .ball-clip-rotate>div {
    border-color: #0f89d1 #0f89d1 transparent;
    background-color: #0f89d1;
    margin: 0 auto;
    display: block;
    top: 50%;
    position: absolute;
    left: 0;
    right: 0;
}

.ball-clip-rotate>div {
    border-radius: 100%;
    margin: 2px;
    /* border: 2px solid #fff; */
    border-bottom-color: transparent;
    height: 70px;
    width: 70px;
    background: 0 0 !important;
    display: inline-block;
    -webkit-animation: rotate .75s 0s linear infinite;
    animation: rotate 1.5s 0s linear infinite;
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }

    50% {
        -webkit-transform: rotate(180deg) scale(0.6);
        transform: rotate(180deg) scale(0.6);
    }

    100% {
        -webkit-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1);
    }
}

/* --------------------------  Header  CSS End ------------------ */


/* --------------------------  Footer CSS Start ------------------ */
#progress {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: -150px;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: .6s all ease-in-out;

}

#progress #progress-value {
    height: 34px;
    width: 34px;
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 500;
    color: var(--secondary-color);
}

#progress:hover {
    cursor: pointer;

}

#progress.show {
    opacity: 1;
    visibility: visible;
    left: 20px;
    transform: rotate(360deg);
}

footer {}

footer .footer_logo {
    width: 210px;
}

footer .upper_footer {
    background: #0c0c0c;
    padding: 60px 0 60px 0;
    width: 100%;
    height: auto;
}

footer .upper_footer .content_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--secondary-color);
}

footer .upper_footer .social_links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
}

footer .upper_footer .social_links li {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 8px;
    transition: .4s all ease-out;

}

footer .upper_footer .social_links li:hover {
    transform: translateY(-10px) scale(1.03);

}

footer .upper_footer .social_links li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

footer .upper_footer .social_links li a:hover {
    opacity: .75;
}


footer .upper_footer .footer_wrapper .links_box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 30px;

}

footer .upper_footer .footer_wrapper .links_box .title {
    font-size: 18px;
    font-weight: 700;
    line-height: 32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0;
}

footer a {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    margin: 14px 0 0 0;
    display: block;
    cursor: pointer;
}

footer a:hover {
    opacity: .75;
}


footer .upper_footer .footer_wrapper h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    margin: 14px 0 0 0;
    display: block;
    max-width: 340px;
}

footer .upper_footer .footer_wrapper .right_wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 80px;
}

footer #phone::before {
    content: url("../assets/footer-call.svg");
    position: relative;
    top: 7px;
    margin-right: 10px;
}

footer #email::before {
    content: url("../assets/footer-message.svg");
    position: relative;
    top: 7px;
    margin-right: 10px;
}

footer #address::before {
    content: url("../assets/location-2.svg");
    position: relative;
    top: 7px;
    margin-right: 10px;
}

footer .lower_footer {
    background: var(--secondary-color);
    padding: 20px 0;
    width: 100%;
    height: auto;
}

footer .lower_footer .lower_footer_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .lower_footer .lower_footer_wrapper h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
}

footer .lower_footer a {
    font-size: 16px;
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* --------------------------  Footer CSS End ------------------ */




/* --------------------------  404 Page Start ------------------ */


#not_found {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
}

#not_found .box h2 {
    color: var(--white);
    text-align: center;
    font-size: 92px;
    font-style: normal;
    font-weight: 600;
    line-height: 110px;
    max-width: 605px;
    margin: 30px auto 0;
}

#not_found .box h4 {
    color: var(--white);
    text-align: center;
    font-size: 52px;
    font-style: normal;
    font-weight: 600;
    line-height: 64px;
    max-width: 605px;
    margin: 50px 0 0 0;
}

#not_found .box p {
    color: var(--white);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    max-width: 648px;
    margin: 25px 0 0 0;
}

#not_found .box a {
    padding: 21px 64px 21px 64px;
    font-size: 18px;
    font-weight: 500;
    line-height: 21.79px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    color: #000;
    min-height: 50px;
    text-transform: uppercase;
    margin: 50px auto 0;
}

#not_found .box a:hover {
    opacity: .8;
}


/* --------------------------  404 Page End ------------------ */

/* --------------------------  Thank You Page Start ------------------ */

#thank_you_section {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--primary-color);
}

#thank_you_section .inner-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding-top: 100px;

}

#thank_you_section .inner-box h4 {
    color: var(--white);
    text-align: center;
    font-size: 52px;
    font-style: normal;
    font-weight: 600;
    line-height: 64px;
    max-width: 605px;
    margin: 50px 0 0 0;
}

#thank_you_section .inner-box p {
    color: var(--white);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    max-width: 648px;
    margin: 25px 0 0 0;
}

#thank_you_section .inner-box a {
    padding: 21px 64px 21px 64px;
    font-size: 18px;
    font-weight: 500;
    line-height: 21.79px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    color: #000;
    min-height: 50px;
    text-transform: uppercase;
    margin: 50px auto 0;
}

#thank_you_section .inner-box a:hover {
    opacity: .8;
}


/* --------------------------  Thank You Page End ------------------ */



.cta_main {
    padding: 12px 36px 12px 36px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    background: var(--secondary-color);
    border-radius: 8px;
    cursor: pointer;
    color: #FFFFFF;
    min-height: 44px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s, color 0.4s;
}


.cta_2 {
    padding: 12px 36px 12px 36px;
    font-size: 16px;
    font-weight: 500;
    line-height: 21.79px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--secondary-color);
    border-radius: 8px;
    border: 3px solid var(--secondary-color);
    min-height: 44px;
    text-transform: uppercase;

}

.cta_3 {
    padding: 12px 36px 12px 36px;
    font-size: 16px;
    font-weight: 500;
    line-height: 21.79px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--secondary-color);
    border-radius: 8px;
    border: 3px solid var(--secondary-color);
    min-height: 44px;
    text-transform: uppercase;

}

.cta_4 {
    padding: 11px 28px 11px 28px;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--secondary-color);
    border-radius: 8px;
    border: 3px solid var(--secondary-color);
    min-height: 44px;
    text-transform: uppercase;

}

.cta_5 {
    padding: 13px 26px 13px 26px;
    font-size: 16px;
    font-weight: 500;
    line-height: 21.79px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--secondary-color);
    border-radius: 8px;
    border: 3px solid var(--secondary-color);
    min-height: 44px;
    text-transform: uppercase;
}

.cta_2::before {
    content: url("../assets/call.svg");
    margin-right: 8px;
    position: relative;
    top: 1px;
}

.cta_4::before {
    content: url("../assets/call-2.svg");
    margin-right: 8px;
    position: relative;
    top: 1px;
}

.cta_main:hover {
    opacity: .7;
}

/* .cta_main::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #007bff; 
  transition: left 0.4s ease;
  z-index: 0;
}

.cta_main:hover::before {
  left: 0;
} */

.cta_main span {
    position: relative;
    z-index: 1;
}

.cta_2:hover {
    opacity: .7;
}

.cta_3:hover {
    opacity: .7;
}

.cta_4:hover {
    opacity: .7;
}

.cta_5:hover {
    opacity: .7;
}

.cta_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}




/* --------------------------  Home Page Start ------------------ */

#home_banner_section {
    width: 100%;
    height: auto;
    padding: 200px 0 140px 0;
    margin-top: var(--header-height);
    overflow: hidden;
}

#home_banner_section .video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

#home_banner_section .video-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

#home_banner_section .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
}

#home_banner_section p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--white);
    max-width: fit-content;
    text-transform: uppercase;
    background-color: var(--secondary-color);
    padding: 1px 10px;
    margin: 0 0 20px 0;
    border-radius: 8px;
}

#home_banner_section h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 64px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    max-width: 660px;
    position: relative;
}

/* #home_banner_section h1::after {
  content: url("../assets/text-line.svg");
  margin-top: -50px;
  display: block;

} */

#home_banner_section h2 {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    max-width: 602px;
    margin: 14px 0 0 0;
}

#home_banner_section .cta_box {
    margin: 44px 0 0 0;
    justify-content: flex-start;
}

#home_banner_section .cta_main {
    background-color: white;
    color: var(--primary-color);

}

#home_banner_section .cta_2 {
    color: white;
    border: 3px solid white;
}

#home_banner_section .cta_2::before {
    content: url("../assets/call-white.svg");
    margin-right: 10px;
    position: relative;
    top: 1px;
}

#home_banner_section .banner_main_image {
    /*width: 480px;*/
    animation: floatUpDown 5s ease-in-out infinite;
}

#banner_main_image {
    width: 380px;
}

#home_section_1 {
    padding: 70px 0 80px 0;
    width: 100%;
    height: auto;
    background-color: #fff;
    /* margin-top: -100px; */
    position: relative;
    overflow: hidden;
}

#home_section_1 h3 {
    font-size: var(--title-size);
    font-weight: 700;
    line-height: var(--title-line-height);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 0 auto;
    max-width: 380px;

}

#home_section_1 h4 {
    font-size: var(--description-size);
    font-weight: 400;
    line-height: var(--description-line-height);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    max-width: 540px;
    margin: 5px auto 0;
}

#home_section_1 .cards_wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 100%;
    margin: 40px auto 0;
}

#home_section_1 .card {
    max-width: 25%;
    min-height: 140px;
    margin: 0;
    transition: .4s all ease-out;
}

#home_section_1 .card .image_wrapper {
    background: #e3d0a941;
    padding: 20px;

}

#home_section_1 .card img {
    margin: 0 auto;
    width: 180px;
    transition: .4s all ease-out;
    height: 280px;
    object-fit: contain;
}

#home_section_1 .card .content {
    margin: 15px 0 0 0;
    transition: .4s all ease-out;
    padding: 5px 5px;
}

#home_section_1 .card .top_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

#home_section_1 .card h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 0 0 0;

}

#home_section_1 .card .tag {
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--secondary-color);
    margin: 0 0 0;
}

#home_section_1 .card p {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    margin: 6px 0 0;

}

#home_section_1 .card:hover .content {
    transform: translateY(-70px);
    background-color: white;
    padding: 10px 20px;
}

#home_section_1 .card:hover img {
    transform: scale(1.04);
}

#home_section_1 .cta_main {
    margin: 40px auto 0;
    display: block;
    max-width: fit-content;

}

#home_section_2 {
    padding: 0 0 0 0;
    width: 100%;
    height: auto;
}

#home_section_2 .wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

#home_section_2 .wrapper img {
    width: 620px;
    object-fit: contain;
}

#home_section_2 h4 {
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--secondary-color);
    text-transform: uppercase;
    max-width: fit-content;
    margin: 0 0 10px 0;
    position: relative;
    padding-left: 36px;

}

#home_section_2 h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 6px;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

#home_section_2 .content_wrapper {
    max-width: 100%;
    width: 500px;
    padding-top: 60px;
    padding-bottom: 60px;
}

#home_section_2 h3 {
    font-size: var(--title-size);
    font-weight: 700;
    line-height: var(--title-line-height);
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 15px auto 0;
    max-width: 100%;
}

#home_section_2 p {
    font-size: var(--description-size);
    font-weight: 400;
    line-height: var(--description-line-height);
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    max-width: 100%;
    margin: 8px 0 0 0;
}


#home_section_2 .cta_box {
    margin: 60px auto 0;
    justify-content: center;
}


#home_section_2 .cards_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 320px;
    margin: 40px auto 0;
}

#home_section_2 .card {
    /* max-width: 260px; */
    width: 100%;
    min-height: 140px;
    margin: 0;
    transition: .4s all ease-out;
    margin: 0 20px;
}


#home_section_2 .card .image_wrapper {
    background: #e3d0a941;
    padding: 20px;
}

#home_section_2 .card img {
    margin: 0 auto;
    width: 260px;
    transition: .4s all ease-out;
	height: 360px;
}

#home_section_2 .card:hover img {
    transform: scale(1.02);
}

#home_section_2 .card .content {
    margin: 15px 0 0 0;
    transition: .4s all ease-out;
    padding: 5px 5px;
}

#home_section_2 .card .top_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    flex-direction: column;
    width: 100%;
}

#home_section_2 .card h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 0 0 0;
}

#home_section_2 .card .tag {
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--secondary-color);
    margin: 0 0 0;
}


#home_section_2 .slick-dots li button::before {
    content: " ";
    background: var(--secondary-color);
    height: 3px;
    border-radius: 12px;
    width: 15px;
}

#home_section_2 .slick-dots li button::before {
    background: var(--secondary-color);
}

#home_section_2 .slick-dots li button::before {
    content: " ";
    background: var(--secondary-color);
    height: 3px;
    border-radius: 12px;
    width: 15px;
}

#home_section_2 .slick-next.slick-arrow {
    background: url("http://localhost/wefanwolle/wp-content/uploads/2025/10/nxt.svg");
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    cursor: pointer;
    transform: scale(0.7);
}

#home_section_2 .slick-prev.slick-arrow {
    background: url("http://localhost/wefanwolle/wp-content/uploads/2025/10/prev.svg");
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    cursor: pointer;
    transform: scale(0.7);

}

#home_section_2 .slick-next:before {
    content: "";
}

#home_section_2 .slick-prev:before {
    content: "";
}

#home_section_2 .slick-next {
    top: 200px !important;
    right: -45px;
    left: auto;
}

#home_section_2 .slick-prev {
    top: 200px !important;
    left: -45px;
    right: auto;
}

#home_section_2 button:hover {
    opacity: 0.75;
}

#home_section_2 .slick-dots li {
    width: 15px;
}

#home_section_2 .slick-dots {
    bottom: -35px !important;
}

#home_section_3 {
    padding: 70px 0 70px 0;
    width: 100%;
    height: auto;
    background: #FFF;
    background-color: var(--bg-primary-light);

}



#home_section_3 h3 {
    font-size: var(--title-size);
    font-weight: 700;
    line-height: var(--title-line-height);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 0 auto;
    max-width: 620px;


}

#home_section_3 h4 {
    font-size: var(--description-size);
    font-weight: 400;
    line-height: var(--description-line-height);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    margin: 14px auto 0;
    max-width: 619px;
}




#home_section_3 .cards_wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 60px;
    margin: 60px auto 0;
}

#home_section_3 .cards_wrapper .card {
    border-right: 1px solid var(--secondary-color);
    padding-right: 40px;
    width: 30%;
}

#home_section_3 .cards_wrapper .card:last-of-type {
    border-right: none;
    padding-right: 0;

}

#home_section_3 .cards_wrapper .card h5 {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    max-width: 210px;
    ;
    margin: 21px auto 0;
}

#home_section_3 .cards_wrapper .card img {
    width: 90px;
    margin: 0 auto;
}

#home_section_3 .cta_box {
    margin: 40px auto 0;
}


#stats_section {
    margin: 60px 0 100px;
    width: 100%;
    height: auto;

}

#stats_section .stats_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0;
    max-width: 100%;
    border-radius: 8px;
    padding: 40px 0 110px;
    flex-direction: column;
    position: relative;
    background-image: url("../assets/stats-bg.webp");
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

#stats_section h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--white);
    margin: 0 auto;
    max-width: 620px;


}

#stats_section h6 {
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--white);
    text-transform: uppercase;
    max-width: fit-content;
    margin: 0 auto 6px;
    position: relative;
    padding-left: 25px;
}

#stats_section h6::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 6px;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--white);
}

#stats_section .stats_wrapper .stats_box {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 15px;
    position: absolute;
    bottom: -70px;

}

#stats_section .box {
    padding: 15px 15px 15px 15px;
    background-color: white;
    border-radius: 8px;
    width: 200px;
    max-width: 100%;
    box-shadow: 0px 6px 35px 0 rgb(99 169 92 / .2);
    transition: .4s all ease-out;
}



#stats_section .box h5 {
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);

}

#stats_section .box h5 strong {
    font-size: 18px;
    font-weight: inherit;
}

#stats_section .box p {
    font-size: calc(var(--description-size) - 2px);
    font-weight: 400;
    line-height: calc(var(--description-line-height) - 4px);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    margin: 10px auto 0;

}

#stats_section .box:hover {
    transform: translateY(-10px) scale(1.03);
}

#stats_section .box:hover {
    background-color: var(--secondary-color);
}

#stats_section .box:hover h5 {
    color: white;
}

#stats_section .box:hover img {
    filter: invert(100%) brightness(1000%) contrast(100%)
}

#stats_section .box:hover p {
    color: white;
}

#home_section_4 {
    width: 100%;
    height: auto;
    background-color: var(--bg-primary-light);
    padding: 60px 0px 70px;
}

#home_section_4 .wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#home_section_4 .wrapper h3 {
    font-size: var(--title-size);
    font-weight: 700;
    line-height: var(--title-line-height);
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    max-width: 520px;
}

#home_section_4 .wrapper p {
    font-size: var(--description-size);
    font-weight: 400;
    line-height: var(--description-line-height);
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    max-width: 531px;
    margin: 0px;
}

#home_section_4 .team_wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 80px auto 0px;
}

#home_section_4 .team_wrapper .card {
    max-width: 500px;
    width: 100%;
    min-height: 279px;
    position: relative;
    box-shadow: rgba(99, 169, 92, 0.2) 0px 6px 35px 0px;
    height: 100%;
    border-radius: 8px;
    background: white;
    overflow: hidden;
    padding: 12px;
}

#home_section_4 .team_wrapper .card .image_wrapper {
    width: 240px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0px auto;
    height: 240px;
    max-width: 100%;

}

#home_section_4 .team_wrapper .card img {
    transition: 0.5s ease-in-out;
}

#home_section_4 .team_wrapper .card img:hover {
    transform: scale(1.05);
}

#home_section_4 .team_wrapper .card .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    height: 100%;
    padding: 30px 20px;
    transition: 0.4s ease-in-out;
    border-radius: 0px 0px 8px 8px;
}

#home_section_4 .team_wrapper .card h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--third-color);
    max-width: fit-content;
    text-transform: uppercase;
    margin: 0px auto;
}

#home_section_4 .team_wrapper .card h5 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    max-width: 100%;
    margin: 6px auto 0px;
}

#home_section_4 .team_wrapper .card h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    max-width: 100%;
    margin: 6px auto 0px;
}

#home_section_4 .team_wrapper .card .content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--description-color);
    text-align: left;
    margin: 10px 0px 0px;
}

#home_section_4 .team_wrapper .card ul {
    padding-left: 20px;
    margin: 15px 0px 0px;
}

#home_section_4 .team_wrapper .card ul li {
    font-size: var(--description-size);
    font-weight: 500;
    line-height: var(--description-line-height);
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    padding-left: 10px;
    margin: 6px 0px 0px;
    list-style: decimal;
}

#home_section_4 .team_wrapper .card .content a {
    font-size: 16px;
    font-weight: 500;
    line-height: 21.79px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    min-height: 48px;
    text-transform: uppercase;
    color: var(--third-color);
    display: block;
    padding: 13px 26px;
    border-radius: 8px;
    border: 3px solid var(--third-color);
    margin: 55px 0px 0px;
}

#home_section_4 .cta_box {
    justify-content: center;
    margin: 80px auto 0px;
}

#home_section_4 .team_wrapper .card .content a:hover {
    opacity: 0.75;
}

#home_section_5 {
    width: 100%;
    height: auto;
    background-color: var(--bg-primary-light);
    padding: 60px 0px 70px;
}

#home_section_5 h3 {
    font-size: var(--title-size);
    font-weight: 700;
    line-height: var(--title-line-height);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    max-width: 740px;
    margin: 0px auto;
}

#home_section_5 h4 {
    font-size: var(--description-size);
    font-weight: 400;
    line-height: var(--description-line-height);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    max-width: 619px;
    margin: 14px auto 0px;
}

#home_section_5 .cards_wrapper .card {
    max-width: 100%;
    min-height: 360px;
    position: relative;
    box-shadow: 5px 3px 26px -9px var(--secondary-color);
    border-radius: 8px;
    background: rgb(255, 255, 255);
    padding: 25px;
    margin: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

#home_section_5 .cards_wrapper .card p {
    font-size: var(--description-size);
    font-weight: 400;
    line-height: var(--description-line-height);
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    max-width: 100%;
    margin: 2px 0px 0px;
}

#home_section_5 .cards_wrapper .card p::before {
    content: url("../assets/stars.svg");
    display: block;
    margin-bottom: 10px;
}

#home_section_5 .cards_wrapper .card h5 {
    font-size: 20px;
    font-weight: 700;
    line-height: 36px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 50px 0px 0px;
}

#home_section_5 .cards_wrapper .card h5::before {
    content: url("../assets/google-logo.png");
    position: absolute;
    right: 25px;
}

#home_section_5 .slick-dots li button::before {
    color: var(--secondary-color);
}

#home_section_5 .slick-dots li button::before {
    color: var(--secondary-color);

}

#home_section_5 .cta_box {
    margin: 100px auto 0px;
}

#home_section_5 .slick-dots li button::before {
    content: " ";
    background: var(--secondary-color);
    height: 6px;
    border-radius: 12px;
    width: 30px;
}

#home_section_5 .slick-dots li {
    width: 30px;
}

#home_section_5 .slick-dots {
    bottom: -35px !important;
}

#home_section_6 {
    padding: 60px 0 70px 0;
    width: 100%;
    height: auto;
    background-color: var(--bg-primary-light);
}

#home_section_6 h3 {
    font-size: var(--title-size);
    font-weight: 700;
    line-height: var(--title-line-height);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    max-width: 740px;
    margin: 0 auto;
}

#home_section_6 h4 {
    font-size: var(--description-size);
    font-weight: 400;
    line-height: var(--description-line-height);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    max-width: 520px;
    margin: 14px auto 0px;
}

#home_section_6 .cards_wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    margin: 60px 0 0 0;
    gap: 25px;
    flex-wrap: wrap;
}

#home_section_6 .cards_wrapper .card {
    max-width: 375px;
    width: 100%;
    min-height: 180px;
    border-radius: 10px;
    background: #fff;
    padding: 60px 24px 25px 24px;
    position: relative;
    box-shadow: 0px 6px 35px 0 rgb(99 169 92 / .2);
}

#home_section_6 .cards_wrapper .card h5 {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    position: absolute;
    left: 24px;
    top: -12px;
    background-image: url("../assets/box_bg.svg");
    width: 62px;
    height: 59px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

#home_section_6 .cards_wrapper .card h6 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 9px 0 0 0;
    position: relative;
    z-index: 9;
}

#home_section_6 .cards_wrapper .card p {
    font-size: var(--description-size);
    font-weight: 400;
    line-height: var(--description-line-height);
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    margin: 6px 0 0 0;
    max-width: 100%;
    position: relative;
    z-index: 9;
}

#home_section_6 .cta_box {
    margin: 60px auto 0;
}

.page-id-371 #home_blogs_section {
    background-color: var(--bg-primary-light);
}

.page-id-371 #faq-section {
    padding-top: 10px;
    padding-bottom: 40px;

}

#home_blogs_section {
    padding: 60px 0 70px 0;
    width: 100%;
    height: auto;

}


#home_blogs_section h3 {
    font-size: var(--title-size);
    font-weight: 700;
    line-height: var(--title-line-height);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    max-width: 740px;
    margin: 0 auto;


}

#home_blogs_section .blogs_wrapper {
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;

}

#home_blogs_section .blogs_wrapper .blog_card {
    width: 100%;
    max-width: 820px;
    min-height: auto;
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0px 10px 37px 3px #545db375;
    padding: 18px 15px 18px 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

#home_blogs_section .blogs_wrapper .blog_card img {
    border-radius: 8px;
    width: 260px;
    height: 240px;

}


#home_blogs_section .blogs_wrapper .blog_card h5 {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 0px 0 0 0;

}

#home_blogs_section .blogs_wrapper .blog_card h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 8px 0 0 0;
    max-width: 100%;

}

#home_blogs_section .blogs_wrapper .blog_card p {
    font-size: var(--description-size);
    font-weight: 400;
    line-height: var(--description-line-height);
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    max-width: 100%;
    margin: 8px 0 0 0;


}

#home_blogs_section .blogs_wrapper .content_wrapper {
    max-width: 600px;
}

#home_blogs_section .blogs_wrapper .blog_card .read_more_btn {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--secondary-color);
    margin: 25px 0 0 0;
    display: block;
    border: none;
    background: transparent;
    cursor: pointer;
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    padding: 4px 16px;
}

#home_blogs_section .blogs_wrapper .blog_card .read_more_btn:hover {
    opacity: .7;
}

#home_blogs_section .blogs_wrapper .blog_card:hover {
    opacity: .9;
}

#home_blogs_section .blogs_wrapper .blog_card .read_more_btn::after {
    content: url("../assets/blog-card-tick.svg");
    position: relative;
    top: 0px;
    left: 3px;
}

#home_blogs_section #noPostsSection_text {
    font-size: 46px;
    font-weight: 700;
    line-height: 64px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #333333;
    max-width: 550px;
    margin: 40px auto;
    border: 1px solid #333;
    padding: 20px;
    text-transform: capitalize;

}

#home_blogs_section .cta_box {
    margin: 50px auto 0;
}

#home_quote_form {
    background-color: var(--bg-primary-light);
    padding: 60px 0 60px;
    width: 100%;
    height: auto;

}

#home_quote_form .wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

#home_quote_form .wrapper .left_wrapper {
    align-self: center;
}

#home_quote_form .wrapper #section_image_main {
    border-radius: 8px;
    max-width: 520px;
    animation: floatUpDown 3s ease-in-out infinite;
}

#home_quote_form .wrapper .right_wrapper {}

#home_quote_form .wrapper .right_wrapper h3 {
    font-size: 32px;
    font-weight: 700;
    line-height: 44px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    max-width: 480px;

}

#home_quote_form .wrapper .right_wrapper h4 {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    max-width: 506px;
    margin: 5px 0 0 0;
}




#home_quote_form .wrapper .right_wrapper form {
    max-width: 100%;
    width: 507px;
}

#home_quote_form .wrapper .right_wrapper form .row-50 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 19px;
    margin-top: 20px;
}

#home_quote_form .wrapper .right_wrapper form .row-100 {
    margin-top: 20px;
    display: flex;
    flex-direction: column;

}

#home_quote_form .wrapper .right_wrapper form label {
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    ;

}

#home_quote_form .wrapper .right_wrapper form input {
    background: #FFFFFF;
    border: 1px solid #E7E7E7;
    width: 244px;
    max-width: 100%;
    height: 50px;
    border-radius: 5px;
    outline: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    ;
    padding: 0 0 0 10px;
    margin-top: 5px;
}

#home_quote_form .wrapper .right_wrapper form textarea {
    background: #FFFFFF;
    border: 1px solid #E7E7E7;
    width: 100%;
    max-width: 100%;
    height: 180px;
    border-radius: 5px;
    outline: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    ;
    padding: 0 0 0 10px;
    margin-top: 5px;
}

#home_quote_form .wrapper .right_wrapper form select {
    background: #FFFFFF42;
    border: 1px solid #E7E7E7;
    width: 244px;
    max-width: 100%;
    height: 50px;
    border-radius: 5px;
    outline: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    padding: 0 0 0 10px;
    margin-top: 5px;
}

#home_quote_form .wrapper .right_wrapper form select {
    cursor: pointer;
}

#home_quote_form .wrapper .right_wrapper form select option {
    background: var(--primary-color);


}

#home_quote_form .wrapper .right_wrapper form .row-100 input {
    width: 100%;

}


#home_quote_form .wrapper .right_wrapper form input[type="submit"] {
    width: 506px;
    max-width: 100%;
    height: 50px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    line-height: 21.79px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 50px auto 0;
    text-transform: uppercase;

}

#home_quote_form .wrapper .right_wrapper form input[type="submit"]:hover {
    opacity: .8;
}

#home_quote_form .wrapper .right_wrapper form .wpcf7-response-output {
    margin: 0 0 30px 0 !important;
    color: #fff !important;
    text-align: center !important;
}


#home_quote_form .wrapper .right_wrapper form .wpcf7-spinner {
    margin: 10px auto 10px !important;
    text-align: center !important;
    display: flex !important;
    background-color: #fff !important;
}

#home_quote_form .wrapper .right_wrapper form .wpcf7-spinner::before {
    background-color: #000 !important;
}

#home_section_8 {
    padding: 60px 0 80px 0;
    width: 100%;
    height: auto;
    background-color: #FFF;
}

#home_section_8 h3 {
    font-size: var(--title-size);
    font-weight: 700;
    line-height: var(--title-line-height);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    max-width: 740px;
    margin: 0 auto;
}

#home_section_8 h4 {
    font-size: var(--description-size);
    font-weight: 400;
    line-height: var(--description-line-height);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    max-width: 619px;
    margin: 14px auto 0;
}


#home_section_8 ul {
    margin: 40px auto 0;
}

#home_section_8 ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
}

#home_section_8 ul li img {
    border-radius: 8px;
	height: 280px;
    object-fit: contain;
}

#home_section_8 .cta_main {
    margin: 50px auto 0;
}





/* --------------------------  Home Page End ------------------ */


/* -------------------------- Testimonial Page Start ------------------ */


#testimonial_banner_section {
    width: 100%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0 100px 0;
    margin-top: var(--header-height);
}

#testimonial_banner_section h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 66px;
    text-align: center;
    color: rgb(255 255 255);
    margin: 0 auto;
    text-transform: capitalize;
    max-width: 640px;
}



#testimonial_main_section {
    padding: 60px 0 60px 0;
    width: 100%;
    height: auto;
    background-color: #FFF;
}

#testimonial_main_section h2 {
    font-size: var(--title-size);
    font-weight: 700;
    line-height: var(--title-line-height);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    max-width: 740px;
    margin: 0 auto;
}

#testimonial_main_section p {
    font-size: var(--description-size);
    font-weight: 400;
    line-height: var(--description-line-height);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    max-width: 760px;
    margin: 14px auto 0;
}

#testimonial_main_section .review-box {
    margin-top: 60px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

#testimonial_main_section .review-box .box_wrap {
    width: 100%;
    max-width: 480px;
    min-height: 140px;
    border-radius: 8px;
    background: #FFFFFF;
    padding: 25px 25px;
    position: relative;
    box-shadow: 0px 14px 54px 0px #BBC7DDB5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

#testimonial_main_section .review-box .box_wrap p {
    font-size: var(--description-size);
    font-weight: 400;
    line-height: var(--description-line-height);
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    margin: 21px 0 0 0;
    max-width: 100%;
}

#testimonial_main_section .review-box .box_wrap h5 {
    font-size: 20px;
    font-weight: 700;
    line-height: 36px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
}

#testimonial_main_section .review-box .box_wrap .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 40px 0 0 0;
}

#testimonial_main_section .load-more-written-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin: 60px auto 0;
}


#testimonial_main_section .load-more-written-reviews a {
    padding: 14px 42px 14px 42px;
    font-size: 16px;
    font-weight: 500;
    line-height: 21.79px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    background: var(--secondary-color);
    border-radius: 8px;
    cursor: pointer;
    color: #FFFFFF;
    min-height: 50px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s, color 0.4s;
}

#testimonial_main_section .load-more-written-reviews a:hover {
    opacity: 0.75;
}
























/* -------------------------- testimonial Page End ------------------ */

























/* -------------------------- Gallery Page Start ------------------ */

#gallery_section {
    width: 100%;
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0 100px 0;
    margin-top: var(--header-height);
}


#gallery_section .banner_title {
    font-size: 52px;
    font-weight: 700;
    line-height: 64px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    max-width: 660px;
    position: relative;
}


#gallery_section .banner_sub_title {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    max-width: 820px;
    margin: 14px 0 0 0;
}

#gallery_images {
    padding: 80px 0;
    width: 100%;
    height: auto;
}


#gallery_images h2 {
    font-size: var(--title-size);
    font-weight: 700;
    line-height: var(--title-line-height);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    max-width: 740px;
    margin: 0px auto;
}



#gallery_images h6 {
    font-size: var(--description-size);
    font-weight: 400;
    line-height: var(--description-line-height);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    max-width: 619px;
    margin: 14px auto 60px;
}





/* -------------------------- Gallery Page End ------------------ */





/* --------------------------  Products Page Start ------------------ */


#products_banner_section {
    width: 100%;
    height: auto;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 180px 0 100px 0;
    margin-top: var(--header-height);

}

#products_banner_section h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 52px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    max-width: 660px;
    position: relative;
}

#products_banner_section p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    max-width: 702px;
    margin: 14px 0 0 0;
}



#products_section_1 {
    padding: 70px 0 20px 0;
    width: 100%;
    height: auto;
    background-color: #fff;
    /* margin-top: -100px; */
    position: relative;
    overflow: hidden;
}

#products_section_1 h3 {
    font-size: var(--title-size);
    font-weight: 700;
    line-height: var(--title-line-height);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 0 auto;
    max-width: 380px;

}

#products_section_1 h4 {
    font-size: var(--description-size);
    font-weight: 400;
    line-height: var(--description-line-height);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    max-width: 540px;
    margin: 5px auto 0;
}

#products_section_1 .taxonomy_list {
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#products_section_1 .taxonomy_list a {
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 0 0 0;
}

#products_section_1 .taxonomy_list a:hover {
    opacity: .75;
}

#products_section_1 .taxonomy_list .active {
    font-weight: 700;
    font-size: 22px;
    color: var(--secondary-color);
}

#products_section_1 .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 50px auto 0;
}

#products_section_1 .pagination .page-numbers {
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: 0%;
    text-align: center;
    border: 2px solid #C3C3C3;
    padding: 16px 20px;
    text-decoration: none;
    border-radius: 3px;
    color: var(--description-color);
    max-width: 540px;
    margin: 0;
}

#products_section_1 .pagination .page-numbers.current {
    font-weight: 700;
    color: #fff;
    background: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

#products_section_1 .pagination .page-numbers:hover {
    opacity: 0.75;
}

#products_section_1 .cards_wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 100%;
    margin: 40px auto 0;
}

#products_section_1 .card {
    max-width: 30%;
    min-height: 140px;
    margin: 0;
    transition: .4s all ease-out;
}

#products_section_1 .card .image_wrapper {
    background: #e3d0a941;
    padding: 20px;

}

#products_section_1 .card img {
    margin: 0 auto;
    width: 260px;
    transition: .4s all ease-out;
	height: 320px;
    object-fit: contain;
}

#products_section_1 .card .content {
    margin: 15px 0 0 0;
    transition: .4s all ease-out;
    padding: 5px 5px;
}

#products_section_1 .card .top_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

#products_section_1 .card h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 0 0 0;

}

#products_section_1 .card .tags {
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--secondary-color);
    margin: 0 0 0;
}

#products_section_1 .card p {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    margin: 6px 0 0;

}

#products_section_1 .card:hover .content {
    transform: translateY(-70px);
    background-color: white;
    padding: 10px 20px;
}

#products_section_1 .card:hover img {
    transform: scale(1.04);
}


/* --------------------------  Products Page End ------------------ */
















/* --------------------------  About Us Page Start ------------------ */


#about_us_banner_section {
    width: 100%;
    height: auto;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 180px 0 100px 0;
    margin-top: var(--header-height);

}

#about_us_banner_section h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 52px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    max-width: 660px;
    position: relative;
}

#about_us_banner_section p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    max-width: 702px;
    margin: 14px 0 0 0;
}


#about_us_section_1 {
    padding: 80px 0 82px;
}

#about_us_section_1 .section_1_main {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 150px;
}

#about_us_section_1 .section_1_main .left_box {
    width: 589px;
    max-width: 100%;
}

#about_us_section_1 .section_1_main .left_box h3 {
    font-size: var(--title-size);
    font-weight: 700;
    line-height: var(--title-line-height);
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 0 0;
    max-width: 380px;
}

#about_us_section_1 .section_1_main .left_box p {
    font-size: var(--description-size);
    font-weight: 400;
    line-height: var(--description-line-height);
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    max-width: 100%;
    margin: 20px 0 0;
}

#about_us_section_1 .section_1_main .right_box {
    width: 480px;
    max-width: 100%;
}

#about_us_section_1 .section_1_main .right_box img {
    border-radius: 8px;
}

#about_us_section_2 {
    padding: 70px 0 70px 0;
    width: 100%;
    height: auto;
    background-color: var(--bg-primary-light);

}

#about_us_section_2 .cta_box {
    margin: 60px auto 0;
}

#about_us_section_2 .upper_section_2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

#about_us_section_2 .lower_section_2 {
    padding-top: 60px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}



#about_us_section_2 h3 {
    font-size: var(--title-size);
    font-weight: 700;
    line-height: var(--title-line-height);
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 30px 0 0;
    max-width: 100%;
}

#about_us_section_2 p {
    font-size: var(--description-size);
    font-weight: 400;
    line-height: var(--description-line-height);
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    max-width: 100%;
    margin: 8px 0 0 0;

}

#about_us_section_2 ul {
    padding: 20px 0 0 0;
}

#about_us_section_2 ul li {
    font-size: var(--description-size);
    font-weight: 400;
    line-height: var(--description-line-height);
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    margin: 6px 0 0 0;
    position: relative;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 15px;
}

#about_us_section_2 .upper_section_2 .right_box {
    max-width: 580px;
}

#about_us_section_2 .upper_section_2 .left_box {
    max-width: 440px;
}

#about_us_section_2 .lower_section_2 .left_box {
    max-width: 440px;
}


#about_us_section_2 .lower_section_2 .right_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: self-start;
    max-width: 580px;

}


#about_us_section_3 {
    padding: 80px 0 80px;
}

#about_us_section_3 .section_3_box {
    margin: 0 auto;
    width: 1142px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 9px 48px 0px rgba(0, 0, 0, 0.12);
    padding: 25px 30px 25px 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 33px;
}

#about_us_section_3 .section_3_box .left_box {}

#about_us_section_3 .section_3_box .left_box h6 {
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 0px 0 0;
    max-width: 100%;
}

#about_us_section_3 .section_3_box .left_box h6 span {
    font-size: 19px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0.04em;
    text-align: left;
    margin: 0;
    text-transform: capitalize;
}

#about_us_section_3 .section_3_box .left_box p {
    font-size: var(--description-size);
    font-weight: 400;
    line-height: var(--description-line-height);
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    margin: 6px 0 0;
    max-width: 680px;
}

#about_us_section_3 .section_3_box .left_box a {
    width: 160px;
    height: 48px;
    border-radius: 5px;
    background: rgba(241, 203, 21, 1);
    box-shadow: 0 4px 14px 0 rgba(170, 207, 63, 0.36);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 12px;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.04em;
    text-align: center;
    color: rgba(0, 0, 0, 1);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s all linear;
}

#about_us_section_3 .section_3_box .left_box a:hover {
    border: 1px solid rgba(241, 203, 21, 1);
    background: rgba(242, 243, 247, 1);
}

#about_us_section_3 .section_3_box .right_box {
    max-width: 300px;
    border-radius: 4px;
}






/* --------------------------  About Us Page End ------------------ */





#global_strip_section {
    padding: 10px 0 10px 0;
    background: var(--primary-color);
    width: 100%;
    height: auto;

}



#global_strip_section .strip_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}


#global_strip_section .strip_wrapper #section_logo_main {
    max-width: 383px;

}

#global_strip_section .strip_wrapper .content {}

#global_strip_section .strip_wrapper .content h3 {
    font-size: 38px;
    font-weight: 700;
    line-height: 48px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    max-width: 500px;

}



#global_strip_section .strip_wrapper .content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    max-width: 526px;
    margin: 18px 0 0 0;

}


#global_strip_section .strip_wrapper .content .cta_box {
    margin: 28px 0 0 0;
    justify-content: flex-start;
}





/* --------------------------  Why WefanWolle Page Start ------------------ */








#why_bnk_banner_section {
    background: var(--primary-color);
    height: 100%;
    position: relative;
    padding: 80px 0 80px;
    margin-top: var(--header-height);
}

#why_bnk_banner_section h1 {
    font-size: 46px;
    font-weight: 700;
    line-height: 58px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;

}

#why_bnk_banner_section h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 38px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    max-width: 496px;
    margin: 18px 0 0 0;
}


#why_bnk_section_1 {
    padding: 53px 0 51px 0;
    background-color: #fff;
    width: 100%;
    height: auto;
}

#why_bnk_section_1 .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1175px;
    margin: 0 auto;
}

#why_bnk_section_1 .wrapper #section_image_main {
    max-width: 574px;
}



#why_bnk_section_1 .wrapper h4 {
    font-size: 38px;
    font-weight: 700;
    line-height: 48px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    max-width: 563px;

}

#why_bnk_section_1 .wrapper h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #333333;
    max-width: 559px;
    margin: 18px 0 0 0;
}






#why_bnk_section_2 {
    padding: 70px 0 70px 0;
    width: 100%;
    height: auto;
    background: #EFF2FC;

}

#why_bnk_section_2 h3 {
    font-size: 38px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    max-width: 580px;
    margin: 0 auto;
}


#why_bnk_section_2 h6 {
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #333333;
    max-width: 636px;
    margin: 15px auto 0;
}

#why_bnk_section_2 .cards_wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 35px;
    margin: 42px auto 0;
    flex-wrap: wrap;
}


#why_bnk_section_2 .cards_wrapper .card {
    width: 370px;
    max-width: 100%;
    min-height: 448px;
    height: auto;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 0px 14px 34px 0px #545DB326;
    padding: 27px 25px 30px 43px;
    position: relative;

}

#why_bnk_section_2 .cards_wrapper .card::before {
    content: url("../assets/blue-tick.svg");
    position: absolute;
    top: 31px;
    left: 0;
}

#why_bnk_section_2 .cards_wrapper .card:nth-child(4) {
    min-height: 391px;
}

#why_bnk_section_2 .cards_wrapper .card:nth-child(5) {
    min-height: 391px;
}

#why_bnk_section_2 .cards_wrapper .card:nth-child(6) {
    min-height: 391px;
}

#why_bnk_section_2 .cards_wrapper .card h5 {
    font-size: 20px;
    font-weight: 700;
    line-height: 36px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    max-width: 300px;

}


#why_bnk_section_2 .cards_wrapper .card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #333333;
    max-width: 298px;
    margin: 11px 0 0 0;
}



#why_bnk_section_2 #bottom_text {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #333333;
    max-width: 600px;
    margin: 54px auto 0;
}







/* --------------------------  Why WefanWolle Page End ------------------ */








/* --------------------------  Blog Page Start ------------------ */



#blog_banner_section {
    background: #424242;
    height: 100%;
    position: relative;
    padding: 180px 0 102px;
}



#blog_banner_section h1 {
    font-size: 46px;
    font-weight: 700;
    line-height: 58px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    margin: 0;
}


#blog_banner_section p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    margin: 12px 0 0 0;
    max-width: 557px;

}

#blogs_main_section {
    background: #FFFFFF;
    padding: 79px 0 92px 0;
    width: 100%;
    height: auto;
}


#blogs_main_section .blogs_wrapper {
    display: flex;
    align-items: normal;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;

}

#blogs_main_section .blogs_wrapper .blog_card {
    width: 380px;
    max-width: 100%;
    min-height: auto;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0px 14px 34px 0px #545DB326;
    padding: 11px 11px 30px 11px;
    transition: .4s all ease-out;
}

#blogs_main_section .blogs_wrapper .blog_card:hover {
    transform: scale(1.02);
}

#blogs_main_section .blogs_wrapper .blog_card img {
    border-radius: 10px;
    margin: 0 auto;

}


#blogs_main_section .blogs_wrapper .blog_card h5 {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #333333;
    margin: 21px 0 0 0;

}

#blogs_main_section .blogs_wrapper .blog_card h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 8px 0 0 0;
    max-width: 100%;

}

#blogs_main_section .blogs_wrapper .blog_card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    max-width: 100%;
    margin: 8px 0 0 0;


}

#blogs_main_section .blogs_wrapper .blog_card .read_more_btn {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--secondary-color);
    margin: 18px 0 0 0;
    display: block;
    border: none;
    background: transparent;
    cursor: pointer;

}

#blogs_main_section .blogs_wrapper .blog_card .read_more_btn:hover {
    opacity: .7;
}

#blogs_main_section .blogs_wrapper .blog_card:hover {
    opacity: .9;
}

#blogs_main_section .blogs_wrapper .blog_card .read_more_btn::after {
    content: url("../assets/blog-card-tick.svg");
    position: relative;
    top: 0px;
    left: 3px;
}

#blogs_main_section #noPostsSection_text {
    font-size: 46px;
    font-weight: 700;
    line-height: 64px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #333333;
    max-width: 550px;
    margin: 40px auto;
    border: 1px solid #333;
    padding: 20px;
    text-transform: capitalize;

}


#blogs_main_section #loadMoreBlogs {
    padding: 14px 41px 14px 41px;
    width: auto;
    max-width: 240px;
    height: 50px;
    border-radius: 8px;
    border: 2px solid var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 21.79px;
    text-align: center;
    color: var(--secondary-color);
    margin: 55px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;

}

#blogs_main_section #loadMoreBlogs:hover {
    cursor: pointer;
    opacity: .7;
}


#single_blog_banner {
    background: #424242;
    height: 100%;
    position: relative;
    padding: 200px 0 100px;

}

#single_blog_banner h6 {
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;

}


#single_blog_banner h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 56px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    margin: 9px 0 0 0;
    max-width: 608px;

}

#single_blog_banner img {
    width: 340px;
    border-radius: 8px;
}

#single_blog_banner .author {
    display: none;
    /*   display: flex; */
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin: 23px 0 0 0;
}

#single_blog_banner .author img {
    width: 41px;
}

#single_blog_banner .author h5 {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;

}

#main_content_section {
    padding: 40px 0 100px 0;
    width: 100%;
    height: auto;
    background-color: #fff;

}



#main_content_section .inner_box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#main_content_section .inner_box .content_box {
    max-width: 600px;
    width: 600px;
}

#main_content_section .inner_box .content_box p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    margin: 19px 0 0 0;

}

#main_content_section .inner_box .content_box a {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--third-color);

}

#main_content_section .inner_box .content_box a:hover {
    opacity: .7;
    text-decoration: underline;

}

#main_content_section .inner_box .content_box h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 48px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 30px 0 0 0;

}

#main_content_section .inner_box .content_box img {
    border-radius: 8px;
    margin: 30px auto 0;
}



#main_content_section .inner_box .content_box h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 30px 0 0 0;
}

#main_content_section .inner_box .content_box h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 30px 0 0 0;
}

#main_content_section .inner_box .content_box h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 30px 0 0 0;
    display: flex;
    gap: 12px;
}

#main_content_section .inner_box .content_box h5::before {
    content: url("../assets/blog-tick.svg");
    position: relative;
    top: 3px;
}

#main_content_section .inner_box .content_box ul {
    margin: 3px 0 0 0;
}

#main_content_section .inner_box .content_box ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #333333;
    margin: 17px 0 0 0;
    position: relative;
    padding-left: 36px;
}


#main_content_section .inner_box .content_box ul li::before {
    content: url("../assets/blog-tick.svg");
    position: absolute;
    top: 6px;
    left: 0;
}



#main_content_section .inner_box .content_box ol {
    margin: 3px 0 0 0;
    list-style-type: none;
    padding: 0;
    counter-reset: my-counter;
}

#main_content_section .inner_box .content_box ol li {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    margin: 17px 0 0 0;
    position: relative;
    padding-left: 38px;
}

#main_content_section .inner_box .content_box ol li::before {
    counter-increment: my-counter;
    content: counter(my-counter);
    width: auto;
    padding: 0px 10px;
    height: 24px;
    border-radius: 0px 10px 10px 0px;
    position: absolute;
    top: 4px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;

}

#main_content_section .inner_box .content_box .quote-box {
    width: 100%;
    width: 100%;
    min-height: 181px;
    border-radius: 5px;
    background: #EFF2FC;
    padding: 20px 50px 5px 48px;
    position: relative;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    margin: 47px 0 0 0;
}

#main_content_section .inner_box .content_box .quote-box p {
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
}

#main_content_section .inner_box .content_box .quote-box::before {
    content: "";
    width: 4px;
    height: 75%;
    background: var(--primary-color);
    border-radius: 5px;
    position: absolute;
    left: 21px;
    top: 25px;
}

#main_content_section .inner_box .content_box .quote-box::after {
    content: url("../assets/quote-blog.svg");
    position: absolute;
    right: 19px;
    top: -18px;
}

#main_content_section .inner_box .content_box .quote-box img {
    width: 41px;
    margin: 14px 0 0 0;
}

#main_content_section .inner_box .content_box h6 {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin: 0;
    position: absolute;
    left: 105px;
    bottom: 31px;
    font-style: normal;

}

#main_content_section .inner_box .summary_box {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    background: #EFF2FC;
    padding: 21px;
    margin: 40px 0 0 0;
}

#main_content_section .inner_box .summary_box #summary_title {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 0;

}

#main_content_section .inner_box .summary_box #summary_title::before {
    content: none;
}

#main_content_section .inner_box .summary_box p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    margin: 16px 0 0 0;

}

#main_content_section .inner_box .author_box {
    display: none;
    margin: 51px auto 0;
}

#main_content_section .inner_box .author_box h6 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 0 auto;
    position: static;
}

#main_content_section .inner_box .author_box img {
    margin: 13px auto 0;
    width: 61px;
}

#main_content_section .inner_box .author_box h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #333333;
    margin: 6px auto 0;

}

#main_content_section .inner_box .share-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    max-width: 600px;
    height: auto;
    margin: 16px 0 0 0;
}

#main_content_section .inner_box .share-box h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000000;
    margin: 0;
    position: static;
}

#main_content_section .inner_box .share-box .a2a_kit {
    line-height: 0 !important;
}

#main_content_section .inner_box .author_box p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #333333;
    margin: 17px auto 0;
    max-width: 526px;
}

#main_content_section .inner_box .right_wrapper {
    height: 100%;
    position: sticky;
    top: 121px;
    width: 370px;
    max-width: 100%;
    min-height: 502px;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0px 14px 34px 0px #545DB326;
    padding: 30px 27px 10px;
}

#main_content_section .inner_box .right_wrapper h5 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    max-width: 288px;

}

#main_content_section .inner_box .right_wrapper h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #333333;
    max-width: 315px;
    margin: 7px 0 5px 0;
}

#main_content_section .inner_box .right_wrapper form label {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #444444;
    margin: 11px 0 0 0;
    display: block;
}

#main_content_section .inner_box .right_wrapper form input {
    width: 100%;
    max-width: 100%;
    height: 50px;
    border-radius: 5px;
    background: #FCFCFC;
    border: 1px solid #C4C4C4;
    margin: 1px 0 0 0;
    outline: none;
    padding: 0 0 0 15px;
}


#main_content_section .inner_box .right_wrapper form input[type="submit"] {
    width: 100%;
    max-width: 100%;
    height: 56px;
    border-radius: 8px;
    background: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 21.79px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px auto 0;
    outline: none;
    border: none;
    cursor: pointer;

}

#main_content_section .inner_box .right_wrapper form input[type="submit"]:hover {
    opacity: .7;
}


#main_content_section .inner_box .right_wrapper form .wpcf7-spinner {
    margin: 10px auto 0 !important;
    display: block !important;
}

.wpcf7-response-output {
    margin: 5px !important;
}



#related_blogs_section {
    padding: 80px 0 80px 0;
    width: 100%;
    height: auto;
    background-color: var(--bg-primary-light);
}


#related_blogs_section h3 {
    font-size: var(--title-size);
    font-weight: 700;
    line-height: var(--title-line-height);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    max-width: 740px;
    margin: 0px auto;
}


#related_blogs_section .cta_box {
    margin: 50px auto 0;
}

#related_blogs_section .blogs_wrapper_2 {
    margin: 40px auto 0;
    display: flex;
    align-items: normal;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}


#related_blogs_section .blogs_wrapper_2 .blog_card {
    width: 370px;
    max-width: 100%;
    min-height: auto;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0px 14px 34px 0px #545DB326;
    padding: 11px 11px 30px 11px;
}

#related_blogs_section .blogs_wrapper_2 .blog_card img {
    border-radius: 8px;
    margin: 0 auto;
}

#related_blogs_section .blogs_wrapper_2 .blog_card h5 {
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #333333;
    margin: 21px 0 0 0;
}

#related_blogs_section .blogs_wrapper_2 .blog_card h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 8px 0 0 0;
    max-width: 326px;
}

#related_blogs_section .blogs_wrapper_2 .blog_card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #333333;
    max-width: 306px;
    margin: 8px 0 0 0;
}

#related_blogs_section .blogs_wrapper_2 .blog_card .read_more_btn {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 18px 0 0 0;
    display: block;
    border: none;
    background: transparent;
    cursor: pointer;
}

#related_blogs_section .blogs_wrapper_2 .blog_card .read_more_btn::after {
    content: url("../assets/blog-card-tick.svg");
    position: relative;
    top: 0px;
    left: 3px;
}

#related_blogs_section .blogs_wrapper_2 .blog_card:hover {
    opacity: .9;
}


#related_blogs_section .blogs_wrapper_2 .blog_card .read_more_btn:hover {
    opacity: .7;
}







/* --------------------------  Blog Page End ------------------ */






/* --------------------------  Contact US Page Start ------------------ */



#contact_banner_section {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 100%;
    position: relative;
    padding: 191px 0 100px;
    margin-top: var(--header-height);
}



#contact_banner_section h1 {
    font-size: 46px;
    font-weight: 700;
    line-height: 58px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    margin: 0;
}


#contact_banner_section h2 {
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    margin: 20px 0 0 0;
    max-width: 580px;

}



#contact_section_1 {
    padding: 50px 0 75px 0;
    width: 100%;
    height: auto;
    background-color: #fff;
}

#contact_section_1 .wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#contact_section_1 .wrapper .content_wrapper {}

#contact_section_1 .wrapper .content_wrapper .phone_number,
.email,
.address {
    font-size: 20px;
    font-weight: 400;
    line-height: 27.24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #444444;
    margin: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
    max-width: 410px;

}

#contact_section_1 .wrapper .content_wrapper .phone_number::before {
    content: url("../assets/call-3.svg");
    position: relative;
    top: 2px;
}

#contact_section_1 .wrapper .content_wrapper .email {
    margin: 14px 0 0 0;

}

#contact_section_1 .wrapper .content_wrapper .email::before {
    content: url("../assets/message.svg");
    position: relative;
    top: 2px;
}

#contact_section_1 .wrapper .content_wrapper .address {
    margin: 19px 0 0 0;
}

#contact_section_1 .wrapper .content_wrapper .address::before {
    content: url("../assets/location.svg");
    position: relative;
    top: 2px;
}

#contact_section_1 .wrapper .content_wrapper a:hover {
    opacity: .7;
}


#contact_section_1 .wrapper .form_wrapper form {
    width: 550px;
    max-width: 100%;
    min-height: 400px;
    border-radius: 5px;
    background: #FFFFFF;
    box-shadow: 0px 4px 64px 0px #44539F26;
    padding: 14px 40px 5px;
    margin-top: -370px;
    position: relative;
}



#contact_section_1 .wrapper .form_wrapper form .row-50 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    margin: 19px 0 0 0;
}

#contact_section_1 .wrapper .form_wrapper form .row-100 {

    margin: 19px 0 0 0;
}

#contact_section_1 .wrapper .form_wrapper form label {
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #444444;

}


#contact_section_1 .wrapper .form_wrapper form input,
select {
    background: #FCFCFC;
    border: 1px solid #C4C4C4;
    width: 226px;
    max-width: 100%;
    height: 50px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #444444;
    outline: none;
    padding: 0 0 0 15px;

}

#contact_section_1 .wrapper .form_wrapper form select {
    cursor: pointer;
}


#contact_section_1 .wrapper .form_wrapper form textarea {
    width: 100%;
    max-width: 100%;
    height: 100px;
    background: #FCFCFC;
    border: 1px solid #C4C4C4;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #444444;

}


#contact_section_1 .wrapper .form_wrapper form input[type="submit"] {
    width: 100%;
    width: 100%;
    height: 56px;
    border-radius: 8px;
    background: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 21.79px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-items: center;
    margin: 30px auto 0;
    text-transform: uppercase;
    border: none;

}

#contact_section_1 .wrapper .form_wrapper form input[type="submit"]:hover {
    opacity: .8;
    cursor: pointer;
}

#contact_section_1 .wrapper .form_wrapper form .wpcf7-response-output {
    margin: 0 0 20px 0 !important;
    text-align: center !important;
    font-size: 15px !important;
}

#contact_section_1 .wrapper .form_wrapper form .wpcf7-spinner {
    margin: 10px auto 5px;
    display: flex;
}


#contact_section_1 .google_map iframe {
    width: 100%;
    max-width: 100%;
    height: 440px;
    margin: 66px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;

}


#faq-section {
    background: #FFFFFF;
    padding: 65px 0 0px;
}


#faq-section h3 {
    font-size: var(--title-size);
    font-weight: 700;
    line-height: var(--title-line-height);
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 0 auto;

}

#faq-section .faq-sec {
    max-width: 740px;
    margin: 38px auto 0;
}

#faq-section .faq-wrap {
    margin: 0 0px 26px;
    padding: 20px 24px 16px 28px;
    border-radius: 10px;
    background: #FFFFFF;
    box-shadow: 0px 14px 34px 0px #545DB326;

}

#faq-section .faq-head:hover {
    opacity: 0.9;
}

#faq-section .faq-wrap:last-of-type {
    margin: 0 0 40px;
}

#faq-section .faq-head {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 0px !important;
    padding-top: 0px;
    font-size: 22px;
    font-weight: 700;
    line-height: 34px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);


}

#faq-section .faq-content {
    padding-top: 9px;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    max-width: 640px;
    margin: 0px;


}

#faq-section .faq-content p {
    padding-top: 1px;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    max-width: 100%;
    margin: 0px;
    color: var(--description-color);

}

#faq-section .faq-content ul {
    padding-left: 25px;
    padding-bottom: 15px;
}

#faq-section .faq-content li {
    padding-top: 9px;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    max-width: 613px;
    margin: 0px;
    color: #333;
    list-style: disc;

}

#faq-section .faq-head.active {
    padding-bottom: 0px;
}

#faq-section .faq-content {
    display: none;
}

#faq-section .faq-head.active:after {
    content: url("../assets/up.svg");
    right: 16px;
    margin-left: 20px;
}

#faq-section .faq-head:after {
    content: url("../assets/down.svg");
    right: 16px;
    margin-left: 20px;
}

#faq-section .cta_main {
    margin: 48px auto 0;
    display: table;
}

/* --------------------------  Contact US Page End ------------------ */

/* --------------------------  Basic Default Page Start ------------------ */

#banner_section_default {
    background: var(--primary-color);
    height: 100%;
    position: relative;
    padding: 200px 0 120px;
    margin-top: var(--header-height);
}


#banner_section_default h1 {
    font-size: 46px;
    font-weight: 700;
    line-height: 58px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
}



#banner_section_default h2 {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    max-width: 675px;
    margin: 18px 0 0 0;
}


#main_section_default {
    padding: 40px 0 40px 0;
    width: 100%;
    height: auto;
    background: #FFF;
}



#main_section_default p {
    font-size: var(--description-size);
    font-weight: 400;
    line-height: var(--description-line-height);
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--description-color);
    margin: 15px 0 0;
}

#main_section_default h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 15px 0 0 0;
}

#main_section_default h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 36px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 15px 0 0 0;
}

#main_section_default h4 {
    font-size: 28px;
    font-weight: 700;
    line-height: 38px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 15px 0 0 0;
}

#main_section_default ul {
    list-style: disc;
    padding: 0 0 0 21px;
}


#main_section_default ul li {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #333333;
    margin: 12px 0 0 0;
    list-style: disc;
}

#main_section_default a {
    font-size: 18px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: var(--primary-color);
    margin: 15px 0 0;
    cursor: pointer;
    text-decoration: underline;
}

#main_section_default a:hover {
    opacity: 0.75;
}

/* --------------------------  Basic Default Page End ------------------ */












/* --------------------------  Media Queries  ------------------ */

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

@media (max-width: 1200px) {
    #about_us_banner_section .container {
        justify-content: center;
        gap: 40px;
    }

    #products_banner_section .container {
        justify-content: center;
        gap: 40px;
    }

    #blog_banner_section .container {
        justify-content: center;
        gap: 40px;
    }

    #banner_section_default>div {
        gap: 40px;
        align-items: center;
        justify-content: flex-start;
    }

    #banner_section_default img {
        margin: 0 auto;
        display: none;
    }

    .header .nav-wrap .menu-item-has-children .sub-menu {
        padding: 10px 10px 10px 10px;
        top: 52px;
        left: -240px;
    }

    #menu-item-627 .sub-menu {
        left: -360px;
    }

    .nav-list li a {
        font-size: 15px;
    }

    .nav-list .current-menu-item a {
        font-size: 14px;
    }

    :root {
        --title-size: 38px;
        --title-line-height: 50px;
    }

    #home_section_1 .card {
        max-width: 40%;
    }

    #home_section_2 .wrapper {
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 50px;
    }

    #home_section_3 .wrapper .card {
        width: 900px;
    }

    #stats_section .stats_wrapper {
        padding: 40px 0 130px;
    }

    #stats_section .stats_wrapper .stats_box {
        gap: 15px;
        position: absolute;
        bottom: -190px;
        flex-wrap: wrap;
        max-width: 640px;
    }

    #home_quote_form .wrapper {
        align-items: center;
        justify-content: center;
        gap: 40px;
        flex-direction: column;
    }

    #stats_section {
        margin: 60px 0 250px;

    }

    #about_us_section_1 .section_1_main {
        gap: 70px;
    }


    #about_us_section_2 .upper_section_2 {
        gap: 40px;
    }


    #about_us_section_2 .lower_section_2 .right_box {
        max-width: 500px;
    }

    #about_us_section_2 .lower_section_2 {
        gap: 40px;

    }

    #about_us_section_2 .upper_section_2 .right_box {
        max-width: 500px;
    }

    #about_us_section_3 .section_3_box {
        width: 780px;
        flex-direction: column-reverse;
    }

    #about_us_section_3 .section_3_box .left_box p {
        max-width: 100%;
    }

    #testimonial_main_section .review-box .box_wrap {

        max-width: 450px;
    }

    #testimonial_main_section .review-box {
        gap: 20px;
    }

    #single_blog_banner .blog_single_banner_wrapper {
        gap: 40px;
        justify-content: flex-start;
        align-items: center;
    }

    #main_content_section .inner_box .content_box {
        max-width: 100%;
        width: 520px;
    }

    #contact_banner_section {

        padding: 191px 0 190px;
    }

    #contact_section_1 .wrapper {
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
        gap: 40px;
    }


    #contact_section_1 .wrapper .form_wrapper form {
        margin-top: -190px;
    }

    #contact_banner_section h1 {
        text-align: center;
        margin: 0 auto;
    }

    #contact_banner_section h2 {
        text-align: center;
        margin: 20px auto 0;
    }

    #contact_section_1 .google_map iframe {
        height: 320px;
    }

    #home_section_2 .content_wrapper {
        padding-top: 0;
    }












}



@media (min-width: 992px) {
    .header .nav-wrap .menu-item-has-children:hover>.sub-menu {
        display: flex;
    }




}


@media (max-width: 992px) {
    .menu-header-container {
        width: 100%;
        max-width: 680px;
        margin: 0 auto;
    }

    .header .nav-wrap .menu-item-has-children .sub-menu li a {
        background: transparent !important;
    }

    .header .nav-wrap .menu-item-has-children .sub-menu li .sub-menu li {
        background: transparent !important;
    }

    .header .nav-wrap .menu-item-has-children .sub-menu li .sub-menu li a {
        background: transparent !important;
    }

    .header .header_btn a {
        display: inline-block;
    }

    .menu-mobile-container {
        display: block;
    }

    .header .sub-menu li a {
        font-size: 14px !important;
    }

    .header .nav-wrap .menu-item-has-children .sub-menu li {
        padding: 4px 0px !important;
        justify-content: flex-start;
        background: transparent !important;
        margin: 0px 0;
        border-radius: 0;
        width: 100%;
    }

    #menu-item-627 .sub-menu {
        max-height: 100%;
        overflow-y: visible;
    }

    #menu-item-360 .sub-menu {
        width: 100%;
    }

    .hamburger {
        display: block;
    }

    .nav-wrap {
        position: fixed;
        left: 0;
        transform: translateY(-100%);
        background: var(--primary-color);
        transition: all 0.5s linear;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        z-index: 0;
        flex-direction: column;
        align-items: flex-start !important;
        padding: 20px 0 30px;

    }

    .nav-wrap.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        right: 0;
        z-index: 99;
        top: 115px;
        left: 0;
        margin: 0;
        height: auto;
        overflow-y: scroll;
        max-height: 480px;
    }

    .header .nav-wrap .menu-item-has-children .sub-menu {
        background: var(--primary-color);
        flex-direction: column;
        position: static;
        box-shadow: none;
        width: 550px;

    }

    #menu-item-1224 .plusminus {
        display: none;
    }

    #menu-item-1225 .plusminus {
        display: none;
    }

    .header .nav-wrap .menu-item-has-children .sub-menu li::after {
        left: -14px;
        right: auto;
        transform: translate(0);
        bottom: 11px;
    }

    .nav-list .current-menu-item a {
        font-weight: 600;
    }

    .header .nav-wrap .cta-box {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

    .header .upper_row {
        width: 440px;
    }

    .header .nav-wrap .cta-button {
        width: 140px;
        height: 48px;
        background: #fff;
        color: rgba(44, 44, 44, 1);

    }

    .nav-list {
        flex-direction: column;
        align-items: unset;
        opacity: 0;
        visibility: hidden;
        transition-delay: 0.5s;
        transition-duration: 1s;
        transition-property: all;
        gap: 0px;
        max-width: 100%;
    }

    .nav-wrap.is-open .nav-list {
        opacity: 1;
        visibility: visible;
    }

    .nav-list li {
        padding: 10px 10px;
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .header .nav-wrap .menu-item-has-children .sub-menu li .sub-menu {
        display: none;
    }

    .header .nav-wrap .menu-item-has-children:after {
        content: none;
    }


    .nav-list li a {
        text-align: left;
        display: inline-block;
        padding: 2px 0;
    }

    .nav-list li a:hover {
        opacity: .75;
    }

    .header .nav-wrap .menu-item-has-children .sub-menu li a:hover {
        opacity: .75;
    }

    .nav-list li a::after {
        background-color: #FFF;
    }

    .header .header_btn a {
        margin: 15px 0 0 5px;
    }

    .nav-list .current-menu-item::after {
        left: -7%;
        bottom: 16px;
    }

    .nav-list li.with-submenu {
        display: block;
    }

    .nav-list li.with-submenu::after {
        border-color: #FFF;
        right: 10px;
        top: 12px;
    }

    .nav-list li.with-submenu:hover::after {
        transform: rotate(45deg);
        margin-top: 0;
    }

    .nav-list li.with-submenu.is-open::after {
        transform: rotate(225deg);
        margin-top: 5px;
    }

    .nav-list li.with-submenu .submenu {
        position: static;
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-radius: 0;
        border-top: 1px solid #ccc;
        display: none;
        transition: auto;
        margin: 10px 0;
    }

    .nav-list li.with-submenu .submenu li {
        padding: 7px 10px;
    }

    .nav-list li.with-submenu .submenu li:hover a {
        background-color: transparent;
    }

    .nav-list li.with-submenu .submenu li a {
        display: inline-block;
        padding: 2px 0;
    }

    .nav-list li.with-submenu .submenu li a::after {
        display: block;
    }

    .row-wrap .nav-wrap .button {
        max-width: 720px;
        margin: 0 auto;
        width: 100%;
    }

    .row-wrap .nav-wrap .button a {
        max-width: 160px;
        height: 48px;
        padding: 0 20px;
        width: 100%;
        font-size: 14px;

    }

    .nav-wrap.is-open .menu-mobile-container {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

    .header .nav-wrap .current-menu-item a {
        font-weight: 700;
    }



    /* Menu */

    .plusminus {
        width: 12px;
        height: 12px;
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 14px;
        pointer-events: none;
    }

    #menu-item-336 .plusminus {
        right: 10px;
        top: 16px;
    }


    .plusminus.active:before {
        transform: translatey(-50%) rotate(-90deg);
        opacity: 0;
    }

    .plusminus.active:after {
        transform: translatey(-50%) rotate(0);
    }

    .plusminus:before {
        content: "";
        display: block;
        background-color: #fff;
        position: absolute;
        top: 50%;
        left: 0;
        transition: 0.35s;
        width: 100%;
        height: 3px;
    }

    .plusminus:after {
        content: "";
        display: block;
        background-color: #fff;
        position: absolute;
        top: 50%;
        left: 0;
        transition: 0.35s;
        width: 100%;
        height: 3px;
    }


    .sub-menu .plusminus:before {
        background-color: #fff !important;
    }

    .sub-menu .plusminus:after {
        background-color: #fff !important;
    }

    .plusminus:before {
        transform: translatey(-50%);
    }

    .plusminus:after {
        transform: translatey(-50%) rotate(90deg);
    }


    /* ENds */


    #home_banner_section .wrapper {
        align-items: center;
        justify-content: space-between;
        width: 100%;
        flex-direction: column;
        gap: 80px;
    }

    :root {
        --title-size: 34px;
        --title-line-height: 46px;
    }

    #home_banner_section h1 {
        font-size: 48px;
        line-height: 60px;
        max-width: 640px;
    }

    #home_section_1 .cards_wrapper {
        align-items: stretch;
    }

    #home_section_1 .card {
        max-width: 45%;
    }

    #home_section_3 .wrapper .card:nth-child(odd) {
        flex-direction: column-reverse;
        gap: 50px;
    }

    #home_section_3 .wrapper .card {
        width: 540px;
        gap: 50px;

    }

    #home_section_3 .wrapper .card .content {
        max-width: 480px;
        border-right: none;
    }

    #home_section_3 .wrapper .card img {
        width: 90%;
        transition: all 0.5s ease-in-out;
    }

    #home_section_3 .wrapper .card {
        width: 540px;
        flex-direction: column-reverse;
    }

    #stats_section .stats_wrapper {
        padding: 40px 0 240px;
    }

    #stats_section .stats_wrapper .stats_box {
        bottom: -85px;
        flex-wrap: wrap;
        max-width: 640px;
    }



    footer .upper_footer .footer_wrapper .right_wrapper {
        justify-content: flex-start;
        gap: 80px;
        width: 100%;
        margin-top: 20px;
    }

    .scrolled_header .hamburger .line {
        background-color: var(--secondary-color);
    }

    .nav-list .current-menu-item::after {
        content: none;
    }

    .row-wrap .logo-wrap a img {
        width: 160px;
    }

    #home_section_3 .cards_wrapper {
        gap: 21px;
        margin: 40px auto 0;
    }

    #home_section_3 .cards_wrapper .card img {
        width: 60px;
    }

    #home_banner_section {
        padding: 150px 0 50px 0;
    }

    #home_banner_section .video-bg::after {
        background: rgba(0, 0, 0, 0.7);
    }

    .header.scrolled_header .header_btn a {
        background: #FFF;
        color: var(--secondary-color);
    }

    .header.scrolled_header a {
        color: #fff;
    }

    .header {
        padding: 40px 0 0;
    }

    #blog_banner_section #banner_main_image {
        display: none;
    }


    #main_content_section .inner_box {
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        gap: 40px;
    }


    #stats_section {
        margin: 60px 0 140px;
    }

    #main_content_section .inner_box .content_box {
        max-width: 100%;
        width: 100%;
    }


    #single_blog_banner .blog_single_banner_wrapper {
        gap: 40px;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
    }

    #single_blog_banner h1 {
        font-size: 38px;
        line-height: 48px;
        text-align: center;
        margin: 9px auto 0;
        max-width: 608px;
    }

    #single_blog_banner {
        padding: 200px 0 50px;
    }

    #single_blog_banner h6 {
        text-align: center;
    }

    #testimonial_main_section .review-box .box_wrap {
        justify-content: center;
    }

    #testimonial_banner_section h1 {
        font-size: 42px;
        line-height: 52px;
    }

    #testimonial_main_section .review-box .box_wrap .top img {
        margin: 0 auto;
    }

    #testimonial_main_section .review-box .box_wrap p {
        text-align: center;
        margin: 15px auto 0;
    }

    #testimonial_main_section .review-box .box_wrap .bottom {
        margin: 20px 0 0 0;
    }

    #about_us_banner_section h1 {
        font-size: 38px;
        line-height: 48px;
    }

    #products_banner_section h1 {
        font-size: 38px;
        line-height: 48px;
    }

    #about_us_section_1 .section_1_main {
        gap: 40px;
        flex-direction: column-reverse;
    }

    #about_us_section_2 .upper_section_2 {
        gap: 40px;
        flex-direction: column;
        width: 580px;
        margin: 0 auto;

    }

    #about_us_section_2 .upper_section_2 .right_box {
        max-width: 100%;
    }

    #about_us_section_2 .lower_section_2 {
        gap: 40px;
        flex-direction: column;
        width: 580px;
        margin: 0 auto;
    }

    #about_us_section_1 .section_1_main .left_box {
        width: 580px;
    }

    #about_us_section_2 .lower_section_2 .right_box {
        max-width: 100%;
    }

    #home_section_4 .wrapper {
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        gap: 20px;
    }

    #home_section_3 .wrapper .card h6 {
        margin: 0 0 5px 0;
    }

    #products_section_1 .card {
        max-width: 45%;
    }



}

@media (max-width: 768px) {
    .header {
        padding: 50px 0 0;
    }

    .header .upper_row .inner_container #header_email_address {
        display: none;
    }

    .header .upper_row {
        width: 180px;
    }

    #mobile_image_section {
        margin-top: var(--header-height);

    }

    #mobile_image_section #mobile_image {
        display: block !important;
        border-bottom: 2px solid white;
        width: 100%;
    }

    #facilities_single_banner_section {
        padding: 60px 0 30px;
        margin-top: 0;
        background: var(--primary-color) !important;
    }

    .header .nav-wrap .menu-item-335 .sub-menu .menu-item-336 .sub-menu {
        width: 92%;
    }

    .menu-header-container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .header .nav-wrap .cta-box {
        max-width: 540px;
    }

    .row-wrap .logo-wrap a img {
        width: 160px;
    }

    .nav-wrap.is-open .menu-mobile-container {
        max-width: 540px;
    }

    .row-wrap .nav-wrap .button {
        max-width: 540px;
    }

    .header .nav-wrap .menu-item-335 .sub-menu {
        width: 97%;
    }

    .nav-wrap.is-open {
        height: auto;
        overflow-y: hidden;
        max-height: 480px;
    }

    .upper-row-wrap .box h4 {
        font-size: 10px;
    }

    .upper-row-wrap .box a {
        font-size: 12px;
    }

    .upper-row-wrap .box img {
        height: 12px;
    }

    .upper-row-wrap .box .mail {
        gap: 10px;
        margin-left: 0px;
    }

    :root {
        --title-size: 30px;
        --title-line-height: 40px;
    }

    #home_banner_section h1 {
        font-size: 40px;
        line-height: 52px;
        max-width: 640px;
    }

    #home_section_1 .card {
        max-width: 100%;
        width: 340px;
    }

    #stats_section .stats_wrapper {
        padding: 40px 0 40px;
    }

    #stats_section .stats_wrapper .stats_box {
        gap: 15px;
        flex-wrap: wrap;
        max-width: 640px;
        margin-top: 60px;
        position: static;
    }

    #stats_section {
        margin: 10px 0 90px;
    }

    #home_blogs_section .blogs_wrapper .blog_card {
        max-width: 380px;
        padding: 20px 20px 20px 20px;
        gap: 40px;
        flex-direction: column;
    }

    #home_section_4 .wrapper .content_wrapper {
        padding: 0 40px 0 0;
    }

    #home_quote_form .wrapper .right_wrapper h3 {
        font-size: 30px;
        line-height: 40px;
    }


    #main_content_section .inner_box .content_box {
        max-width: 100%;
    }

    #home_section_3 {
        overflow: hidden;
    }

    #home_section_2 h3 {
        margin: 15px auto 0;
    }

    #home_section_2 .cta_box {
        justify-content: center;
    }

    #home_section_4 .team_wrapper {
        margin: 50px auto 0px;
    }

    #home_section_4 .team_wrapper .card .content a {
        margin: 25px 0px 0px;
    }

    #about_us_section_2 .upper_section_2 {
        gap: 20px;
        width: 100%;
        margin: 0 auto;
    }

    #about_us_section_2 .lower_section_2 {
        gap: 20px;
        width: 100%;
        margin: 0 auto;
    }

    #about_us_section_2 .upper_section_2 .left_box img {
        width: 320px;
    }


    #about_us_section_2 .lower_section_2 .left_box img {
        width: 320px;
    }

    .page-id-445 #stats_section {
        margin: 10px 0 0px;
    }

    #testimonial_banner_section {
        padding: 150px 0 70px 0;
    }

    #testimonial_banner_section h1 {
        font-size: 40px;
        line-height: 50px;
    }

    #gallery_section .banner_title {
        font-size: 40px;
        line-height: 50px;
    }

    #blog_banner_section h1 {
        font-size: 40px;
        line-height: 50px;
    }

    #contact_banner_section h1 {
        font-size: 40px;
        line-height: 50px;
    }

    #contact_banner_section h2 {
        font-size: 18px;
        line-height: 28px;
    }

    #faq-section .faq-wrap {
        padding: 15px 24px 15px 15px;
    }


    #main_content_section .inner_box .content_box h2 {
        font-size: 30px;
        line-height: 40px;
        margin: 20px 0 0 0;
    }

    #home_section_3 .cards_wrapper {
        gap: 25px;
        flex-direction: column;
        align-items: center;
    }

    #home_section_3 .cards_wrapper .card {
        border-right: none;
        padding-right: 0;
        width: 100%;
        border-bottom: 1px solid var(--secondary-color);
        padding-bottom: 25px;
    }

    #home_section_3 .cards_wrapper .card:last-of-type {
        border-bottom: none;
    }

    #home_section_3 h4 {
        max-width: 400px;
    }

    #home_section_3 .cards_wrapper {
        gap: 30px;
        flex-direction: column;
        align-items: center;
        max-width: 240px;
    }

    footer .lower_footer .lower_footer_wrapper {
        flex-direction: column;
    }

    #home_banner_section .video-bg {
        display: none;
    }

    #home_banner_section {
        padding: 160px 0 50px;
        background-image: url("../assets/mobile-bg.webp");
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

}




@media (max-width: 576px) {

    .hamburger {
        margin-top: 0px;
    }

    .header .nav-wrap .menu-item-has-children .sub-menu {
        width: 100%;
    }

    .header .nav-wrap .menu-item-has-children .sub-menu li {
        width: 100%;
    }

    .header .nav-wrap .menu-item-has-children .sub-menu {
        padding: 5px 9px 5px 10px;
    }

    .header .nav-wrap .menu-item-has-children .sub-menu li .sub-menu li {
        width: 100%;
    }

    .header .nav-wrap .menu-item-335 .sub-menu .menu-item-336 .sub-menu {
        left: 10px;
    }

    .header .nav-wrap .menu-item-335 .sub-menu .menu-item-336 .sub-menu {
        width: 95%;
    }

    .header .nav-wrap .cta-box {
        padding: 0 20px;
    }

    .nav-wrap.is-open .menu-mobile-container {
        padding: 0 20px;

    }

    .header {
        height: auto;
        padding: 50px 0 0;
    }


    .nav-list li a {
        font-size: 16px;
    }

    .header .nav-wrap .menu-item-335 .sub-menu li a {
        font-size: 15px;
    }

    .row-wrap .nav-wrap .button {
        padding: 0 20px;
    }

    .header .nav-wrap .menu-item-335 .sub-menu {
        width: 97%;
    }

    .row-wrap .logo-wrap h6 {
        font-size: 12px;
        max-width: 240px;
    }

    .row-wrap .logo-wrap a {
        max-width: 250px;
        display: block;
    }

    .upper-row-wrap .box h4 {
        display: none;
    }

    :root {
        --description-line-height: 28px;
    }



    #home_banner_section p {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 15px 0;
        border-radius: 8px;
    }

    #home_banner_section h1 {
        font-size: 34px;
        line-height: 44px;
        max-width: 380px;
    }

    #home_banner_section h2 {
        font-size: 16px;
        line-height: 26px;
        max-width: 380px;
    }


    #home_banner_section .cta_box {
        margin: 44px 0 0 0;
        justify-content: center;
    }

    #home_banner_section .cta_2 {
        padding: 12px 36px 12px 36px;
    }

    #home_section_1 {
        padding: 40px 0 70px 0;
    }

    #home_section_1 h4 {
        max-width: 300px;
    }

    #home_section_2 .wrapper {
        gap: 40px;
    }

    #home_section_2 .cta_box {
        justify-content: center;
    }

    #home_section_3 .wrapper .card {
        width: 100%;
        max-width: 390px;
    }



    #home_quote_form .wrapper #section_image_main {
        width: 480px;
        max-width: 100%;
    }

    #home_quote_form .wrapper .right_wrapper {
        padding-top: 10px;
        max-width: 100%;
    }

    #home_quote_form .wrapper .right_wrapper h3 {
        font-size: 26px;
        line-height: 36px;
    }

    #home_quote_form .wrapper .right_wrapper h4 {
        font-size: 16px;
        line-height: 26px;
        margin: 10px 0 0 0;
    }

    #home_quote_form .wrapper .right_wrapper form .row-50 {
        align-items: flex-start;
        justify-content: center;
        gap: 19px;
        margin-top: 20px;
        flex-direction: column;
    }

    #home_quote_form .wrapper .right_wrapper form input {
        width: 100%;
        max-width: 100%;
        height: 46px;
        border-radius: 8px;
    }

    #home_quote_form .wrapper .right_wrapper form .row-50 div {
        width: 100%;
    }

    #home_quote_form .wrapper .right_wrapper form select {
        width: 100%;
        max-width: 100%;
        height: 46px;
        border-radius: 8px;
    }

    #home_quote_form .wrapper .right_wrapper form textarea {
        max-width: 100%;
        height: 120px;
    }

    footer .upper_footer .content_box {
        align-items: flex-start;
        justify-content: space-between;
        padding-bottom: 40px;
        flex-direction: column;
        gap: 30px;
    }

    footer a {
        line-height: 24px;
        margin: 5px 0 0 0;
        font-size: 15px;
    }

    footer .lower_footer .lower_footer_wrapper {
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }



    #blog_banner_section h1 {
        font-size: 32px;
        line-height: 40px;
    }


    #single_blog_banner h1 {
        font-size: 32px;
        line-height: 40px;
    }

    #main_content_section .inner_box .content_box h2 {
        font-size: 26px;
        line-height: 36px;
        margin: 25px 0 0 0;
    }

    #main_content_section .inner_box .content_box h3 {
        font-size: 22px;
        line-height: 32px;
        margin: 25px 0 0 0;
    }

    #main_content_section .inner_box .summary_box {
        padding: 20px;
    }

    #stats_section .box p {
        margin: 5px auto 0;
    }

    #home_section_3 {
        padding: 60px 0 30px 0;
    }

    #stats_section .stats_wrapper .stats_box {
        max-width: 400px;
        margin-top: 40px;

    }

    #home_quote_form {
        padding: 60px 0 30px;

    }

    footer .upper_footer .social_links {

        align-items: center;
        justify-content: center;
        gap: 25px;
        width: 100%;
    }

    .nav-wrap.is-open {
        top: 105px;
    }

    #home_section_3 h3 {
        max-width: 360px;
    }

    #home_section_2 {
        padding: 40px 0 0 0;
    }

    #home_section_3 .wrapper {
        margin: -20px auto 0;
    }


    .header.scrolled_header {
        padding: 40px 0 20px;
    }

    .header {
        padding: 40px 0 20px;
    }

    #home_section_6 .cards_wrapper {
        gap: 40px;
    }

    #home_section_7 iframe {
        height: 240px;
    }

    #main_content_section {
        padding: 40px 0 70px 0;
    }

    #related_blogs_section {
        padding: 60px 0 80px 0;
    }


    #contact_banner_section h1 {
        font-size: 34px;
        line-height: 44px;
    }

    #contact_banner_section h2 {
        font-size: 16px;
        line-height: 26px;
    }

    .form_wrapper {

        max-width: 100%;
    }

    #contact_section_1 .wrapper .form_wrapper form input,
    select {
        width: 100%;
        max-width: 100%;
    }

    #contact_section_1 .wrapper .form_wrapper form .row-50 {
        align-items: flex-start;
        justify-content: center;
        gap: 18px;
        margin: 19px 0 0 0;
        flex-direction: column;
    }

    #contact_banner_section {
        padding: 150px 0 240px;
    }

    #contact_section_1 .wrapper .form_wrapper form {
        margin-top: -250px;
        padding: 14px 20px 5px;
    }

    #contact_section_1 .wrapper .form_wrapper form .row-50>div {
        width: 100%;
    }

    #contact_section_1 .wrapper .content_wrapper {
        width: 100%;
    }

    #contact_section_1 .wrapper .content_wrapper .phone_number,
    .email,
    .address {
        font-size: 16px;
        line-height: 26px;
        gap: 10px;
    }

    #contact_section_1 .wrapper {
        gap: 70px;
    }

    #contact_section_1 {
        padding: 50px 0 50px 0;
    }

    #faq-section .faq-head {
        font-size: 18px;
        line-height: 28px;
    }

    #faq-section .faq-head:after {
        transform: scale(0.7);
    }

    #faq-section .faq-wrap {
        margin: 0 0px 15px;
    }

    #gallery_section .banner_title {
        font-size: 32px;
        line-height: 42px;
    }

    #gallery_section .banner_sub_title {
        font-size: 16px;
        line-height: 26px;
    }

    #gallery_section {
        padding: 150px 0 60px 0;
    }

    #gallery_images {
        padding: 60px 0;
    }

    #testimonial_banner_section h1 {
        font-size: 32px;
        line-height: 42px;
    }

    #testimonial_banner_section {
        padding: 130px 0 60px 0;
    }

    #testimonial_main_section {
        padding: 50px 0 60px 0;
    }

    #testimonial_main_section .review-box .box_wrap {
        padding: 20px 20px;
    }

    #testimonial_main_section .review-box .box_wrap h5 {
        font-size: 18px;
        line-height: 28px;
    }

    #about_us_banner_section h1 {
        font-size: 32px;
        line-height: 42px;
    }

    #about_us_banner_section p {
        font-size: 16px;
        line-height: 26px;
    }

    #about_us_banner_section {
        padding: 140px 0 60px 0;
    }

    #products_banner_section h1 {
        font-size: 32px;
        line-height: 42px;
    }

    #products_banner_section p {
        font-size: 16px;
        line-height: 26px;
    }

    #products_banner_section {
        padding: 140px 0 70px 0;
    }

    #about_us_section_1 {
        padding: 80px 0 50px;
    }

    #about_us_section_2 {
        padding: 50px 0 50px 0;
    }

    #about_us_section_3 {
        padding: 60px 0 40px;
    }

    #about_us_section_3 .section_3_box {
        padding: 20px 20px 20px 20px;
        gap: 20px;
    }

    #about_us_section_3 .section_3_box .left_box h6 {
        font-size: 22px;
        line-height: 32px;
    }

    #about_us_section_3 .section_3_box .left_box h6 span {
        font-size: 16px;
        line-height: 20px;
    }

    #home_section_5 {
        padding: 50px 0px 60px;
    }

    #home_section_5 .cards_wrapper .card {
        padding: 20px;
        margin: 15px;
    }

    #home_section_5 .cards_wrapper .card h5 {
        font-size: 18px;
        line-height: 28px;
        margin: 30px 0px 0px;
    }

    #home_section_4 {
        padding: 50px 0px 60px;
    }

    #stats_section {
        margin: 60px 0 65px;
    }

    #home_section_4 .team_wrapper .card .content {
        padding: 30px 15px 15px;
    }

    #home_section_4 .cta_box {
        margin: 60px auto 0px;
    }

    #home_blogs_section {
        padding: 60px 0 30px 0;
    }

    #home_section_7 .wrapper {
        gap: 30px;
    }

    #home_section_8 {
        padding: 60px 0 60px 0;
    }

    .page-id-445 #stats_section {
        margin: 60px 0 0px;
    }


    .page-id-445 #home_blogs_section {
        padding: 60px 0 60px 0;
    }

    #thank_you_section .inner-box p {
        font-size: 16px;
        line-height: 26px;
    }

    #not_found .box h4 {
        font-size: 38px;
        line-height: 48px;
        margin: 10px 0 0 0;
    }

    #not_found .box p {
        font-size: 16px;
        line-height: 26px;
    }

    #banner_section_default {
        padding: 150px 0 60px;
    }

    #banner_section_default h1 {
        font-size: 32px;
        line-height: 42px;
    }

    #banner_section_default h2 {
        font-size: 16px;
        line-height: 28px;
    }

    #main_section_default a {
        font-size: 16px;
        line-height: 26px;

    }

    #thank_you_section .inner-box {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    #home_section_5 .cta_box {
        margin: 70px auto 0px;
    }

    #home_section_1 .cards_wrapper {
        gap: 40px;
    }

    #home_section_3 .cards_wrapper .card img {
        width: 40px;
    }

    #home_section_3 .cards_wrapper .card h5 {
        font-size: 18px;
        line-height: 28px;
        margin: 15px auto 0;
    }

    #home_section_2 .slick-next {
        right: 0;
    }

    #home_section_2 .slick-prev {
        left: 0;
    }

    #home_section_2 .slick-prev.slick-arrow {
        transform: scale(0.4);
    }

    #home_section_2 .slick-next.slick-arrow {
        transform: scale(0.4);
    }

    #home_section_5 .slick-dots li button::before {
        height: 4px;
        width: 15px;
    }

    #home_section_5 .slick-dots li {
        width: 15px;
    }

    .row-wrap .logo-wrap a img {
        width: 115px;
    }

    #stats_section .stats_wrapper {
        padding: 40px 20px 40px;
    }

    #stats_section h3 {
        font-size: 24px;
        line-height: 34px;
    }

    #home_section_6 .cards_wrapper .card h6 {
        font-size: 22px;
        line-height: 32px;
    }


    footer .lower_footer .lower_footer_wrapper h6 {
        text-align: center;
    }


    #home_banner_section {
        padding: 120px 0 50px;
    }

    #banner_main_image {
        display: none;
    }

    #about_us_section_1 {
        padding: 50px 0 50px;
    }

    #products_section_1 .card {
        max-width: 100%;
        max-width: 340px;
    }

    #products_section_1 .taxonomy_list a {
        font-size: 18px;
        line-height: 28px;
    }

    #products_section_1 .taxonomy_list .active {
        font-size: 18px;
        line-height: 28px;
    }

    #products_section_1 .taxonomy_list {
        margin: 20px auto 0;
        gap: 15px;
        flex-wrap: wrap;
    }

    #blog_banner_section {
        padding: 150px 0 60px;
    }

    #blogs_main_section {
        padding: 50px 0 70px 0;
    }
    #single_blog_banner {
        padding: 140px 0 50px;
    }



}


@media (max-width: 380px) {

    #contact_section_1 .wrapper .content_wrapper .phone_number,
    .email,
    .address {
        font-size: 12px;
        line-height: 20px;
        gap: 4px;
    }

    #main_section_default a {
        font-size: 12px;
        line-height: 20px;

    }

}


@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-21px);
    }

    100% {
        transform: translateY(0);
    }
}