/*-- Global Styles Start --*/
h1 {
    font-size: 80px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

h2 {
    font-size: 50px;
    line-height: 1.28;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

h3 {
    font-size: 38px;
    line-height: 1.28;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

h4 {
    font-size: 28px;
    line-height: 1.28;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

h5 {
    font-size: 24px;
    line-height: 1.28;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

h6 {
    font-size: 20px;
    line-height: 1.28;
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
}

.small_badge {
    position: relative;
    padding: 8px 20px;
    background-color: var(--color-primary);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.13;
    font-weight: 500;
    font-family: var(--secondary-fonts);
    letter-spacing: 2.6px;
    z-index: 1;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

@media (max-width: 1700.98px) {
    h1 {
        font-size: 70px;
    }
}

@media (max-width: 991.98px) {
    h1 {
        font-size: 50px;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 20px;
    }

    .small_badge {
        font-size: 12px;
        padding: 5px 15px;
        line-height: 1.3;
    }

    h6 {
        font-size: 16px;
    }
}

/*-- Global Styles End --*/


/*--- Main Hero Style Start ---*/
.main_hero_section {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    padding: 250px 0 60px;
}

.main_hero_section.no_bg {
    background-color: #e9ece7;
}

.main_hero_section:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.3);
    display: block;
}

.main_hero_section.no_bg:after {
    content: none;
}

.main_hero_section > video,
.main_hero_section > .wp-block-video,
.main_hero_section > .wp-block-video video,
.main_hero_section > figure,
.main_hero_section > figure > img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100% !important;
    height: 100% !important;
    object-position: center;
    object-fit: cover;
    display: block;
    margin: 0 !important;
}

.main_hero_section .container,
.main_hero_section .container-fluid {
    position: relative;
    z-index: 3;
}

.main_hero_section .home_hero_content {
    max-width: 1300px;
}

.main_hero_section h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-white);
}

.main_hero_section h2 {
    line-height: 1.15;
    color: var(--color-white);
}

.main_hero_section .main_hero_row {
    /*border-top: 1px solid var(--color-white);*/
    padding-top: 60px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.main_hero_section .main_hero_row:before {
    content: "";
    width: 0;
    height: 1px;
    background-color: var(--color-white);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.main_hero_section .main_hero_row.visible:before {
    animation: lineGrow 1s ease forwards;
    animation-delay: 1.5s;
}

.main_hero_section.no_bg .main_hero_row {
    border-color: var(--color-primary);
}

.main_hero_section .hero_logo {
    font-size: 0;
    max-width: 197px;
    width: 100%;
}

.main_hero_section .hero_logo figure,
.main_hero_section .hero_logo img {
    width: 100%;
    object-fit: contain;
}

.main_hero_section .hero_logo .hero_logo_under_text {
    padding-right: 3px;
    margin-top: -1px;
    text-align: right;
}

.main_hero_section p {
    color: var(--color-white);
    margin: 0;
}

.main_hero_section.no_bg p {
    border-color: var(--color-primary);
    color: var(--text-color-dark);
}


.main_hero_section .main_hero_row p {
    max-width: 1200px;
}

.main_hero_section .main_hero_row .kg_btn {
    margin-left: auto;
}

.main_hero_section .pattern_div {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

@media (max-width: 1700.98px) {
    .main_hero_section {
        padding-bottom: 50px;
    }

    .main_hero_section h1 {
        font-size: 60px;
    }

    .main_hero_section .main_hero_row {
        padding-top: 50px;
        margin-top: 50px;
        gap: 35px;
    }

    .main_hero_section .main_hero_row .cu_para br {
        display: none !important;
    }
}

@media (max-width: 1199.98px) {
    .main_hero_section .main_hero_row {
        padding-right: 0;
    }
}

@media (max-width: 991.98px) {
    .main_hero_section {
        padding: 180px 0 50px 0;
        min-height: 100dvh;
    }

    .main_hero_section h1 {
        font-size: 50px;
    }

    .main_hero_section h2 {
        font-size: 38px;
    }

    .main_hero_section .main_hero_row {
        flex-direction: column;
        align-items: flex-start;
    }

    .main_hero_section .main_hero_row .kg_btn {
        margin-left: 0;
    }

    .main_hero_section .hero_logo + .cu_para {
        margin-top: 20px;
    }

    .main_hero_section .cu_para {
        margin-top: 0 !important;
    }
}

@media (max-width: 767.98px) {
    .main_hero_section h1,
    .main_hero_section h2 {
        font-size: 32px;
    }

    .main_hero_section .main_hero_row {
        margin-top: 24px;
        padding-top: 30px;
        gap: 30px;
    }

    .main_hero_section .hero_logo {
        max-width: 127px;
    }

    .main_hero_section .hero_logo .hero_logo_under_text {
        font-size: 11px;
    }

    .main_hero_section .main_hero_row .kg_btn {
        display: none !important;
    }

    .main_hero_section .cu_para {
        margin-top: 20px;
    }

    .main_hero_section .cu_para p br {
        display: none;
    }
}

/*--- Main Hero Style End ---*/


/*-- CTA Card Component Style Start --*/
.CTA_card {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.CTA_card .CTA_card_img {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 6px;
    overflow: hidden;
    font-size: 0;
    padding-bottom: 100%;
    position: relative;
    background-color: var(--section-bg-light);
}

.CTA_card figure {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    font-size: 0;
}

.CTA_card figure img,
.CTA_card figure video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.35s all ease-in-out;
    transform: scale(1);
    mix-blend-mode: multiply;
}

.CTA_card:hover figure img,
.CTA_card:hover figure video {
    transform: scale(1.05);
}

.CTA_card .small_badge {
    position: absolute;
    left: 40px;
    top: 40px;
}

.CTA_card .CTA_card_img .kg_btn {
    position: absolute;
    left: 50%;
    bottom: -50px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    max-width: calc(100% - 60px);
    transform: translateX(-50%);
    transition: 0.5s all ease-in-out;
    z-index: 5;
}

.CTA_card:hover .CTA_card_img .kg_btn {
    bottom: 30px;
    visibility: visible;
    opacity: 1;
}

.CTA_card h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
}

.CTA_card p {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 43px;
}

.CTA_card p + p {
    margin-top: 15px;
}

.CTA_card.product p {
    display: block;
}

.CTA_card span:not(.amount):not(.woocommerce-Price-currencySymbol) {
    font-size: 15px;
    text-transform: uppercase;
    line-height: 1.18;
    color: var(--color-primary);
    letter-spacing: 3px;
    font-weight: 500;
    font-family: var(--secondary-fonts);
    margin-bottom: 22px;
    display: block;
}


.CTA_card.single .CTA_card_img {
    padding-bottom: 45%;
}

.products_primary_swiper .swiper-slide {
    height: auto;
}

.products_primary_swiper .swiper-slide {
    display: flex;
}

.CTA_card .product_info > * {
    margin: 0 !important;
}

.CTA_card .product_info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    position: relative;
}

.CTA_card .product_info .kg_btn {
    margin: auto 0 0 0 !important;
}

.CTA_card .product_info > * a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.CTA_card .ajax_add_to_cart {
    max-width: 100% !important;
}
@media (max-width: 1199.98px) {
    .CTA_card .small_badge {
        left: 20px;
        top: 20px;
    }
}

@media (max-width: 991.98px) {
    .CTA_card .CTA_card_img {
        margin-bottom: 20px;
    }

    .CTA_card h4 {
        font-size: 20px;
    }

    .CTA_card span:not(.amount):not(.woocommerce-Price-currencySymbol) {
        font-size: 12px;
        margin-bottom: 20px;
    }
}

/*-- CTA Card Component Style End --*/


/*-- Testimonials Card Component Style Start --*/
.testimonials_card {

}

.testimonials_card .testimonial_img {
    width: 250px;
    height: 250px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 25px;
}

.testimonial_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonials_card p {
    margin-bottom: 25px;
}

.testimonials_card > * {
    max-width: 450px;
}

.testimonials_card span {
    font-size: 15px;
    text-transform: capitalize;
    line-height: 1.18;
    color: var(--color-primary);
    letter-spacing: 3px;
    font-weight: 500;
    font-family: var(--secondary-fonts);
    margin-bottom: 4px;
    display: block;
}

.testimonials_card h6 {
    font-size: 14px;
    color: #9a999b;
    margin: 0;
}

@media (max-width: 767.98px) {
    .testimonials_card .testimonial_img {
        width: 200px;
        height: 200px;
    }
}

/*-- Testimonials Card Component Style End --*/

/*--- Taxonomy Card Style Start ---*/
.taxonomy_card {
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: var(--section-bg-light);
}

.taxonomy_card figure {
    font-size: 0;
    position: relative;
    padding-bottom: 100%;
    background-color: var(--section-bg-light);
    border-radius: 5px;
    overflow: hidden;
}

.taxonomy_card img {
    object-fit: cover;
    object-position: center;
    transition: 0.35s all ease-in-out;
    transform: scale(1);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.taxonomy_card:hover img {
    transform: scale(1.05);
}


.dropup_wrapper {
    display: inline-block;
    padding: 12px 40px;
    border-radius: 6px 6px 0px 0px;
    font-family: var(--secondary-fonts);
    font-size: 14px;
    line-height: 1.43;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-transform: uppercase;
    opacity: 1;
    text-decoration: none;
    text-align: center;
    background: var(--color-white);
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100% - 30px);
    min-width: 230px;
    /*text-overflow: ellipsis;*/
    /*white-space: nowrap;*/
    /*overflow: visible;*/
}

.dropup_wrapper a {
    color: var(--color-primary);
    text-decoration: none;
}

.dropup_wrapper:hover a:before {
    transform: scaleY(-1)
}

.dropup_main_btn:before {
    font-family: "Font Awesome 6 Free" !important;
    content: "\f107";
    font-weight: 900;
    transition: 0.4s all ease-in-out;
    display: inline-block;
    color: var(--color-primary);
    position: relative;
    width: auto;
    height: auto;
    margin: 0;
}

.dropup_wrapper .dropup_menu {
    margin: 0 0 -5px 0;
    position: absolute;
    bottom: 100%;
    left: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.5s ease, opacity 0.25s ease;
    background-color: #fff;
    box-shadow: none;
    border-radius: 4px 4px 0 0;
    flex-direction: column;
    display: flex;
    gap: 12px;
    z-index: 10;
    padding: 12px 15px;
    width: 100%;
    text-align: center;
}

.dropup_wrapper:hover .dropup_menu {
    max-height: 220px;
    opacity: 1;
    visibility: visible;
}

.single_dropup .dropup_main_btn:before {
    content: none;
}

.dropup_wrapper .dropup_menu a {
    white-space: pre-wrap;
}

@media (max-width: 1700.98px) {
    .dropup_wrapper {
        padding: 12px 25px;
    }
}

@media (max-width: 991.98px) {
    .dropup_wrapper {
        padding: 10px 18px;
        font-size: 13px;
        letter-spacing: 2px;
        width: 170px;
    }
}

@media (max-width: 767.98px) {
    .dropup_wrapper {
        font-size: 11px;
    }
}

/*--- Taxonomy Card Style End ---*/

/*-- News Card Style Start --*/
.news_card {
    display: flex;
    position: relative;
}

.news_card .news_card_img {
    max-width: 58.8%;
    flex: 0 0 58.8%;
    border-radius: 6px;
    width: 100%;
    overflow: hidden;
    padding-bottom: 58.8%;
    position: relative;
    background-color: var(--section-bg-light);
}

.news_card .news_card_img figure {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news_card .news_card_img figure,
.news_card .news_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 !important;
    font-size: 0;
    transition: 0.35s all ease-in-out;
    transform: scale(1);
}

.news_card:hover img {
    transform: scale(1.05);
}

.news_card .news_card_info {
    background-color: var(--section-bg-light);
    border-radius: 6px;
    padding: 60px 55px 56px 30px;
    display: flex;
    align-items: flex-end;
    max-width: 48%;
    flex: 0 0 48%;
    width: 100%;
    position: relative;
    left: -7%;
    margin: 30px 0;
}


.news_card .small_badge {
    margin: 0 0 30px 0;
}

.news_card h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news_card p {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news_card .overlay_link {
    color: inherit;
}

@media (max-width: 1199.98px) {
    .news_card .news_card_info {
        padding: 30px 20px
    }
}

@media (max-width: 991.98px) {
    .news_card {
        flex-wrap: wrap;
        justify-content: center;
    }


    .news_card .news_card_img {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .news_card .news_card_info {
        flex: 0 0 calc(100% - 12px);
        max-width: calc(100% - 12px);
        margin-top: -8px !important;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        padding: 45px 20px 30px 20px;
    }

    .news_card .news_card_info {
        margin: 0;
    }

    .news_card h4 {
        font-size: 20px;
    }

    .news_card p {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .news_card .news_card_info {
        margin-top: -3px !important;
        padding-top: 49px;
    }

    .news_card .small_badge {
        margin-bottom: 24px
    }

    .news_card h4 {
        margin-bottom: 20px;
    }
}

/*-- News Card Style End --*/

/*--- Industries Section Style Start ---*/
.industries_section {
    padding: 180px 0 100px;
    z-index: 1;
    position: relative;
}

.industries_section .industries_section_row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 93px;
}

.industries_section.reverse .industries_section_row {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.industries_section .industries_links_col li {
    line-height: 1;
}

.industries_section .industries_links_col a {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.28;
    list-style-type: none;
    transition: 0.35s all ease;
    cursor: pointer;
    color: var(--text-color);
    text-decoration: none;
}

.industries_section .industries_links_col li + li {
    margin-top: 10px;
}

.industries_section .industries_links_col a:hover,
.industries_section .industries_links_col li.active a {
    color: var(--color-primary);
}

.industries_section .industries_images_col {
    max-width: 48%;
    width: 100%;
    flex: 0 0 48%;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    position: relative;
}

.industries_section .quick_link_img {
    margin: 0 !important;
    width: 100%;
    height: 100%;
    max-height: 850px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    font-size: 0;
    transition: 0.4s all ease;
    padding-bottom: 100%;
}

.industries_section .quick_link_img figure:first-child {
    position: absolute;
    left: 0;
    top: 0;
}

.industries_section .industries_images_col figure {
    margin: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

.industries_section .quick_link_img > figure:not(:first-child) {
    position: absolute;
    width: auto !important;
    max-width: 230px !important;
    height: auto !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%);
    filter: brightness(10);
    z-index: 2;
}

.industries_section .quick_link_img.overlay:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.38);
    z-index: -1;
}

.industries_section .industries_images_col .quick_link_img.active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

.industries_section .quick_link_img:first-child {
    display: block !important;
    position: relative;
    z-index: -1;
    visibility: visible;
    opacity: 1;
}

.industries_images_col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.customer_stories_section + .industries_section {
    padding-top: 80px;
    padding-bottom: 180px;
}

@media (max-width: 1366.98px) {
    .industries_section {
        padding: 100px 0;
    }

    .industries_section .industries_links_col a {
        font-size: 40px;
    }

}


@media (max-width: 991.98px) {
    .industries_section .industries_section_row {
        gap: 30px;
    }

    .industries_section .industries_links_col a {
        font-size: 28px;
    }

    .industries_section .industries_images_col {
        margin-top: 0 !important;
        flex: 0 0 55%;
        max-width: 55%;
    }
}

@media (max-width: 767.98px) {
    .industries_section {
        padding: 100px 0 50px;
    }

    .industries_section .industries_links_col a {
        font-size: 26px;
    }

    .industries_section .industries_images_col {
        display: none !important;
    }

    .customer_stories_section + .industries_section,
    .customer_stories_section + style + .industries_section {
        padding-top: 0;
        padding-bottom: 100px;
    }
}

/*--- Industries Section Style End ---*/

/*--- Office Locations Section Style Start ---*/
.office_locations_section {
    padding: 196px 0 162px;
}

.office_locations_section + .office_locations_section {
    padding-top: 0;
}

.office_locations_row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    row-gap: 100px;
}

.office_locations_row .office_location_card {
    max-width: calc(25% - 22.5px);
    flex: 0 0 calc(25% - 22.5px);
    width: 100%;
}

.office_locations_row.cols_3 .office_location_card {
    max-width: calc(33.333% - 20px);
    flex: 0 0 calc(33.333% - 20px);
}

.office_location_card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.office_location_card h6 {
    margin-bottom: 20px;
}

.office_location_card > figure {
    margin-bottom: 40px !important;
    position: relative;
    padding-bottom: 100%;
    border-radius: 5px;
    overflow: hidden;
    font-size: 0;
    width: 100%;
    object-fit: cover;
    background-color: #E2E2E2;
}

.office_location_card > figure img,
.office_location_card > figure iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.office_location_card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.office_location_card h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.18;
    color: var(--color-primary);
    font-family: var(--secondary-fonts);
    text-transform: uppercase;
}

.office_location_card a:not(.kg_btn),
.office_location_card p,
.office_location_card .locations_para {
    color: var(--text-color);
    text-decoration: none;
    transition: 0.35s all ease-in-out;
    font-size: 17px;
    margin: 0;
}

.office_location_card a:not(.kg_btn) {
    font-weight: 600;
    color: var(--color-primary);
    display: inline-block;
}

.office_location_card .locations_para + a:not(.kg_btn) {
    margin-top: 25px;
}

.office_location_card a:not(.kg_btn):hover {
    color: var(--color-primary);
}

.office_location_card .kg_btn {
    margin-top: 40px;
}

.office_location_card .locations_para p + p {
    margin-top: 15px;
}

.office_location_card .locations_para p span a {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.office_location_card h3 + .locations_para {
    margin-top: 20px;
}


@media (max-width: 1440.98px) {
    .office_locations_row {
        column-gap: 20px;
    }

    .office_locations_row .office_location_card {
        max-width: calc(25% - 15px);
        flex: 0 0 calc(25% - 15px);
    }
}

@media (max-width: 1199.98px) {
    .office_locations_row .office_location_card {
        max-width: calc(33.333% - 13.333px);
        flex: 0 0 calc(33.333% - 13.333px);
    }
}

@media (max-width: 991.98px) {
    .office_locations_section {
        padding: 100px 0;
    }

    .office_locations_row {
        gap: 30px;
        row-gap: 60px;
    }

    .office_locations_row .office_location_card,
    .office_locations_row.cols_3 .office_location_card {
        max-width: calc(50% - 15px);
        flex: 0 0 calc(50% - 15px);
    }

    .office_location_card .locations_para + a:not(.kg_btn) {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .office_locations_row .office_location_card,
    .office_locations_row.cols_3 .office_location_card {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .office_location_card h3 {
        font-size: 24px;
    }

    .office_location_card h4 {
        margin-bottom: 10px;
    }

    .office_location_card a:not(.kg_btn),
    .office_location_card p,
    .office_location_card .locations_para {
        font-size: 16px;
    }

    .office_location_card h3 {
        margin-bottom: 7px;
    }

    .office_location_card figure {
        margin-bottom: 25px !important;
    }

    .office_location_card h6 {
        margin-bottom: 15px;
    }
}

/*--- Office Locations Section Style End ---*/

/*--- Product Option  Section Style Start ---*/
.product_option_section {
    padding: 180px 0;
}

.product_option_section .container-fluid {
    max-width: 1440px;
}

.product_option_section + .product_option_section,
.product_option_section + style + .product_option_section {
    padding-top: 0;
}

.product_option_section .product_option_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

@media (min-width: 992px) {
    .product_option_section.reverse .product_option_row {
        flex-direction: row-reverse;
    }
}

.product_option_section .product_option_textCol {
    width: 47%;
}

.product_option_section .product_option_img {
    width: 41.5%;
}

.product_option_img figure {
    border-radius: 5px;
    overflow: hidden;
    font-size: 0;
}

.product_option_img img {
    width: 100%;
}

.product_option_section h3 {
    font-size: 38px;
    line-height: 1.3;
    font-weight: 600;
}

.product_option_section p {
    margin: 20px 0 0 0;
    font-size: 17px;
    max-width: 595px;
}

.product_option_section .kg_btn {
    margin-top: 60px;
}

@media (max-width: 1199.98px) {
    .product_option_section {
        padding: 120px 0;
    }
}

@media (max-width: 991.98px) {
    .product_option_section {
        padding: 100px 0;
    }

    .product_option_section .product_option_textCol,
    .product_option_section .product_option_img {
        width: 100%;
    }

    .product_option_section .product_option_img {
        order: 12;
    }

    .product_option_section .product_option_textCol {
        margin-bottom: 50px;
    }

    .product_option_section .kg_btn {
        margin-top: 40px;
    }

    .product_option_section h3 {
        font-size: 24px;
    }

    .product_option_section p {
        font-size: 16px;
        margin-top: 15px;
    }
}

/*--- Product Option  Section Style End ---*/

/*--- About Grid Section Style Start ---*/
.about_grid_section {
    padding: 152px 0;
}

.about_grid_section .about_grid_row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.about_grid_section .about_grid_textCol {
    max-width: 50%;
    flex: 0 0 50%;
    width: 100%;
    padding-top: 15px;
}

.about_grid_section .about_grid_imgCol {
    max-width: 40%;
    flex: 0 0 40%;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    font-size: 0;
}

.about_grid_section .about_grid_imgCol figure,
.about_grid_section .about_grid_imgCol img {
    font-size: 0;
    margin: 0 !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_grid_section .about_grid_imgCol img {
    aspect-ratio: 1;
}


.about_grid_section h2 {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.18;
    margin: 0 0 20px 0;
}

.about_grid_section .ag_para {
    color: var(--text-color);
}

.about_grid_section p:last-child {
    margin-bottom: 0;
}

.about_grid_section .ag_para ul,
.about_grid_section .ag_para ul + p {
    margin-top: 25px;
}

.about_grid_section .ag_para li {
    position: relative;
    padding-left: 25px;
}

.about_grid_section .ag_para li + li {
    margin-top: 10px;
}

.about_grid_section .ag_para li:before {
    font-family: "Font Awesome 6 Free";
    content: "\f178";
    font-weight: 900;
    margin-right: 10px;
    transition: 0.4s all ease-in-out;
    display: inline-block;
    color: var(--color-primary);
    font-size: 16px;
    position: absolute;
    left: 2px;
    top: 2px;
}

.about_grid_section input {
}


.about_grid_section .statistics_row {
    display: flex;
    gap: 20px;
    margin-top: 60px;
}

.about_grid_section h4,
.about_grid_section blockquote {
    font-size: 28px;
    font-weight: normal;
    line-height: 1.38;
    margin: 64px 0 0 0;
}

.about_grid_section blockquote h4 {
    margin-top: 0 !important;
}

.about_grid_section h6 {
    font-size: 12px;
    font-weight: 400;
    margin: 20px 0 0 0;
}

.about_grid_section p + div {
    margin-top: 10px;
}

.about_grid_section p + p {
    margin-top: 15px;
}

.about_grid_section .statistics_row .statistic_item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 26%;
    flex: 0 0 26%;
}

.about_grid_section .statistic_item h2 {
    margin-bottom: 0;
}

.about_grid_section.image_left .about_grid_imgCol {
    order: -1;
}

.about_grid_section .statistics_row h3 {
    font-size: 62px;
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--color-primary);
    font-family: var(--secondary-fonts);
    display: flex;
}

.about_grid_section .counter_number {
    width: 83px;
}

.about_grid_section .statistics_row p {
    font-size: 17px;
    color: var(--color-primary);

}

.about_grid_section .kg_btn {
    margin-top: 60px;
}


.about_grid_section .contact_us_form {
    padding: 0 !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    margin-top: 60px;
}

.about_grid_section .contact_us_form input:not([type="checkbox"]):not([type="radio"]),
.about_grid_section .contact_us_form textarea {
    background-color: var(--color-white);
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.about_grid_section .check_box_label .checkmark {
    background-color: var(--color-white);
}


@media (max-width: 1366.98px) {
    .about_grid_section .about_grid_textCol {
        max-width: 50%;
        flex: 0 0 50%;
    }

    .about_grid_section .about_grid_imgCol {
        max-width: 45%;
        flex: 0 0 45%;
    }

    .about_grid_section .statistics_row {
        margin-top: 60px;
    }

    .about_grid_section .statistics_row h3 {
        font-size: 56px;
    }

    .about_grid_section .counter_number {
        width: 73px;
    }
}


@media (max-width: 1199.98px) {
    .about_grid_section {
        padding: 100px 0 !important;
    }
}

@media (max-width: 991.98px) {
    .about_grid_section .about_grid_row {
        flex-wrap: wrap;
        gap: 50px;
    }

    .about_grid_section.image_left .about_grid_imgCol {
        order: 12;
    }

    .about_grid_section .about_grid_textCol,
    .about_grid_section .about_grid_imgCol {
        max-width: 1000%;
        flex: 0 0 100%;
    }

    .about_grid_section .about_grid_imgCol {
        border-radius: 5px;
    }

    .about_grid_section h2 {
        font-size: 24px;
        margin-bottom: 0;
    }

    .product_option_section p,
    .about_grid_section p,
    .about_grid_section .ag_para {
        margin-top: 20px;
    }

    .about_grid_section .statistics_row {
        margin-top: 40px;
    }

    .about_grid_section .statistics_row h3 {
        font-size: 38px;
    }

    .about_grid_section .counter_number {
        width: 48px;
    }

    .about_grid_section .kg_btn {
        margin-top: 40px;
    }

    .about_grid_section + .about_grid_section,
    .customer_stories_section + .about_grid_section {
        padding-top: 0 !important;
    }

    body .about_grid_section + .about_grid_section.with_bg,
    body .about_grid_section.with_bg + .about_grid_section {
        padding-top: 100px !important;
    }

    .about_grid_section h4,
    .about_grid_section blockquote {
        font-size: 20px;
    }

    .about_grid_section blockquote {
        margin-top: 30px;
    }

    .about_grid_section .about_grid_textCol {
        padding-top: 0;
    }
}

/*--- About Grid Section Style End ---*/


/*--- Contact Hero Style Start ---*/
.contact_hero_section {
    min-height: 100vh;
    background-image: url("../images/home-hero-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    padding: 200px 0 90px;
    z-index: 1;
}

.contact_hero_section:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.2);
    display: block;
}

.contact_hero_section > video,
.contact_hero_section > .wp-block-video,
.contact_hero_section > .wp-block-video video,
.contact_hero_section > figure,
.contact_hero_section > figure > img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100% !important;
    height: 100% !important;
    object-position: center;
    object-fit: cover;
    display: block;
    margin: 0 !important;
}

.contact_hero_section .container,
.contact_hero_section .container-fluid {
    position: relative;
    z-index: 3;
}

.contact_hero_section h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-white);
    max-width: 880px;
}

