    html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
        margin: 0;
        padding: 0px;
        border: 0;
        outline: 0;
    }
    body {
        color: var(--grey);
        font-family: 'Bebas Neue Pro Middle';
        font-weight: 400;
        font-size: 24px;
        background: var(--white);
        line-height: 1.2;
    }
    :root{
        --blue: #0957a4;
        --white: #ffffff;
        --black: #000000;
        --green: #80c41c;
        --grey: #424242;
    }
    a {
        text-decoration: none;
        color: var(--blue);
        transition: all 0.2s ease-in-out;
    }
    a:hover {
        color: var(--green);
    }
    h1, h2, h3, h4, h5, h6 {
        position: relative;
        color: var(--blue);
        margin-bottom: 20px;
        font-family: 'Bebas Neue Pro';
        font-weight: bold;
    }
    h1 {
        font-size: 72px;
        line-height: 79px;
    }
    h2 {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 5px;
    }
    h3 {
        font-size: 35px;
        line-height: 30px;
    }
    h4 {
        font-size: 30px;
        line-height: 30px;
    }
    h5 {
        font-size: 28px;
        line-height: 30px;
    }
    h6 {
        font-size: 26px;
        line-height: 30px;
    }
    p {
        margin-bottom: 30px;
    }
    .blue-btn {
        font-size: 30px;
        display: inline-block;
        color: var(--white);
        background: var(--blue);
        line-height: normal;
        padding: 12px 50px;
        transition: all 0.3s ease-in-out;
        border-radius: 10px;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 1px;
    }
    .blue-btn:hover {
        background: var(--green);
        transition: all 0.3s ease-in-out;
        color: var(--white);
    }
    .green-btn {
        font-size: 20px;
        display: inline-block;
        color: var(--white);
        background: var(--green);
        line-height: normal;
        padding: 7px 25px;
        transition: all 0.3s ease-in-out;
        border-radius: 10px;
        text-transform: uppercase;
        font-weight: 700;
    }
    .green-btn:hover {
        background: var(--blue);
        transition: all 0.3s ease-in-out;
        color: var(--white);
    }
    /*---------------------------
            Header
    ---------------------------*/

    header.header {
            position: sticky;
        top: 0;
        left: 0;
        right: 0;
        background: var(--blue);
        padding: 15px 0 42px;
        z-index: 999;
    }
    .header-info {
        padding-right: 75px;
    }
    .header-info ul {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: end;
    }
    .header-info ul li {
        color: #fff;
        text-transform: uppercase;
        border-left: 3px solid var(--green);
        line-height: 24px;
        padding-left: 8px;
        margin-left: 8px;
        font-size: 20px;
        font-family: 'Bebas Neue Pro';
        font-weight: bold;
    }
    .header-info ul li a {
        color: var(--white);
    }
    .header-info ul li a:hover {
        color: var(--green);
    }
    .header-info ul li:first-child {
        margin-left: 0;
        padding-left: 0;
        border: 0;
    }
    .main-header {
        background: var(--white);
        border-radius: 10px;
        display: flex
    ;
        align-items: center;
        justify-content: space-between;
        padding: 10px 70px 10px 10px;
        position: absolute;
        bottom: -60px;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        max-width: 1450px;
        box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.15);
    }
    .main-nav {
        display: flex
    ;
        align-items: center;
        gap: 35px;
    }
    .main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item {
        padding-left: 25px;
        margin-left: 25px;
    }
    .main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item > a.mega-menu-link {
        transition: all 0.2s ease-in-out;
    }
    .main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item.hiden-link {
        display: none;
    }
    /*---------------------------
            Banner
    ---------------------------*/
    .banner-area img {
        width: 100%;
    }
    .banner-area {
        position: relative;
    }
    .banner-caption {
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        text-align: center;
        color: var(--blue);
        font-size: 40px;
        font-family: 'Bebas Neue Pro';
        font-weight: normal;
    }
    .banner-caption h1 {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .banner-caption h1::after {
        position: absolute;
        content: "";
        background: var(--green);
        width: 620px;
        height: 3px;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto;
    }
    /*---------------------------
            Welcome
    ---------------------------*/
    .welcome-tab .welcome-img {
        overflow: hidden;
        border-radius: 30px;
    }
    .welcome-tab:hover .welcome-img img {
        transform: scale(1.1);
    }
    .welcome-tab:hover {
        border-color: var(--blue);
    }
    .heading-div {
        text-align: center;
        margin-bottom: 50px;
    }
    .heading-div p:last-child {
        margin-bottom: 0;
    }
    .welcome-area {
        padding: 100px 0;
    }
    .welcome-tab {
        position: relative;
        border: 3px solid var(--green);
        padding: 10px;
        border-radius: 30px;
        transition: all 0.3s ease-in-out;
    }
    .welcome-img img {
        border-radius: 30px;
        transition: all 0.2s ease-in-out;
    }
    .welcome-description {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        margin: 10px;
        border-radius: 0 0 30px 30px;
        padding: 20px;
        color: var(--white);
        font-size: 23px;
    }
    .welcome-description h2 {
        color: var(--white);
    }
    .welcome-description p {
        margin-bottom: 10px;
    }
    .welcome-description p:last-child {
        margin-bottom: 0;
    }
    /*---------------------------
            Payment
    ---------------------------*/
    .payment-area {
        position: relative;
        background: url(/wp-content/uploads/2025/07/payment-bg.jpg) no-repeat;
        background-size: cover;
        padding: 130px 0;
    }
    .payment-tabs {
        display: flex;
        justify-content: center;
        gap: 39px;
        margin-bottom: 60px;
    }
    .payment-tabs .payment-tab {
        background: var(--white);
        max-width: 175px;
        padding: 50px 20px 20px;
        text-align: center;
        border: 4px solid var(--green);
        border-radius: 25px;
        position: relative;
        min-height: 180px;
    }
    .payment-tabs .payment-tab:hover .tab-icon {
        transform: scale(1.1);
    }
    .tab-icon {
        background: var(--blue);
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        position: absolute;
        top: -40px;
        left: 0;
        right: 0;
        margin: 0 auto;
        transition: all 0.3s ease-in-out;
    }
    .payment-area .heading-div {
        margin-bottom: 100px;
    }
    .payment-btn {
        text-align: center;
    }
    /*---------------------------
            Contact
    ---------------------------*/
    .contact-img img {
        width: 100%;
    }
    .contact-description {
        max-width: 691px;
        margin-left: 130px;
        padding-right: 40px;
    }
    .contact-description strong {
        color: var(--blue);
        display: block;
        margin-bottom: 60px;
        font-weight: normal;
    }
    .contact-boxs {
        display: flex;
        justify-content: space-between;
        gap: 45px;
    }
    .contact-boxs .contact-box {
        background: var(--blue);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
        border-radius: 10px;
        width: 50%;
        min-height: 200px;
        font-size: 25px;
        font-weight: bold;
    }
    .contact-boxs .contact-box h5 {
        color: var(--white);
        text-transform: uppercase;
        padding-bottom: 20px;
        width: 100%;
    }
    .contact-boxs .contact-box a {
        color: var(--white);
    }
    .contact-boxs .contact-box h5::after {
        position: absolute;
        content: "";
        background: var(--green);
        width: 215px;
        height: 3px;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto;
    }
    .contact-boxs .contact-box a:hover {
        color: var(--green);
    }
    /*---------------------------
            Testimonial
    ---------------------------*/
    .testimonial-section {
        padding: 100px 0;
        position: relative;
    }
    .testimonial-section::after {
        position: absolute;
        content: "";
        background: url(/wp-content/uploads/2025/07/testimonial-bg.png) no-repeat;
        background-size: cover;
        height: 736px;
        top: 50px;
        left: 0;
        right: 0;
    }
    .testimonial-tab {
        border: 3px solid var(--green);
        border-radius: 30px 30px 25px 25px;
        display: flex
    ;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-bottom: 80px solid var(--green);
        min-height: 480px;
        padding: 20px;
        position: relative;
    }
    .testimonial-tab::after {
        position: absolute;
        content: "";
        background: url(/wp-content/uploads/2025/07/right-comma.png) no-repeat;
        width: 99px;
        height: 79px;
        right: 35px;
        bottom: -26px;
    }
    .testimonial-tab::before {
        position: absolute;
        content: "";
        background: url(/wp-content/uploads/2025/07/left-comma.png) no-repeat;
        width: 99px;
        height: 79px;
        left: 40px;
        top: -30px;
    }
    .testimonial-tab h4 {
        font-size: 40px;
        font-style: italic;
        font-weight: 500;
        margin: 0;
    }
    .testimonial-tab p {
        margin-bottom: 60px;
    }
    .testimonial-btn {
        text-align: center;
        margin-top: 100px;
    }
    .testimonial-section .heading-div {
        margin-bottom: 100px;
    }
    /*---------------------------
            Footer
    ---------------------------*/
    .footer-menu {
        background: var(--blue);
        padding: 8px 0;
    }
    .footer-menu .menu {
        display: flex;
        align-items: center;
        justify-content: center;
        list-style: none;
    }
    .footer-menu .menu a {
        color: var(--white);
        text-transform: uppercase;
        font-weight: bold;
        font-size: 20px;
    }
    .footer-menu .menu li.menu-item {
        line-height: 50px;
        border-left: 2px solid var(--green);
        padding-left: 30px;
        margin-left: 30px;
    }
    .footer-menu .menu li.menu-item:first-child {
        margin: 0;
        padding: 0;
        border: 0;
    }
    .footer-menu .menu a:hover {
        color: var(--green);
    }
    .footer-info {
        text-align: center;
        padding: 25px 0 20px 0;
    }
    .footer-info ul {
        display: flex
    ;
        flex-wrap: wrap;
        justify-content: center;
        list-style: none;
        margin-bottom: 10px;
    }
    .footer-info ul li {
        border-left: 2px solid var(--green);
        padding-left: 10px;
        margin-left: 10px;
        font-weight: bold;
        text-transform: uppercase;
        color: var(--blue);
        font-size: 20px;
    }
    .footer-info ul li:first-child {
        margin: 0;
        padding: 0;
        border: 0;
    }
    .footer-info img {
        margin-bottom: 30px;
    }
    .copyright {
        background: var(--blue);
        text-align: center;
        color: var(--white);
        padding: 15px 0;
        font-size: 20px;
    }

    .copyright p {
        margin-bottom: 0;
    }
    .copyright a {
        color: var(--white);
    }
    .copyright a:hover {
        color: var(--green);
    }
    /*---------------------------
        inner page products
    ---------------------------*/
    .content-div {
        padding: 100px 0;
    }
    .inner-banner-caption {
        max-width: 750px;
        margin-left: auto;
        padding: 0 60px 0 23px;
    }
    .inner-banner-caption p:last-child {
        margin-bottom: 0;
    }
    .left-right-section {
        padding: 60px 0;
        background: url(/wp-content/uploads/2025/07/testimonial-bg.png) no-repeat;
        background-position: center center;
    }
    .left-right-img {
        padding-right: 40px;
    }
    .left-right-img img {
        border: 3px solid var(--green);
        padding: 10px;
        border-radius: 30px;
    }
    .left-right-text {
        padding-left: 40px;
    }
    .left-right-text p:last-child {
        margin-bottom: 0;
    }
    .left-right-section:nth-child(even) .row.align-items-center {
        flex-direction: row-reverse;
    }
    .left-right-section:nth-child(even) .left-right-img {
        padding-left: 40px;
        padding-right: 0;
    }
    .left-right-section:nth-child(even) .left-right-text {
        padding-right: 40px;
        padding-left: 0;
    }
    .left-right-text h2 {
        font-family: 'Bebas Neue Pro';
        font-weight: normal;
    }
    /*---------------------------
        inner page services
    ---------------------------*/
    .bulleted-section {
        position: relative;
        background: url(/wp-content/uploads/2025/07/testimonial-bg.png) no-repeat;
        background-position: center center;
    }
    .tiles .tile-content {
        position: relative;
        border: 4px solid var(--green);
        border-radius: 30px;
        max-width: 210px;
        display: flex;
        text-align: center;
        padding: 20px 25px;
    }
    .tiles .tile-content::before {
        position: absolute;
        content: "";
        background: url(/wp-content/uploads/2025/07/tick-icon.png) no-repeat;
        width: 53px;
        height: 53px;
        left: 0;
        right: 0;
        top: -32px;
        margin: 0 auto;
    }
    .page-id-172 .tiles .tile-content {
        max-width: 290px;
    }
    .tiles {
        display: flex
    ;
        justify-content: center;
        gap: 80px;
        flex-wrap: wrap;
    }
    .tiles .tile-content p:last-child {
        margin-bottom: 0;
    }
    .tiles .tile-content p {
        margin-bottom: 15px;
    }
    .tiles-div h2 {
        text-align: center;
        margin-bottom: 70px;
        font-family: 'Bebas Neue Pro';
        font-weight: normal;
    }
    .tiles-div {
        margin-bottom: 110px;
    }
    .full-width-content {
        text-align: center;
    }
    .full-width-content strong {
        font-weight: normal;
        color: var(--green);
    }
    .full-width-content a {
        color: var(--green);
    }
    .full-width-content a:hover {
        color: var(--blue);
    }
    .full-width-content p:last-child {
        margin-bottom: 0;
    }
    .full-width-content h6 {
        font-size: 30px;
        color: var(--blue);
        font-family: 'Bebas Neue Pro';
        font-weight: normal;
        text-transform: inherit;
        line-height: 1.2;
        letter-spacing: normal;
    }
    .full-width-content p {
        padding: 0 80px;
    }
    .full-width-content.products {
        padding-top: 60px;
    }
    /*---------------------------
        inner page contact
    ---------------------------*/
    .banner-area.\34 04 .inner-banner-img img {
        min-height: 650px;
        object-fit: cover;
    }
    .form-description h2 {
        margin-bottom: 26px;
    }
    .form-description h4 {
        margin-bottom: 10px;
    }
    .form-description  a {
        color: var(--black);
    }
    .form-description a:hover {
        color: var(--blue);
    }
    .form-description p {
        margin-bottom: 20px;
    }
    .contact-form {
        background: var(--white);
        padding: 30px;
        border: 8px solid var(--green);
        max-width: 560px;
    }
    .contact-form input, .contact-form textarea {
        border: 1px solid var(--black);
        color: var(--black);
        font-size: 20px !important;
        font-family: 'Bebas Neue Pro';
        outline: none;
        border-radius: 6px !important;
        padding: 14px 15px !important;
        font-weight: bold;
    }
    .contact-form input::placeholder, .contact-form textarea::placeholder {
        color: var(--black);
        font-size: 20px !important;
        font-family: 'Bebas Neue Pro';
        text-transform: uppercase;
        font-weight: bold;
    }
    .contact-form .gform_wrapper.gravity-theme .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full) {
        padding: 0 !important;
    }
    .contact-form .gform_button {
        background: var(--green) !important;
        color: var(--white) !important;
        border: 0 !important;
        padding: 13px 40px !important;
        text-transform: uppercase;
        font-size: 24px !important;
        letter-spacing: 1px;
        line-height: normal !important;
        border-radius: 6px !important;
        transition: all 0.2s ease-in-out !important;
        margin-bottom: 0 !important;
    }
    .contact-form .gform_button:hover {
        background: var(--blue) !important;
    }
    .contact-form .gform-footer.gform_footer {
        padding: 13px 0 0 !important;
        margin: 0 !important;
    }
    .contact-form .gform_heading {
        display: none;
    }
    .contact-form .validation_message {
        background: transparent !important;
        border: 0 !important;
        padding: 0 !important;
    }
    .contact-form .gform_wrapper.gravity-theme .gform_validation_errors {
        background: transparent;
        border: 0 !important;
        box-shadow: none;
        padding: 0 0 11px 28px;
    }
    .contact-form .gform_wrapper.gravity-theme .gform_validation_errors>h2 .gform-icon {
        inset-inline-start: -31px;
        font-size: 25px;
    }
    .contact-section {
        position: relative;
        padding: 100px 0;
    }