.contact_hero_section .contact_hero_row {
    /*border-top: 1px solid var(--color-white);*/
    padding-top: 70px;
    margin-top: 65px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.contact_hero_section .contact_hero_row:before {
    content: "";
    width: 0;
    height: 1px;
    background-color: var(--color-white);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    animation: lineGrow 1.5s ease forwards;
    animation-delay: 0.6s;
}

.contact_hero_section .contact_hero_logo {
    font-size: 0;
    max-width: 197px;
}

.contact_hero_section .contact_hero_logo figure,
.contact_hero_section .contact_hero_logo img {
    width: 100%;
    object-fit: contain;
}

.contact_hero_section p,
.contact_hero_section .cu_para {
    font-size: 17px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.5;
    margin: 0;
}

.contact_hero_section .contact_hero_row p,
.contact_hero_section .contact_hero_row .cu_para {
    max-width: 1200px;
}

.contact_hero_section .contact_hero_row .kg_btn {
    margin-left: auto;
}

.contact_hero_section .pattern_div {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.contact_hero_section .contact_hero_outer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.contact_hero_section .contact_us_form {
    max-width: 54%;
    flex: 0 0 54%;
}

.contact_hero_section .contact_hero_content {
    max-width: 43%;
    flex: 0 0 43%;
}


.contact_hero_section .contact_hero_row {
    padding-right: 100px;
}


@media (max-width: 1700.98px) {
    .contact_hero_section {
        padding-bottom: 50px;
    }

    .contact_hero_section h1 {
        font-size: 70px;
    }

    .contact_hero_section .contact_hero_row {
        padding-top: 50px;
        margin-top: 50px;
        gap: 35px;
    }

    .contact_hero_section .contact_us_form {
        max-width: 50%;
        flex: 0 0 50%;
    }

    .contact_hero_section .contact_hero_content {
        max-width: 45%;
        flex: 0 0 45%;
    }

    .contact_hero_section .contact_hero_row {
        padding-right: 30px;
    }
}

@media (max-width: 1199.98px) {
    .contact_hero_section .contact_hero_row {
        padding-right: 0;
    }

    .contact_hero_section .contact_us_form {
        max-width: 50%;
        flex: 0 0 50%;
    }
}

@media (max-width: 991.98px) {
    .contact_hero_section {
        padding: 175px 0 60px 0;
        min-height: 100dvh;
    }

    .contact_hero_section h1 {
        font-size: 50px;
    }

    .contact_hero_section .contact_hero_row {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact_hero_section .contact_hero_row .kg_btn {
        margin-left: 0;
    }

    .contact_hero_section .contact_hero_outer {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .contact_hero_section .contact_hero_row {
        padding-right: 0;
    }

    .contact_hero_section .contact_us_form,
    .contact_hero_section .contact_hero_content {
        max-width: 100%;
        flex: 0 0 100%;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .contact_hero_section h1 {
        font-size: 32px;
    }

    .contact_hero_section .contact_hero_row {
        margin-top: 24px;
        padding-top: 30px;
        gap: 30px;
    }

    .contact_hero_section .contact_hero_logo {
        max-width: 130px;
    }

    .contact_hero_section .contact_hero_row p,
    .contact_hero_section .contact_hero_row .cu_para {
        font-size: 16px;
    }

    .contact_hero_section .pattern_div {
        display: none;
    }

    .contact_hero_section .contact_hero_row .kg_btn {
        display: none !important;
    }
}

/*--- Contact Hero Style End ---*/

/* Margin utilities: all sides */
.mb-0 {
    margin-bottom: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.m-6 {
    margin: 4rem !important;
}

.m-7 {
    margin: 5rem !important;
}

.m-8 {
    margin: 6rem !important;
}

.m-9 {
    margin: 7rem !important;
}

.m-10 {
    margin: 8rem !important;
}

/* Margin utilities: top */
.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mt-6 {
    margin-top: 4rem !important;
}

.mt-7 {
    margin-top: 5rem !important;
}

.mt-8 {
    margin-top: 6rem !important;
}

.mt-9 {
    margin-top: 7rem !important;
}

.mt-10 {
    margin-top: 8rem !important;
}

/* Margin utilities: right */
.mr-1 {
    margin-right: 0.25rem !important;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

.mr-3 {
    margin-right: 1rem !important;
}

.mr-4 {
    margin-right: 1.5rem !important;
}

.mr-5 {
    margin-right: 3rem !important;
}

.mr-6 {
    margin-right: 4rem !important;
}

.mr-7 {
    margin-right: 5rem !important;
}

.mr-8 {
    margin-right: 6rem !important;
}

.mr-9 {
    margin-right: 7rem !important;
}

.mr-10 {
    margin-right: 8rem !important;
}

/* Margin utilities: bottom */
.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mb-6 {
    margin-bottom: 4rem !important;
}

.mb-7 {
    margin-bottom: 5rem !important;
}

.mb-8 {
    margin-bottom: 6rem !important;
}

.mb-9 {
    margin-bottom: 7rem !important;
}

.mb-10 {
    margin-bottom: 8rem !important;
}

/* Margin utilities: left */
.ml-1 {
    margin-left: 0.25rem !important;
}

.ml-2 {
    margin-left: 0.5rem !important;
}

.ml-3 {
    margin-left: 1rem !important;
}

.ml-4 {
    margin-left: 1.5rem !important;
}

.ml-5 {
    margin-left: 3rem !important;
}

.ml-6 {
    margin-left: 4rem !important;
}

.ml-7 {
    margin-left: 5rem !important;
}

.ml-8 {
    margin-left: 6rem !important;
}

.ml-9 {
    margin-left: 7rem !important;
}

.ml-10 {
    margin-left: 8rem !important;
}

/* Margin utilities: x-axis (left & right) */
.mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
}

.mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}

.mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}

.mx-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}

.mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}

.mx-6 {
    margin-left: 4rem !important;
    margin-right: 4rem !important;
}

.mx-7 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
}

.mx-8 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
}

.mx-9 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
}

.mx-10 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
}

/* Margin utilities: y-axis (top & bottom) */
.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.my-6 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}

.my-7 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
}

.my-8 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
}

.my-9 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
}

.my-10 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.p-0 {
    padding: 0 !important;
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}


/*-- HERO Animations Start --*/
/*.main_hero_section h1,*/
/*.main_hero_section h2,*/
/*.main_hero_section h3,*/
/*.main_hero_section .cu_para,*/
/*.main_hero_section .hero_logo,*/
/*.main_hero_section .main_hero_row .kg_btn,*/
/*.contact_hero_section h1,*/
/*.contact_hero_section h2,*/
/*.contact_hero_section h3,*/
/*.contact_hero_section .cu_para,*/
/*.contact_hero_section .hero_logo,*/
/*.contact_us_form {*/
/*    opacity: 0;*/
/*    transform: translateY(40px);*/
/*    animation: fadeUp 1s ease forwards;*/
/*}*/

/*.main_hero_section .cu_para,*/
/*.main_hero_section .kg_btn,*/
/*.contact_hero_section .cu_para {*/
/*    animation-delay: 0.6s;*/
/*}*/

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineGrow {
    to {
        width: 100%;
    }
}

/*-- HERO ANIMATIONS END --*/