/*     .contact-section::after {
        position: absolute;
        content: "";
        background: url(/wp-content/uploads/2025/07/payment-bg.jpg) no-repeat;
        width: 45%;
        right: 0;
        top: 0;
        bottom: 0;
        height: 100%;
        background-size: cover;
        z-index: -1;
    } */
    /*------------------------
        blogs 
    --------------------------*/
    .default-text h2 {
        margin-bottom: 20px;
    }
    .default-text ul li, .default-text ol li {
        margin-bottom: 6px;
    }
    .default-text ul, .default-text ol {
        padding-left: 25px;
        margin-bottom: 20px;
    }
    .default-text p {
        margin-bottom: 20px;
    }
    .global-banner {
        position: relative;
    }
    .global-banner img {
        max-width: 100%;
        width: 100%;
        height: 450px;
        object-fit: cover;
    }
    .global-banner-caption {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        text-align: center;
    }
    .global-banner-caption h1, .global-banner-caption h2 {
        margin-bottom: 0;
        font-size: 60px;
        line-height: 79px;
    }
    .blog-detail-text h6 {
        color: var(--black);
    }
    .blogs-left h3, .sidebar h3 {
        font-size: 36px !important;
        text-align: center;
        padding-bottom: 18px;
        border-bottom: 3px solid var(--green);
        margin-bottom: 40px;
        text-transform: uppercase;
        font-weight: 600 !important;
    }
    .blogs-tab {
        box-shadow: 0px 0px 17px -7px rgba(0, 0, 0, 0.25);
        margin-bottom: 30px;
    }
    .blogs-tab.row {
        cursor: pointer !important;
    }
    .blogs-img {
        position: relative;
        overflow: hidden;
    }
    .blogs-img img {
        transition: all 0.4s ease-in-out;
        height: 330px;
        object-fit: cover;
        width: 100%;
    }
    .blogs-tab:hover .blogs-img img {
        transform: scale(1.1);
        transition: all 0.4s ease-in-out;
    }
    .blogs-img::after {
        position: absolute;
        content: "";
        background: var(--blue);
        width: 20px;
        height: 100%;
        right: 0;
        top: 0;
    }
    .blogs-text {
        min-height: 330px;
        display: flex
    ;
        justify-content: center;
        flex-direction: column;
        padding-right: 60px !important;
        padding-left: 30px !important;
        color: var(--black);
        transition: all 0.4s ease-in-out;
    }
    .blogs-tab:hover .blogs-text {
        background: var(--blue);
    }
    .blogs-text a {
        color: var(--black);
        transition: all 0.4s ease-in-out;
    }
    .blogs-text h3 {
        font-weight: 700 !important;
        padding-bottom: 15px;
        font-size: 28px !important;
        line-height: 1.1;
        margin-bottom: 18px;
        transition: all 0.4s ease-in-out;
    }
    .blogs-text h3::after {
        position: absolute;
        content: "";
        background: var(--green);
        width: 229px;
        height: 2px;
        left: 0;
        bottom: 0;
        transition: all 0.4s ease-in-out;
    }
    .blogs-tab:hover .blogs-text {
        color: var(--white);
    }
    .blogs-tab:hover .blogs-text a {
        color: var(--white);
    }
    .blogs-tab:hover .blogs-text h3 {
        color: var(--white);
    }
    .blogs-tab:hover .blogs-text h3::after {
        background: var(--white);
    }
    .sidebar {
        padding-left: 50px;
    }
    .sidebar-img {
        position: relative;
        margin-bottom: 15px;
        transition: all 0.3s ease-in-out;
        overflow: hidden;
    }
    .sidebar-img::after {
        position: absolute;
        content: "";
        background: rgba(0, 0, 0, 0.3);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    .sidebar-inner .sidebar-img img {
        transition: all 0.3s ease-in-out;
        width: 100% !important;
        height: 200px;
        object-fit: cover;
    }
    .sidebar-text {
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        z-index: 1;
        transform: translateY(-50%);
    }
    .sidebar-text h4 {
        color: var(--white);
        font-size: 32px;
        text-align: center;
        font-weight: 600;
        margin-bottom: 0;
    }
    .sidebar-inner a:hover .sidebar-img img {
        transform: scale(1.1);
        transition: all 0.3s ease-in-out;
    }
    .blogs-area {
        padding: 70px 0 100px 0;
    }
    .single-feature img {
        width: 100%;
        margin-bottom: 30px;
    }
    .blog-detail-text a:hover {
        color: var(--black);
    }
    .blog-detail-text a {
        color: var(--blue);
        transition: all 0.2s ease-in-out;
    }
    .blog-detail-text ul li, .blog-detail-text ol li {
        margin-bottom: 5px;
    }
    .blog-detail-text ul {
        list-style: disc;
    }
    .blog-detail-text ul, .blog-detail-text ol {
        padding-left: 25px;
        margin-bottom: 20px;
    }
    .blog-detail-area h1 {
        margin-bottom: 0;
        padding-bottom: 15px;
    }
    .blog-detail-area h1::after {
        position: absolute;
        content: "";
        border: 5px solid var(--green);
        width: 240px;
        left: 0;
        bottom: -5px;
    }
    .blogs-text .addtoany_shortcode {
        margin-top: 20px;
    }

    .blog-detail-authr .abh_box.abh_box_custom .abh_tabs {
        padding-bottom: 8px !important;
    }
    .blog-detail-authr .abh_box.abh_box_custom.abh_box_business .abh_tabs .abh_active a {
        background-color: var(--blue) !important;
        color: var(--white) !important;
    }
    .blog-detail-authr .abh_box.abh_box_custom .abh_tabs li a, .blog-detail-authr .abh_box.abh_box_custom .abh_tabs .abh_active a {
        color: var(--black) !important;
        padding: 11px 15px !important;
        border: 0 !important;
        font-size: 16px !important;
        font-weight: 500 !important;
    }
    .blog-detail-authr .abh_box.abh_box_custom .abh_name.fn.name a {
        color: var(--black) !important;
        font-weight: 600 !important;
    }
    .author-area {
        padding: 70px 0;
    }
    .author-img {
        text-align: right;
    }
    .author-img img {
        max-width: 100%;
        width: 280px !important;
        height: auto !important;
    }
    .testimonial-section div {
        position: relative;
        z-index: 1;
    }
    /*---------------------------
            responsive
    ---------------------------*/
    @media (max-width:1599px) {
    .main-header {
        max-width: 95%;
    }
    }
    @media (max-width:1440px) {
        h1 {
        font-size: 60px;
        line-height: 69px;
    }
    h2 {
        font-size: 35px;
    }
    h3 {
        font-size: 32px;
    }
    h5 {
        font-size: 26px;
    }
    h6 {
        font-size: 24px;
    }
    .banner-caption {
        font-size: 35px;
    }
    .banner-caption h1 {
        padding-bottom: 25px;
        margin-bottom: 22px;
    }
    .welcome-area {
        padding: 80px 0;
    }
    .welcome-description {
        font-size: 20px;
    }
    .payment-area {
        padding: 100px 0;
    }
    .blue-btn {
        font-size: 22px;
        padding: 12px 40px;
    }
    .contact-description {
        max-width: 100%;
        margin-left: 30px;
        padding-right: 40px;
    }
    .contact-description strong {
        margin-bottom: 40px;
    }
    .contact-boxs .contact-box h5::after {
        width: 100%;
    }
    .contact-boxs {
        gap: 25px;
    }
    .contact-img img {
        min-height: 570px;
        object-fit: cover;
    }
    .testimonial-section .heading-div {
        margin-bottom: 70px;
    }
    .testimonial-tab {
        min-height: 380px;
    }
    .testimonial-tab p {
        margin-bottom: 25px;
    }
    .testimonial-tab h4 {
        font-size: 33px;
    }
    .testimonial-tab::after {
        width: 79px;
        height: 63px;
        background-size: cover;
    }
    .testimonial-tab::before {
        width: 79px;
        height: 63px;
        background-size: cover;
    }
    .testimonial-btn {
        margin-top: 60px;
    }
    .testimonial-section {
        padding: 80px 0;
    }
    .inner-banner-caption {
        max-width: 100%;
        padding: 70px 30px 0 30px;
    }
    .content-div {
        padding: 80px 0;
    }
    .left-right-text {
        padding-left: 0;
    }
    .left-right-section:nth-child(even) .left-right-text {
        padding-right: 0;
    }
    .left-right-img {
        padding-right: 0;
    }
    .left-right-section:nth-child(even) .left-right-img {
        padding-left: 0;
    }
    .left-right-section {
        padding: 40px 0;
    }
    .tiles {
        gap: 40px;
    }
    .tiles-div {
        margin-bottom: 80px;
    }
    .tiles-div h2 {
        margin-bottom: 60px;
    }
    .sidebar {
        padding-left: 30px;
    }
    }
    @media (max-width:1199px) {
        body {
        font-size: 22px;
    }
    p {
        margin-bottom: 20px;
    }
            h1 {
            font-size: 50px;
            line-height: 59px;
        }
            h2 {
            font-size: 33px;
        }
    .main-header {
        padding: 10px 20px 10px 10px;
        bottom: -50px;
    }
    .header-info {
        padding-right: 20px;
    }
    .logo img {
        max-width: 170px;
    }
        .banner-caption {
            font-size: 32px;
        }
            .banner-caption h1 {
            padding-bottom: 20px;
            margin-bottom: 17px;
        }
            .welcome-area {
            padding: 60px 0;
        }
        .welcome-tab {
        padding: 5px;
            border-radius: 20px;
    }
    .welcome-img img {
        border-radius: 20px;
        min-height: 310px;
        object-fit: cover;
    }
    .welcome-tab .welcome-img {
        border-radius: 20px;
    }
        .welcome-description {
            font-size: 18px;
            margin: 5px;
            padding: 17px;
            border-radius: 0 0 20px 20px;
        }
        .welcome-description h2 {
        font-size: 28px;
    }
        .payment-area {
            padding: 70px 0;
        }
        .payment-area .heading-div {
        margin-bottom: 80px;
    }
    .payment-tabs {
        gap: 31px;
        margin-bottom: 45px;
    }
        .blue-btn {
            font-size: 20px;
            padding: 12px 35px;
        }
        .contact-boxs .contact-box {
        padding: 10px;
        min-height: 170px;
        font-size: 22px;
    }
    .contact-boxs .contact-box h5 {
        padding-bottom: 15px;
        margin-bottom: 15px;
        font-size: 24px;
    }
        .testimonial-section {
            padding: 60px 0;
        }
        .testimonial-section::after {
        height: 536px;
    }
        .testimonial-tab::before {
            width: 59px;
            height: 47px;
            left: 30px;
            top: -20px;
        }
            .testimonial-tab::after {
            width: 59px;
            height: 47px;
            right: 15px;
            bottom: -19px;
        }
            .testimonial-tab {
            border-bottom: 60px solid var(--green);
        }
            .testimonial-tab h4 {
            font-size: 30px;
        }
            .testimonial-btn {
            margin-top: 50px;
        }
        .footer-menu .menu a {
        font-size: 18px;
    }
    .footer-menu .menu li.menu-item {
        line-height: 41px;
    }
    .content-div {
        padding: 60px 0;
    }
    .left-right-section {
        padding: 20px 0;
    }
    .tiles-div {
        margin-bottom: 50px;
    }
    .tiles .tile-content {
        min-height: 150px;
    }
    .global-banner img {
        height: 350px;
    }
    .blogs-left h3, .sidebar h3 {
        font-size: 32px !important;
    }
    .blogs-text {
        min-height: 300px;
        padding-right: 30px !important;
        padding-left: 20px !important;
    }
    .blogs-img img {
        height: 300px;
    }
    .blogs-text strong {
        display: block;
        margin-top: 9px;
    }
    .sidebar-inner .sidebar-img img {
        height: 170px;
    }
    .blogs-area {
        padding: 60px 0 60px 0;
    }
    .single-feature img {
        height: 400px;
        object-fit: cover;
    }
        .full-width-content p {
        padding: 0;
    }
    }
    @media (max-width:1024px) {
    }
    @media (max-width:991px) {
            body {
            font-size: 20px;
        }
            h1 {
            font-size: 40px;
            line-height: 49px;
        }
                h2 {
            font-size: 30px;
            line-height: 35px;
        }
        h3 {
        font-size: 28px;
        line-height: 30px;
    }
    h4 {
        font-size: 26px;
        line-height: 26px;
    }
    h5 {
        font-size: 24px;
        line-height: 26px;
    }
    h6 {
        font-size: 22px;
        line-height: 26px;
    }
            .banner-caption {
            font-size: 29px;
        }
        .main-nav {
        gap: 15px;
    }
    .header-info ul li {
        font-size: 17px;
    }
        .logo img {
            max-width: 140px;
        }
            .main-header {
            padding: 10px 13px 10px 10px;
            bottom: -38px;
        }
        .main-nav .green-btn {
        padding: 9px 25px;
    }
    .banner-caption h1::after {
        width: 420px;
    }
    .banner-area img {
        min-height: 340px;
        object-fit: cover;
    }
        .welcome-area {
            padding: 50px 0;
        }
        .heading-div {
        margin-bottom: 35px;
    }
        .welcome-description {
            font-size: 19px;
        }
            .welcome-tab {
            margin-bottom: 30px;
        }
        .welcome-area .col-lg-4.col-md-6:last-child .welcome-tab {
        margin-bottom: 0;
    }
        .payment-area {
            padding: 50px 0;
        }
            .payment-tabs {
            gap: 18px;
            margin-bottom: 35px;
        }
        .payment-tabs .payment-tab {
        max-width: 155px;
        border: 3px solid var(--green);
        min-height: 150px;
    }
        .blue-btn {
            font-size: 18px;
            padding: 11px 30px;
        }
        .tab-icon {
        width: 60px;
        height: 60px;
        top: -30px;
    }
    .tab-icon img {
        max-width: 40px;
    }
        .payment-area .heading-div {
            margin-bottom: 60px;
        }
            .contact-boxs {
            gap: 15px;
        }
            .contact-description {
            margin-left: 20px;
            padding-right: 30px;
        }
            .contact-boxs .contact-box h5 {
            padding-bottom: 14px;
            margin-bottom: 11px;
            font-size: 19px;
            line-height: 24px;
        }
            .contact-boxs .contact-box {
            min-height: 152px;
            font-size: 18px;
        }
            .contact-description strong {
            margin-bottom: 25px;
        }
            .testimonial-tab {
            min-height: 310px;
        }
        .footer-menu .menu li.menu-item {
            line-height: 37px;
        line-height: 50px;
        padding-left: 15px;
        margin-left: 15px;
    }
    .footer-info ul li {
        font-size: 18px;
    }
    .main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item .mega-menu-link {
        font-size: 18px;
        line-height: 50px;
        height: 50px;
    }
    .main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item:last-child {
        border: 0;
    }
    .main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item {
        padding-left: 0;
        margin-left: 0;
        border-bottom: 1px solid var(--green);
    }
    .main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 {
        padding: 10px 20px;
    }
    .content-div {
        padding: 50px 0;
    }
    .left-right-img img {
        padding: 7px;
        border-radius: 20px;
    }
    .tiles {
        gap: 20px;
        row-gap: 52px;
    }
    .tiles .tile-content {
        min-height: auto;
        padding: 25px 17px;
        border: 3px solid var(--green);
    }
    .contact-form input, .contact-form textarea {
        font-size: 18px !important;
        padding: 10px 15px !important;
    }
    .contact-form input::placeholder, .contact-form textarea::placeholder {
        font-size: 18px !important;
    }
    .contact-form {
        padding: 25px;
        border: 5px solid var(--green);
    }
    .contact-section {
        padding: 60px 0;
    }
    .contact-form .gform_button {
        padding: 11px 30px !important;
        font-size: 21px !important;
    }
        .global-banner img {
            height: 300px;
        }
        .global-banner-caption h1, .global-banner-caption h2 {
        font-size: 55px;
        line-height: 69px;
    }
        .sidebar {
            padding-left: 5px;
        }
            .sidebar-inner .sidebar-img img {
            height: 140px;
        }
        .sidebar-text h4 {
        font-size: 29px;
    }
    .blogs-text h3::after {
        width: 100%;
    }
        .blogs-img img {
            height: 260px;
        }
            .blogs-text {
            min-height: 260px;
        }
        .blogs-img::after {
        width: 14px;
    }
    .single-feature img {
        height: 300px;
    }
    .blog-detail-text ul, .blog-detail-text ol {
        padding-left: 21px;
    }
        .full-width-content h6 {
        font-size: 26px;
    }
        .full-width-content.products {
        padding-top: 40px;
    }
    }
    @media (max-width:767px) {
                body {
            font-size: 19px;
        }
            h1 {
            font-size: 35px;
            line-height: 39px;
        }
        h2 {
            font-size: 28px;
            line-height: 30px;
        }
        h3 {
            font-size: 26px;
        }
    h4 {
            font-size: 24px;
            line-height: 25px;
        }
        h5 {
            font-size: 22px;
            line-height: 25px;
        }
    h6 {
        font-size: 20px;
        line-height: 24px;
    }
        .main-nav #mega-menu-wrap-max_mega_menu_1 #mega-menu-max_mega_menu_1 > li.mega-menu-item.hiden-link {
        display: block;
    }
           .footer-menu .menu {
        padding: 0 15px;
        column-count: 2;
        display: block;
    }
    .payment-tabs {
        flex-wrap: wrap;
        row-gap: 44px;
    }
    .banner-caption h1::after {
        width: 100%;
    }
    .testimonial-section .row {
        --bs-gutter-x: 1rem;
    }
    .main-nav .green-btn {
        display: none;
    }
    .header-info ul {
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 6px;
    }
    .header-info {
            padding-right: 0;
        }
            .welcome-area {
            padding: 40px 0;
        }
            .payment-area {
            padding: 40px 0;
        }
        .payment-area .heading-div {
            margin-bottom: 43px;
        }
            .contact-img img {
            min-height: auto;
            margin-bottom: 25px;
        }
            .testimonial-section .heading-div {
            margin-bottom: 45px;
        }
            .testimonial-tab::before {
            left: 20px;
        }
            .testimonial-btn {
            margin-top: 33px;
        }
            .testimonial-section {
            padding: 50px 0 45px 0;
        }
            .footer-menu .menu li.menu-item {
            line-height: 32px;
        }
            .footer-info ul li {
            font-size: 18px;
        }
        .copyright {
        padding: 15px 10px;
        font-size: 18px;
    }
        .banner-caption {
            font-size: 25px;
        }
        .welcome-img img {
        width: 100%;
    }
    .banner-area .row {
        flex-direction: column-reverse;
    }
    .inner-banner-caption {
        max-width: 100%;
        padding: 30px 20px 0 20px;
    }
    .left-right-text {
        padding: 20px 0 0 0;
    }
    .left-right-section {
        padding: 15px 0;
    }
    .content-div {
        padding: 40px 0;
    }
        .tiles-div {
            margin-bottom: 30px;
        }
            .tiles {
            gap: 10px;
            row-gap: 38px;
        }
/*     .contact-section::after {
        width: 100%;
        height: 48%;
        bottom: 0;
        top: inherit;
    } */
    .form-description {
        margin-bottom: 40px;
        padding: 0 9px;
    }
        .contact-section {
            padding: 50px 0 18px 0;
        }
            .contact-form {
            padding: 20px 15px;
            border: 5px solid var(--green);
        }
            .contact-form input, .contact-form textarea {
            font-size: 17px !important;
            padding: 7px 15px !important;
            min-height: auto !important;
        }
        .contact-form input::placeholder, .contact-form textarea::placeholder {
        font-size: 17px !important;
    }
    .default-text h2 {
        margin-bottom: 12px;
    }
    .default-text h4 {
        margin-bottom: 13px;
    }
        .global-banner-caption h1, .global-banner-caption h2 {
            font-size: 38px;
            line-height: 50px;
        }
            .global-banner img {
            height: 220px;
        }
            .blogs-area {
            padding: 40px 0 40px 0;
        }
            .blogs-left h3, .sidebar h3 {
            font-size: 28px !important;
            margin-bottom: 30px;
        }
            .blogs-img::after {
            width: 100%;
            height: 15px;
            top: inherit;
            bottom: 0;
            left: 0;
        }
            .blogs-img img {
            height: 240px;
        }
            .blogs-text {
            min-height: auto;
            padding: 20px !important;
        }
        .blogs-tab.row, .sidebar-inner a.blog {
            max-width: 490px;
            margin: 0 auto 20px;
            display: block;
        }
        .sidebar {
            padding-left: 0;
            padding-top: 20px;
        }
        .blog-detail.share-buttons {
        margin-bottom: 20px;
    }
    .author-img img {
        max-width: 100%;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 20px;
    }
    .author-area {
        padding: 20px 0;
    }
    .testimonial-details .row {
        --bs-gutter-x: 1rem;
    }
        .tiles .tile-content {
            min-height: 120px;
        }
            .full-width-content h6 {
        font-size: 22px;
        margin-bottom: 10px;
    }
        .full-width-content.products {
        padding-top: 30px;
    }
     .header-info ul li {
        font-size: 16px;
        padding-left: 5px;
        margin-left: 5px;
    }
    .contact-boxs .contact-box h5 {
    min-height: 83px;
}
.footer-menu .menu li.menu-item:first-child,
.footer-menu .menu li.menu-item {
    border: 0;
    text-align: left;
    padding: 0 0px 5px 0;
    margin: 0 0 5px 0;
    border-bottom: 1px solid var(--white);
}
.footer-menu {
    padding: 20px 0;
}
    }
    @media (max-width:575px) {
        .footer-info ul li {
            font-size: 16px;
        }
            .blogs-tab.row, .sidebar-inner a.blog {
        max-width: 100%;
        margin: 0 auto 20px;
    }
   
    }