/*-- Auth Form Style Start --*/
.contact_us_form {
    padding: 80px 80px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    background-color: rgba(243, 244, 242, .6);
    -webkit-backdrop-filter: blur(10px);
}

.contact_us_form input:not([type="checkbox"]):not([type="radio"]),
.contact_us_form textarea {
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(243, 244, 242, .5);
    font-size: 17px;
    color: var(--text-color);
    font-weight: 400;
    padding: 15px 25px;
    border: none;
    outline: none;
    line-height: 1.3;
    width: 100%;
    transition: 0.35s all ease-in-out;
    font-family: var(--body-fonts);
}

.contact_us_form input::placeholder,
.contact_us_form textarea::placeholder {
    color: var(--color-primary) !important;
}

.contact_us_form input:not([type="checkbox"]):not([type="radio"]):focus,
.contact_us_form textarea:focus {
    outline: 1px solid var(--color-primary);
}

.contact_us_form textarea {
    height: 122px;
}

.contact_us_form .check_box_label {
    display: flex;
    gap: 10px;
    cursor: pointer;
    align-items: center;
}

.contact_us_form input[type="checkbox"] {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin: 0;
}


.contact_us_form .check_box_label input[type="checkbox"] {
    margin-top: 3px;
}

.contact_us_form .check_box_label label {
    font-size: 15px;
}

.contact_us_form label + label {
    margin-top: 10px;
    display: block;
}

.contact_us_form .check_box_label {
    margin-top: 23px;
}

.contact_us_form button {
    margin-top: 20px;
    cursor: pointer;
}


body .auth_form_box {
    padding: 50px 40px;
    animation: none !important;
}

header .auth_form_box {
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transform: translateY(15px);
    transition: 0.5s all ease-in-out !important;
}

header .auth_form_box .close_auth_form_btn {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

#loginForm,
#signupForm {
    display: none;
}

#loginForm.active,
#signupForm.active {
    display: block;
}

header .auth_form_box.visible {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    transform: translateY(0);
}

body .auth_form_box .section_primary_title {
    margin-bottom: 30px;
}

.form_ftr {
    margin-top: 40px;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.form_ftr + .form_ftr {
    margin-top: 7px;
}

.form_ftr a {
    color: var(--color-primary);
    display: inline-block;
    vertical-align: middle;
}


.check_box_label input[type="checkbox"] {
    display: none;
}

.check_box_label .checkmark {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(243, 244, 242, .5);
    border: none;
    border-radius: 6px;
    position: relative;
    transition: all 0.2s ease;
}

.check_box_label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.check_box_label input[type="checkbox"]:checked + .checkmark::after {
    content: "";
    position: absolute;
    left: 30%;
    top: 40%;
    width: 14px;
    height: 28px;
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-50%, -50%);
}


header .auth_form_box .check_box_label {
    margin-top: 10px;
}


@media (max-width: 1700.98px) {
    .contact_us_form {
        padding: 60px 60px;
    }
}

@media (max-width: 991.98px) {
    header .auth_form_box {
        width: 600px;
        padding: 25px;
    }
}

@media (max-width: 767.98px) {
    .contact_us_form {
        padding: 60px 25px;
        border-radius: 5px;
    }

    .contact_us_form input:not([type="checkbox"]):not([type="radio"]),
    .contact_us_form textarea {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 15px;
        border-radius: 5px;
    }

    header .auth_form_box {
        width: 340px;
    }

    .check_box_label .checkmark {
        width: 25px;
        height: 25px;
        flex: 0 0 25px;
    }

    body .auth_form_box .section_primary_title {
        margin-bottom: 15px;
    }

    .check_box_label input[type="checkbox"]:checked + .checkmark::after {
        left: 25%;
        top: 40%;
        width: 8px;
        height: 16px;
    }

    .form_ftr {
        margin-top: 30px;
        font-size: 16px;
    }
}

@media (max-width: 380.98px) {
    header .auth_form_box {
        width: 290px;
    }
}

/*-- Auth Form Style End --*/
