/* *************************** Variable *************************** */

:root {
    --font: "Plus Jakarta Sans", sans-serif;
    --img-hover-transition: all .5s ease-in-out;
    --base-transition: all .3s ease-in-out;
    --only-header: 80px;
    --header-height: calc(80px + 52px);

    --spacing-xxs: 0.125rem;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.375rem;
    --spacing-md: 0.5rem;
    --spacing-lg: 0.75rem;
    --spacing-xl: 1rem;
    --spacing-2xl: 1.25rem;
    --spacing-3xl: 1.5rem;
    --spacing-4xl: 2rem;
    --spacing-5xl: 2.5rem;
    --spacing-6xl: 3rem;
    --spacing-7xl: 4rem;
    --spacing-8xl: 5rem;
    --spacing-9xl: 6rem;
    --spacing-10xl: 8rem;
    --spacing-11xl: 10rem;

    --radius-xxs: 0.125rem;
    --radius-xs: 0.25rem;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.625rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.25rem;
    --radius-4xl: 1.5rem;
    --radius-full: 9999rem;

    --sec-radius: 0 0 var(--radius-3xl) var(--radius-3xl);

    --base: #535862;
    --heading: #181D27;
    --bg-teriary: #F5F5F5;
    --text-accent: #7AE2CF;
    --border-primary: #D5D7DA;
    --border-secondary: #E9EAEB;
    --bg-secondary: #FAFAFA;

    --display-2xl: clamp(2.5rem, 5.45vi + 0.14rem, 4.5rem);
    --display-xl: clamp(2rem, 4.72vi + 0.23rem, 3.75rem);
    --display-lg: clamp(1.75rem, 4.07vi + 0.3rem, 3rem);
    --display-md: clamp(1.5rem, 3.5vi + 0.36rem, 2.25rem);
    --display-sm: clamp(1.25rem, 3vi + 0.41rem, 1.875rem);
    --display-xs: clamp(1rem, 2.57vi + 0.44rem, 1.5rem);
    --text-xl: clamp(1.125rem, 0.91vi + 0.52rem, 1.25rem);
    --text-lg: clamp(1rem, 0.74vi + 0.52rem, 1.125rem);
    --text-md: clamp(0.875rem, 0.6vi + 0.51rem, 1rem);
    --text-sm: clamp(0.75rem, 0.47vi + 0.5rem, 0.875rem);
    --text-xs: clamp(0.625rem, 0.37vi + 0.49rem, 0.75rem);
}

/* *************************** Variable *************************** */

/* *************************** Global *************************** */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--only-header);
}

body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--base);
}

img, svg {
    width: 100%;
    height: auto;
    object-fit: cover;
    vertical-align: top;
}

svg {
    flex-shrink: 0;
}

img {
    transition: var(--img-hover-transition);
}

section {
    padding-block: var(--spacing-9xl);
}

a {
    color: currentColor;
    text-decoration: none;
    transition: var(--base-transition);
    display: inline-block;
}

p {
    margin-bottom: 1em;
}

main ul,
main ol {
    margin-block: 1em;
    padding-left: 1.5em;
}

P:last-of-type {
    margin-bottom: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading);
    line-height: 1.22;
    margin: 0;
}

.text-primary {
    color: var(--heading) !important;
}

.text-base {
    color: var(--base) !important;
}

.block {
    display: flex;
    flex-direction: column;
}

.grid {
    display: grid;
    grid-template-rows: 1fr;
}


.icon-gray-lg__wrap {
    background: var(--bg-teriary);
    border-radius: var(--radius-full);
    width: var(--spacing-6xl);
    height: var(--spacing-6xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-gray-lg__wrap svg {
    height: var(--spacing-3xl);
    width: var(--spacing-3xl);
}

.btn {
    border-radius: var(--radius-full);
    display: flex;
    gap: 0.5rem;
    font-weight: 600;
    width: fit-content;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
    --bs-btn-bg: #000;
    --bs-btn-hover-bg: #252B37;
    --bs-btn-border-color: #000;
    --bs-btn-hover-border-color: #252B37;

    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #252B37;
    --bs-btn-active-border-color: #252B37;
}

.btn-secondary {
    --bs-btn-color: #414651;
    --bs-btn-hover-color: #000;
    --bs-btn-bg: #FFFFFF;
    --bs-btn-hover-bg: #E6E6E6;
    --bs-btn-border-color: #D5D7DA;
    --bs-btn-hover-border-color: #666666;
    box-shadow: 0px 0px 0px 1px rgba(10, 13, 18, 0.18) inset, 0px -2px 0px 0px rgba(10, 13, 18, 0.05) inset, 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
}

.btn-secondary:hover {
    box-shadow: 0px 0px 0px 1px rgba(10, 13, 18, 0.18) inset,
        0px -2px 0px 0px rgba(10, 13, 18, 0.05) inset,
        0px 1px 2px 0px rgba(10, 13, 18, 0.05);
}

.btn-outline-dark {
    --bs-btn-color: #414651;
    --bs-btn-hover-color: #252B37;
    --bs-btn-bg: #FFFFFF;
    --bs-btn-hover-bg: #E6E6E6;
    --bs-btn-border-color: #000000;
    --bs-btn-hover-border-color: #000000;

    --bs-btn-active-color: #252B37;
    --bs-btn-active-bg: #E6E6E6;
    --bs-btn-active-border-color: #000000;
}

.btn-sm {
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-font-size: 0.875rem;
    --bs-btn-padding-x: 0.75rem;
}

.btn-md {
    --bs-btn-padding-y: 0.25rem;
    --bs-btn-font-size: 0.75rem;
    --bs-btn-padding-x: 1.25rem;
}

.btn-lg {
    --bs-btn-padding-y: 0.625rem;
    --bs-btn-font-size: var(--text-lg);
    --bs-btn-padding-x: 1rem;
}

.btn-xl {
    --bs-btn-padding-y: 0.6875rem;
    --bs-btn-padding-x: 1.25rem;
    --bs-btn-font-size: 1rem;
}

.btn-2xl {
    --bs-btn-padding-y: 0.889em;
    --bs-btn-padding-x: 1.33em;
    --bs-btn-font-size: var(--text-lg);
}

.btn svg {
    width: 1.25em;
    height: 1.25em;
    flex-shrink: 0;
}

.text-accent strong {
    color: var(--text-accent);
    font-weight: 600;
}

.bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.global_banner_2 {
    border-radius: var(--sec-radius);
}

.global_banner_1 {
    min-height: 545px;
    position: relative;
    border-radius: var(--sec-radius);
    overflow: hidden;
}

.global_banner_1::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(60.99deg, rgba(0, 0, 0, 0.6) 29.84%, rgba(93, 138, 168, 0.6) 124.52%);
}

.global_banner__content {
    margin-top: 0.75rem;
}

.global_space {
    gap: var(--spacing-7xl);
}

.post__content_wrap {
    max-width: 720px;
}

.post__content :is(h1, h2, h3, h4, h5, h6) {
    font-weight: 600;
    margin-top: 1.34em;
    margin-bottom: 0.67em;
}

.post__content>*:first-child {
    margin-top: 0 !important;
}

.post__content>*:last-child {
    margin-bottom: 0 !important;
}

.global_divider {
    background-color: var(--border-secondary);
    height: 1px;
}

.splide__pagination__page {
    outline: none !important;
}

#contact-template+.cta-horizontal__sec,
#error-template+.cta-horizontal__sec {
    display: none;
}

/* *************************** Global *************************** */

/* *************************** Fonts *************************** */

.display-2xl {
    font-size: var(--display-2xl);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.display-xl {
    font-size: var(--display-xl);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.display-lg,
.post__content h2 {
    font-size: var(--display-lg);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.display-md,
.post__content h3 {
    font-size: var(--display-md);
    letter-spacing: -0.02em;
    line-height: 1.22;
}

.display-sm,
.post__content h4 {
    font-size: var(--display-sm);
    line-height: 1.267;
}

.display-xs,
.post__content h5 {
    font-size: var(--display-xs);
    line-height: 1.33;
}

.text-xl {
    font-size: var(--text-xl);
}

.text-lg {
    font-size: var(--text-lg);
    line-height: 1.55;
}

.text-md {
    font-size: var(--text-md);
}

.text-sm {
    font-size: var(--text-sm);
}

.text-xs {
    font-size: var(--text-xs);
}

/* *************************** Fonts *************************** */


/* *************************** Bootstrap Override *************************** */

.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: var(--spacing-7xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-7xl);
    max-width: 1280px;
    width: 100%;
}

.row {
    --bs-gutter-x: var(--spacing-7xl);
    --bs-gutter-y: var(--spacing-7xl)
}

.gap-20 {
    gap: var(--spacing-2xl);
}

.gap-12 {
    gap: var(--spacing-lg);
}

.h-min-auto {
    min-height: auto !important;
}

.modal-backdrop {
    --bs-backdrop-opacity: 0.4;
}

.modal-content {
    border: 0;
}

.cursor-pointer {
    cursor: pointer;
}

.bg-gradient {
    --bs-gradient: linear-gradient(21.1deg, #000000 13.42%, #5D8AA8 137.17%);
}

.bg-secondary {
    --bs-secondary-rgb: 250, 250, 250;
}

@media(min-width: 1200px) {
    .px-xl-6 {
        padding-right: 4rem !important;
        padding-left: 4rem !important;
    }

    .menu_dropdown__toggle:has(+.site_mega__menu.active)::after {
        transform: rotate(180deg);
    }

    .mega__menu__inner {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition: all 0.4s ease-in-out;
        background: #fff;
        padding-top: var(--spacing-2xl);
        padding-bottom: var(--spacing-3xl);
        box-shadow: 0px 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);
    }

    .site_mega__menu {
        padding-bottom: 20px;
    }

    .site_mega__menu.active .mega__menu__inner {
        opacity: 1;
        visibility: visible;
        transform: translateY(0%);
    }

    .feature-card {
        --bs-gutter-x: var(--spacing-9xl);
    }

    .product_slider {
        position: sticky;
        top: calc(var(--header-height));
    }
}

@media(min-width: 992px) {
    .global_banner__inner {
        grid-template-columns: 1fr 39.5%;
        gap: var(--spacing-4xl);
    }

    .site_footer .widget_first {
        max-width: 384px;
    }

    .site_footer .widget_second {
        max-width: 434px;
    }

    .site_footer .widget_third {
        max-width: 264px;
    }
}

@media(min-width: 768px) {
    .feature-card:nth-child(odd) {
        flex-direction: row-reverse;
    }

    .related-product__info {
        grid-template-columns: 1fr auto;
        gap: var(--spacing-4xl);
    }

}

/* *************************** Bootstrap Override *************************** */

/* *************************** Global form *************************** */

.global_form .form-group {
    display: flex;
    flex-direction: column;
    grid-column: 1/-1;
}

.global_form .form-group.half_field {
    grid-column: unset;
}

.form_wrapper {
    max-width: 480px;
    margin: auto;
}

.global_form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    justify-content: space-between;
    gap: 1.5rem;
}

.global_form .form-group label {
    font-size: var(--text-sm);
    line-height: 1.43;
    font-weight: 500;
    /* text-transform: capitalize; */
    margin-bottom: 5px;
    color: #414651;
}

.global_form .form-group select,
.global_form .form-group textarea,
.global_form .form-group input,
.custom-select2+.select2 .select2-selection {
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-md) !important;
    background-color: var(--bs-body-bg);
    line-height: 1.5;
    font-size: var(--text-md);
    padding-top: 0.557em;
    padding-right: 0.875em;
    padding-bottom: 0.557em;
    padding-left: 0.875em;
    outline: 2px solid transparent !important;
    outline-offset: -1px;
    transition: var(--base-transition);
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    width: 100%;
    height: auto !important;
}

.global_form textarea {
    min-height: 134px;
}

.global_form .form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M5%207.5L10%2012.5L15%207.5%22%20stroke%3D%22%23717680%22%20stroke-width%3D%221.66667%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center right 10px;
    cursor: pointer;
}
body .select2-container--default .select2-results>.select2-results__options {
    max-height: 190px;
}
.global_form select:focus,
.global_form input:focus,
.global_form textarea:focus,
.custom-select2+.select2 .select2-selection:focus,
.custom-select2+.select2.select2-container--open .select2-selection {
    outline: 2px solid var(--bs-black) !important;
}
.select2-container {
    z-index: 9999;
}
.select2-selection__arrow {
    width: 20px !important;
    height: 20px !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23535862' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    content: '';
    display: block;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%);
    right: 14px !important;
}

.select2-container .select2-dropdown {
    top: 4px;
    border: 1px solid var(--border-secondary) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    box-shadow: 0px 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);
}

.select2-container .select2-search,
.select2-selection__arrow b {
    display: none;
}

body .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000;
    line-height: 28px;
    padding: 0;
}

.select2-results .select2-results__options {
    padding: var(--spacing-xs) var(--spacing-sm);
    scrollbar-width: thin;
}

.select2-results .select2-results__options .select2-results__option {
    background-color: transparent;
    color: var(--heading);
    padding: 0.625rem;
    transition: var(--base-transition);
    border-radius: var(--radius-md);
    font-weight: 500;
}

.select2-results .select2-results__options .select2-results__option:hover {
    background-color: #fafafa;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #717680;
}

.global_form button.bricks-button {
    box-shadow: var(--shadows--shadow-xs-skeuomorphic);
    transition: var(--base-transition);
}

.global_form .required:after {
    top: 0;
    color: var(--text-brand-tertiary-600);
}

.global_form .options-wrapper li {
    position: relative;
}

.global_form .options-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
}

.global_form .options-wrapper input[type="checkbox"]+label {
    position: relative;
    padding-left: 2em;
    margin: 0;
    font-size: var(--text-md);
    line-height: 1.5;
    font-weight: 400;
    cursor: pointer;
}

.global_form .options-wrapper input[type="checkbox"]+label::before {
    position: absolute;
    content: '';
    width: 1.25em;
    height: 1.25em;
    border: 1px solid var(--border-primary);
    border-radius: var(--spacing-sm);
    top: 0.125em;
    left: 0;
    outline: 2px solid transparent !important;
    outline-offset: 2px;
    transition: var(--base-transition);
}

.global_form .options-wrapper input[type="checkbox"]+label:hover:before {
    outline-color: var(--base) !important;
}

.global_form .options-wrapper input[type="checkbox"]:checked+label::before {
    background: var(--bs-black);
    border-color: var(--bs-black);
}

.global_form .options-wrapper input[type="checkbox"]+label::after {
    position: absolute;
    content: '';
    width: 0.875em;
    height: 0.875em;
    opacity: 0;
    visibility: hidden;
    background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='14'%20height='14'%20viewBox='0%200%2014%2014'%20fill='none'%3E%3Cpath%20d='M11.6666%203.5L5.24992%209.91667L2.33325%207'%20stroke='white'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top: 0.35em;
    left: 0.19em;
}

.global_form .options-wrapper input[type="checkbox"]:checked+label::after {
    opacity: 1;
    visibility: visible;
}

.global_form .options-wrapper a {
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.global_form .captcha .form-group {
    width: 100% !important;
}

.global_form .captcha .form-group.recaptcha-error,
.form-group.captcha:has(.recaptcha-error) {
    display: none;
}

.global_form label:has(+input[required])::after,
.global_form label:has(+textarea[required])::after,
.global_form label:has(+select[required])::after {
    content: "*";
    padding: 0 2px;
    position: relative;
    top: 0;
    color: var(--bs-black);
}

.global_form ul {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: var(--spacing-3xl);
    display: flex;
    flex-direction: column;
}

.global_form button[type="submit"] .loading {
    display: none;
}

.global_form button[type="submit"] svg {
    height: 1em;
    transform-origin: center;
    vertical-align: middle;
}

.global_form .submit-button-wrapper button {
    width: 100%;
    justify-content: center;
}

.global_form .submit-button-wrapper {
    margin-top: 1rem;
}

/* *************************** Global form *************************** */

/* *************************** Home *************************** */

.feature-card {
    --bs-gutter-y: var(--spacing-4xl);
}

.service-sec .container {
    row-gap: var(--spacing-9xl);
    overflow: hidden;
}

.service-sec {
    row-gap: var(--spacing-9xl);
}

.feature-card__img {
    aspect-ratio: 560/400;
    border-radius: var(--radius-3xl);
}

.intro {
    max-width: 768px;
    gap: var(--spacing-lg);
}

.intro_btn {
    gap: var(--spacing-4xl);
}

.intro_inner {
    gap: var(--spacing-2xl);
}

.events.row {
    --bs-gutter-y: var(--spacing-7xl);
}

.event_inner.row {
    --bs-gutter-x: var(--spacing-4xl);
    --bs-gutter-y: var(--spacing-4xl);
}

.event_card__title-wrap svg {
    width: var(--spacing-3xl);
    flex-shrink: 0;
}

.event_card__img-wrap,
.client_card__img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-3xl);
}

.event_card__img-wrap:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.event_card__img-wrap>img,
.client_card__img-wrap img {
    transform: scale(1.01);
    height: 240px;
}

.client_card__tag {
    position: absolute;
    border: 1px solid var(--border-secondary);
    background: var(--bg-secondary);
    z-index: 2;
    bottom: 1.25rem;
    left: 1.25rem;
    border-radius: var(--radius-full);
    align-items: center;
    padding: 3px 12px 3px 12px;
    display: flex;
    color: #414651;
    font-size: var(--text-sm);
    font-weight: 500;
}

.event_card:hover .event_card__img-wrap>img {
    transform: scale(1.1);
}

.event_card__link {
    position: absolute;
    z-index: 3;
    inset: 0;
}

.event_meta {
    position: absolute;
    border: 1px solid var(--border-secondary);
    background: var(--bg-secondary);
    z-index: 2;
    bottom: 1.25rem;
    left: 1.25rem;
    border-radius: var(--radius-full);
    flex-direction: row;
    gap: 0.5em;
    align-items: center;
    padding: 3px 4px 3px 12px;
}

.event_meta__date {
    color: #414651;
    font-size: var(--text-xs);
    font-weight: 500;
    line-height: 1.5;
}

.event_meta__category {
    border: 1px solid var(--border-secondary);
    background: #fff;
    border-radius: var(--radius-full);
    padding: 4px 6px 4px 8px;
    flex-direction: row;
    gap: 4px;
    align-items: center;
    font-size: var(--text-xs);
    font-weight: 500;
    color: #414651;
    line-height: 1;
}

.event_meta__category img {
    flex-shrink: 0;
    width: 1em;
    height: 1em;
}

.cta-simple__sec {
    min-height: 600px;
}

.cta-simple__sec::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    pointer-events: none;
    left: 0;
    top: 0;
    background: linear-gradient(60.99deg, rgba(0, 0, 0, 0.8) 29.84%, rgba(93, 138, 168, 0.8) 124.52%);
}

.cta-horizontal__card {
    border-radius: var(--radius-2xl);
}

.cta-horizontal__card:before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(21.1deg, rgba(0, 0, 0, 0.5) 13.42%, rgba(93, 138, 168, 0.5) 137.17%);
    content: '';
}

.cta-horizontal__card_inner {
    padding: var(--spacing-7xl);
    grid-template-columns: 1fr auto;
    gap: var(--spacing-4xl);
}

.cta-horizontal__sec {
    padding-bottom: var(--spacing-2xl);
}

.social-proof__sec {
    min-height: 600px;
}

.social-proof__title {
    max-width: 870px;
}

.social-proof__slider img {
    height: var(--spacing-7xl);
    width: auto;
    opacity: 0.6;
}

.social-proof__slider,
.text__slider {
    -webkit-mask-image: url('../images/for-css/Gradient-mask.svg');
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    mask-image: url('../images/for-css/Gradient-mask.svg');
    mask-size: 100% auto;
    mask-position: center center;
    pointer-events: none;
}

.text-slide {
    gap: 24px;
    flex-direction: row;
    align-items: center;
}

.text-slide img {
    height: 20px;
    width: 20px;
    object-fit: contain;
}

.text-slider__sec {
    padding-block: 2rem;
}

.home-banner__slide {
    min-height: calc(100svh - var(--header-height));
    padding-block: var(--spacing-9xl);
    border-radius: var(--sec-radius);
}

.home-banner__slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(214.11deg, rgba(22, 76, 99, 0.27) 13.97%, rgba(0, 0, 0, 0.9) 79.81%);
}

.home-banner__slider .splide__pagination,
.image_carousel__slider .splide__pagination,
.product_gallery__slider .splide__pagination {
    padding: 0;
    bottom: 35px;
    width: fit-content;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
}

.image_carousel__slider .splide__pagination button.splide__pagination__page,
.home-banner__slider .splide__pagination button.splide__pagination__page,
.product_gallery__slider .splide__pagination button.splide__pagination__page {
    transform: unset;
    margin: 0;
    width: 2.5rem;
    border-radius: var(--radius-full);
    height: 6px;
    background: var(--border-secondary);
    opacity: 0.5;
}

.image_carousel__slider .splide__pagination button.splide__pagination__page.is-active,
.home-banner__slider .splide__pagination button.splide__pagination__page.is-active {
    opacity: 1;
}

.home-banner__slider h1 strong {
    font-style: italic;
}

/* *************************** Home *************************** */

/* *************************** Service *************************** */

.image_carousel__slider img {
    aspect-ratio: 560/400;
    height: 100%;
}

.service-sec__on-service-page .image_carousel__slider {
    height: 100%;
}

.service-sec__on-service-page .image_carousel__slider .splide__track {
    height: 100%;
}

.image_carousel__slider {
    border-radius: var(--radius-3xl);
    overflow: hidden;
}

.image_carousel__slider .splide__pagination {
    bottom: 26px;
}

.image_carousel__slider .splide__pagination button.splide__pagination__page {
    background: #fff;
}

/* *************************** Service *************************** */

/* *************************** Footer *************************** */

.site_footer {
    padding-top: var(--spacing-7xl);
    padding-bottom: var(--spacing-6xl);
}

.footer_copyright {
    border-top: 1px solid var(--border-secondary);
    padding-top: var(--spacing-4xl);
    color: #717680;
    gap: var(--spacing-4xl);
}

.site_footer a {
    text-decoration: underline;
    text-underline-offset: 0.25em;
    text-decoration-color: transparent;
}

.site_footer a:hover {
    text-decoration-color: currentColor;
    color: var(--heading);
}

.footer-menu {
    gap: var(--spacing-lg);
}

.footer-menu-wrap .footer-menu {
    width: 50%;
}

.site_footer [class*="col-"] {
    gap: var(--spacing-3xl);
}

.site_footer .widget_first {
    gap: var(--spacing-4xl);
}

.footer-title {
    color: #999;
}

.footer-logo img {
    max-width: 150px;
    object-fit: contain;
}

.social-icons a {
    color: #A4A7AE;
}

.social-icons svg {
    height: var(--spacing-3xl);
    width: auto;
}

.social-icons a:hover {
    color: #717680;
}

.site_footer .widget_second ul li {
    width: 100%;
}

.footer-menu-wrap {
    gap: 2rem;
}

/* *************************** Footer *************************** */

/* *************************** Products *************************** */

.list-column-3,
.list-column-2 {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-6xl) var(--spacing-4xl);
    align-items: flex-start;
}

.list-column-2 {
    grid-template-columns: 1fr 1fr;
}

.product_card__img-wrap {
    border: 1px solid var(--border-secondary);
    padding: 26px;
    border-radius: var(--radius-3xl);
    background-color: #fff;
}

.home_related_product .product_card__img-wrap {
    padding: 0;
}

.home_related_product .product_card__img-wrap img {
    object-fit: cover;
}

.product_card__img-wrap img {
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: var(--radius-3xl);
    transform: scale(1.01);
}

.product_card:hover .product_card__img-wrap img {
    transform: scale(1.1);
}

.product_card__desc,
.event_card__desc,
.event_card__title-wrap * {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product_card__info {
    padding-inline: var(--spacing-3xl);
}

.product_card__title-wrap svg {
    width: var(--spacing-3xl);
    height: var(--spacing-3xl);
}

.product_card__link,
.client_card__link {
    position: absolute;
    z-index: 2;
    inset: 0;
}

.product-catalog__info {
    padding-block: var(--spacing-7xl);
}

.product-catalog__info:has(+ .product-catalog__slider),
.product-catalog__card:last-child .product-catalog__slider {
    padding-bottom: 0;
}

.product-catalog__card:not(:first-child) {
    border-top: 1px solid var(--border-secondary);
}

.product-catalog__slider {
    padding-block: var(--spacing-9xl);
    gap: var(--spacing-4xl);
}

.related-product__slider .splide__track,
.product-catalog__slider .splide__track {
    overflow: visible;
}

.related-product__slider::after,
.product-catalog__slider::after {
    content: '';
    background: #fff;
    width: 100vw;
    position: absolute;
    height: 100%;
    right: calc(100% + 1px);
    top: 0;
}

.product-catalog__arrows .splide__arrow {
    position: static;
    transform: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-secondary);
    transition: all .3s ease;
    color: #717680;
    opacity: 1;
}

.product-catalog__arrows .splide__arrows {
    flex-direction: row;
    gap: 1rem;
}

.splide__arrows:has(.splide__arrow[disabled]+.splide__arrow[disabled]) {
    display: none !important;
}

.product-catalog__arrows {
    flex-direction: row;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem;
}

.product-catalog__arrows .splide__arrow svg {
    width: 1.5em;
    height: 1.5em;
    fill: transparent;
}

.product-catalog__arrows .splide__arrow:hover {
    background: var(--bg-secondary);
    color: #535862;
}

body .splide__arrow:disabled {
    opacity: 1;
    pointer-events: none;
    border-color: #F5F5F5 !important;
    color: #D5D7DA;
}

body .splide__arrow:disabled img {
    filter: brightness(0) invert(95%) sepia(8%) saturate(78%) hue-rotate(177deg) brightness(92%) contrast(88%) !important;
}

.related-product__slider {
    gap: var(--spacing-7xl);
}

.related-product__slider .product-catalog__arrows {
    gap: var(--spacing-4xl);
}

/* *************************** Products *************************** */

/* *************************** Top Bar *************************** */

.topbar {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--bs-black);
    background: linear-gradient(68deg, #000 22.18%, #5D8AA8 110.54%);
    color: #fff;
    text-align: center;
    font-size: var(--text-md);
    font-weight: 600;
    min-height: 52px;
    position: relative;
    z-index: 51;
}

.topbar .topbar__slider {
    max-width: 660px;
    margin: auto;
    padding: 0 25px;
}

.topbar .splide__arrow {
    background: transparent;
    opacity: 1;
    width: 14px;
    height: 14px;
}

.topbar .splide__arrow svg {
    fill: #fff;
}

.topbar .splide__arrow--prev {
    left: 0;
}

.topbar .splide__arrow--next {
    right: 0;
}

.topbar .splide__arrow[disabled] {
    opacity: 0.7;
    cursor: no-drop;
}

/* *************************** Top Bar *************************** */

/* *************************** Header *************************** */

.site_header {
    padding-block: 15px;
    z-index: 50;
    position: sticky;
    top: 0;
}

.site_header__inner {
    grid-template-columns: 1fr auto 1fr;
}
.site_header *{
    user-select: none;
    -webkit-user-select: none;
}
.site-logo img {
    height: 50px;
    width: auto;
}

.site-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-menu__main {
    gap: 1.25em;
}

.site_mega__menu.active {
    pointer-events: all;
}

.mega__menu__inner {
    height: 100%;
}

.site-menu__main>li>a:hover,
.menu_dropdown__toggle:hover span,
.nav-link-icon:hover {
    color: #414651;
}

.menu_dropdown__toggle::after {
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23535862' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    content: '';
    display: block;
    transition: var(--base-transition);
}

.menu_dropdown__toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.site_mega__menu {
    position: absolute;
    overflow: hidden;
    top: 100%;
    left: 0%;
    width: 100%;
    pointer-events: none;
}

.brand_menu__row {
    gap: var(--spacing-xl);
    grid-template-columns: 1fr 1fr;
}

.brand_menu__card {
    border-radius: var(--radius-md);
    height: 176px;
}

.brand_menu__card img {
    position: absolute;
    inset: 0;
    transform: scale(1.01);
    height: 100%;
}

.brand_menu__card:hover img {
    transform: scale(1.1);
}

.brand_menu__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #00000066;
}

.menu-products__slider {
    padding-inline: 76px;
}

.menu_product__card {
    background: #fff;
    /* box-shadow: 0 0 0 2px var(--border-secondary) inset; */
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    height: 100%;
}

.menu_product__card>span {
    text-wrap: pretty;
}

.menu_product__card img {
    aspect-ratio: 1/1;
    object-fit: contain;
    /* background: #F5F5F5; */
    border-radius: var(--radius-4xl);
}


.menu_product__card:hover {
    box-shadow: 0 0 0 2px #0A0D12 inset;
}

.menu-products__slider .product-catalog__arrows button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.menu-products__slider .product-catalog__arrows button.splide__arrow--next {
    right: 0;
    left: auto;
}

.nav-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: 600;
    cursor: pointer;
}

.nav-link-icon svg {
    height: 1.25em;
    width: 1.25em;
    transition: var(--base-transition);
}

.search_input {
    position: relative;
}

.search_input input[type="search"]::placeholder {
    opacity: 1;
    color: #717680;
}

.search_input input[type="search"] {
    border: 1px solid var(--border-primary);
    padding: 0.5em 0.75em 0.5em 2.5em;
    box-shadow: 0px 1px 2px 0px #0A0D120D;
    background: #fff;
    border-radius: var(--radius-md);
    color: var(--heading);
    outline: 2px solid transparent;
    transition: var(--base-transition);
}

.search_input input[type="search"]:hover,
.search_input input[type="search"]:focus {
    outline: 2px solid var(--heading);
}

.search_form__wrap {
    margin-top: 36px;
}

.search_form__wrap form.global_form {
    grid-template-columns: 1fr;
}

.search_input img {
    position: absolute;
    width: 1.25em;
    height: 1.25em;
    object-fit: contain;
    left: 0.75em;
    top: 50%;
    transform: translateY(-50%);
}

.modal-content:has(.search_form__wrap) {
    max-width: 320px;
    margin-inline: auto;
    background: transparent;
}

.lang_switch .dropdown-menu {
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: calc(100% + 4px) !important;
    min-width: auto;
    padding: 5px;
    border-color: var(--border-secondary);
    border-radius: var(--radius-md);
    box-shadow: 0px 2px 2px -1px #0A0D120A,
        0px 4px 6px -2px #0A0D1208,
        0px 12px 16px -4px #0A0D1214;
    display: block;
    opacity: 0;
    pointer-events: none;
}

.lang_switch_name,
.mob_lang_switch .lang_switch_short {
    display: none;
}

.mob_lang_switch .lang_switch_name {
    display: block;
}

.lang_switch svg {
    height: 1.25em;
    width: auto;
    transition: var(--base-transition);
}

.lang_switch .cuurrent_lang.show svg {
    transform: rotate(180deg);
}

.lang_switch a.dropdown-item {
    font-weight: 500;
    padding: 0 0.54em;
    border-radius: var(--radius-md);
}

.lang_switch a.dropdown-item:hover {
    background: #F9F9F9;
}

.lang_switch .dropdown-menu.show {
    opacity: 1;
    pointer-events: all;
}

.mob_lang_switch .cuurrent_lang {
    padding: 0.75em 1em;
    justify-content: center;
    box-shadow: rgba(10, 13, 18, 0.18) 0px 0px 0px 1px inset, rgba(10, 13, 18, 0.05) 0px -2px 0px 0px inset, rgba(10, 13, 18, 0.05) 0px 1px 2px 0px;
    border-radius: var(--radius-full);
}

.mob_lang_switch {
    padding: 1.5em 1.25em;
}

.mob_lang_switch .lang_switch .dropdown-menu.show {
    min-width: 150px;
    text-align: center;
}

.mobile_menu__toggle svg {
    height: 2.5em;
    width: auto;
    color: #414651;
}

body.menu_active .toggle_close_icon {
    display: block;
}

.menu_active .toggle_open_icon,
.toggle_close_icon {
    display: none;
}

body.menu_active {
    overflow: hidden;
}

.close_dropdown__toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 0.75em 1em;
    color: var(--heading);
    margin-block: 1.2em;
}

.close_dropdown__toggle::before {
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23535862' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    content: '';
    display: block;
    transition: var(--base-transition);
    transform: rotate(90deg);
}

@media(max-width:1199px) {
    .site-menu {
        width: 100%;
        max-width: 400px;
        height: 100%;
        position: fixed;
        background: #fff;
        left: 0;
        overflow: hidden;
        top: 0;
        padding-top: var(--header-height);
        transition: var(--base-transition);
        transform: translateX(-100%);
    }

    body.menu_active .site-menu {
        transform: translateX(0);
    }

    .mobile_menu__toggle {
        transition: var(--base-transition);
        border-radius: var(--radius-md);
    }

    .mobile_menu__toggle:hover {
        background-color: var(--bg-secondary);
    }

    body .site-menu__main {
        border-bottom: 1px solid var(--border-secondary);
        padding: 1em 1.25em;
        gap: 2px;
    }

    .site-menu__main>li>.nav-link-item {
        width: 100%;
        color: var(--heading);
        padding-block: 0.75em;
    }

    .menu_dropdown__toggle {
        padding-block: 0.75em;
        justify-content: space-between;
        color: var(--heading);
    }

    .menu_dropdown__toggle::after {
        transform: rotate(-90deg);
    }

    .site_mega__menu {
        z-index: 2;
        height: calc(100% - var(--header-height));
        background: #fff;
        bottom: 0;
        top: auto;
        transform: translateX(-100%);
        transition: var(--base-transition);
    }

    .site_mega__menu.active {
        transform: translateX(0);
    }

    .brand_menu__row {
        grid-template-columns: 1fr;
    }

    .brand_menu__card {
        height: 157px;
    }

    .mega_menu__block {
        padding-block: 2.5em;
        border-top: 1px solid var(--border-secondary);
        flex-grow: 1;
        overflow: auto;
    }

    .menu-products__slider {
        visibility: visible;
        padding: 0;
    }

    .menu-products__slider .product-catalog__arrows {
        display: none;
    }

    .menu-products__slider .splide__list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1em;
    }

    .menu_product__card {
        box-shadow: unset !important;
        border: 1px solid var(--border-secondary);
        gap: 0.75em;
    }

    .menu_product__card img {
        aspect-ratio: 139/144;
        background: transparent;
    }
}

@media(max-width:991px) {
    .search__toggle {
        width: 2.5em;
        height: 2.5em;
        color: #414651;
    }

    .search__toggle svg {
        height: 1.5em;
        width: 1.5em;
    }

    .search__toggle {
        transition: var(--base-transition);
        border-radius: var(--radius-md);
    }

    .search__toggle:hover {
        background-color: var(--bg-secondary);
    }
}

@media(max-width:767px) {

    :root {
        --header-height: 72px;
        --only-header: 72px;
    }

    .site-logo img {
        height: 42px;
    }
}

/* *************************** Header *************************** */

/* *************************** Brand *************************** */

.content_section__img img {
    border-radius: var(--radius-3xl);
    aspect-ratio: 576/654;
}

.row.text-lg {
    --bs-gutter-y: 1em !important;
}

.team__wrap {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-6xl) var(--spacing-4xl);
}

.team_card__img img {
    width: 96px;
    border-radius: 50%;
    aspect-ratio: 1/1;
    background: #D5D7DA;
    border: 0.75px solid #00000014;
}

.team_card__social svg {
    width: var(--spacing-2xl);
    height: var(--spacing-2xl);
    transition: var(--base-transition);
    color: #A4A7AE;
}

.team_card__social a:hover svg {
    color: #717680;
}

/* *************************** Brand *************************** */

/* *************************** Error 404 *************************** */

.error__sec img {
    position: absolute;
    z-index: -1;
    width: 100%;
    max-width: 880px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    top: calc(50% - 62px);
}

.error__sec .container {
    min-height: 768px;
}

/* *************************** Error 404 *************************** */

/* *************************** Client *************************** */

.client_card__img-wrap img {
    aspect-ratio: 592/347;
    height: auto;
}

.global_list__filter {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 0.5rem;
}

.global_list__filter a {
    color: #717680;
    padding: 0.625em 0.75em;
    border-radius: var(--spacing-sm);
    font-weight: 600;
}

.global_list__filter a.active {
    background: #0A0D12 !important;
    color: #FFFFFF !important;
}

.global_list__filter a:hover {
    background: var(--bg-secondary);
    color: #414651;
}

/* *************************** Client *************************** */

/* *************************** Contact *************************** */

.location_map iframe {
    vertical-align: top;
}

.contact_detail_sec .detail_row {
    --bs-gutter-x: var(--spacing-4xl);
    --bs-gutter-y: var(--spacing-4xl);
}

.contact_detail_sec .detail_wrap {
    border-radius: var(--radius-3xl);
    border: 1px solid var(--border-secondary);
    min-height: 295px;
}

.contact_detail_sec .detail_wrap a {
    color: var(--bs-black);
    font-weight: 600;
}

.contact_detail_sec .detail_wrap p {
    margin-bottom: var(--spacing-2xl);
}

/* *************************** Contact *************************** */

/* *************************** News Detail Template *************************** */

.events-sec .event_card__desc {
    display: none;
}

.events-sec__dark .event_card__title-wrap,
.events-sec__dark .event_card__title-wrap * {
    color: #fff;
}

.featured_img_wrap .img_wrap img {
    border-radius: var(--radius-3xl);
    aspect-ratio: 1216/640;
    min-height: 250px;
}

.news_single_sec .event_meta {
    padding: 3px 12px 3px 4px;
}

.news_single_sec .event_meta__category {
    padding-block: 4px;
}

.news_single_sec .featured_img_wrap {
    gap: var(--spacing-4xl);
}

.more_info ul {
    gap: var(--spacing-4xl) var(--spacing-6xl);
}

.more_info ul li {
    color: var(--heading);
    font-size: var(--text-lg);
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.more_info ul li span {
    font-size: var(--text-sm);
    color: var(--bs-black);
    font-weight: 600;
}

.news_detail_sec .grid {
    grid-template-columns: 1fr 31.6%;
    gap: var(--spacing-9xl);
}

.our_catalogue {
    border-radius: var(--spacing-xl);
    border: 1px solid var(--border-secondary);
    position: sticky;
    top: var(--header-height);
}

.our_catalogue img {
    min-height: 240px;
    aspect-ratio: 384/240;
}

.our_catalogue .content_wrap {
    gap: var(--spacing-4xl);
    padding: var(--spacing-2xl) var(--spacing-2xl) var(--spacing-3xl);
}

.post__content figure {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    margin: var(--spacing-6xl) 0;
}

.post__content figure .figure-caption {
    font-size: var(--text-sm);
    color: var(--base);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.post__content figcaption svg {
    width: 1.14em;
    height: 1.14em;
    flex-shrink: 0;
    margin-top: 0.2em;
}

.post__content figure img {
    border-radius: var(--radius-3xl);
    aspect-ratio: 720/480;
}

.post__content .btn.btn-primary:last-child {
    margin-top: var(--spacing-6xl);
}

/* *************************** News Detail Template *************************** */

/* *************************** Product Detail Template *************************** */

.product_gallery__slider img {
    min-height: 400px;
    height: 76.51vh;
}

.product_gallery__slide {
    position: relative;
}

.product_gallery__slide::after {
    content: '';
    z-index: 2;
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.product_gallery__slider .splide__pagination button.splide__pagination__page {
    opacity: 1;
}

.product_gallery__slider .splide__pagination button.splide__pagination__page.is-active {
    background: #000;
}

.product_detail__sec {
    padding-top: var(--spacing-7xl);
}

.product_detail__inner {
    grid-template-columns: 1fr 43%;
    gap: var(--spacing-7xl);
}

.breadcrumb {
    --bs-breadcrumb-divider: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M6 12L10 8L6 4' stroke='%23D5D7DA' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    --bs-breadcrumb-item-active-color: #000000;
    row-gap: 0.5rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    margin-top: 0.2em;
    height: 1.14em;
}

.global_accordion {
    gap: var(--spacing-xl);
}

.accordion-item {
    margin-block: var(--spacing-xl);
    position: relative;
    padding-left: var(--spacing-6xl);
}

.accordion-header::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    margin-top: 0.15em;
    width: 1.33em;
    height: 1.33em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 8V16M8 12H16M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z' stroke='%23A4A7AE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.accordion-header.active::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8 12H16M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z' stroke='%23A4A7AE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.accordion-header {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--heading);
    cursor: pointer;
}

.accordion-content__inner {
    padding-top: var(--spacing-md);
    font-size: var(--text-md);
}

.accordion-content__inner>*:first-child {
    margin-top: 0 !important;
}

.accordion-content__inner>*:last-child {
    margin-bottom: 0 !important;
}

.accordion-content__inner a {
    text-decoration: underline;
}

.accordion-content__inner a:hover {
    color: black;
}

.product_detail__info {
    gap: var(--spacing-4xl);
}

.product_color {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: var(--radius-xs);
}

.product_slider {
    gap: 32px;
    grid-template-columns: 58px 1fr;
}

.meta_badge {
    background: var(--bg-secondary);
    border: 1px solid var(--border-secondary);
    font-size: var(--text-xs);
    font-weight: 500;
    color: #414651;
    border-radius: var(--radius-full);
    padding: 0.54em 1em;
    line-height: 1;
}

.product-thumbnail__img-wrap img {
    aspect-ratio: 1/1;
    object-fit: contain;
}

.product-thumbnail__img-wrap {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-secondary);
    overflow: hidden;
    padding: 7px;
    margin-block: auto;
    transition: var(--base-transition);
}

.product_thumbnail_slider .splide__slide {
    border: 0 !important;
    display: flex;
}

.product_thumbnail_slider .splide__slide.is-active .product-thumbnail__img-wrap {
    border-color: var(--base) !important;
}

.product_thumbnail_slider .product-thumbnail__img-wrap:hover {
    border-color: #999;
}

.splide__slide:focus-visible {
    outline: none !important;
}

.product_thumbnail_slider {
    padding-block: 58px;
}

.product_thumbnail_slider .product-catalog__arrows .splide__arrow {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
}

.product_thumbnail_slider .product-catalog__arrows .splide__arrow.splide__arrow--next {
    top: auto;
    bottom: 0;
}

.product-main__img-wrap {
    border-radius: var(--radius-3xl);
    border: 1px solid var(--border-secondary);
    overflow: hidden;
}

.product-main__img-wrap a {
    width: 100%;
    padding: 1.25rem;
}

.product-main__img-wrap img {
    aspect-ratio: 1/1;
    cursor: pointer;
    object-fit: contain;
    max-height: 540px;
}

.info_wrap svg {
    width: 1.14em;
    height: 1.14em;
    margin-top: 0.2em;
    flex-shrink: 0;
}

.product_main_slider_detail .view_btn,
.product_main_slider_detail {
    gap: 29px;
}

/* *************************** Product Detail Template *************************** */

/* *************************** Request Form Popup *************************** */

.request_popup_inner {
    max-width: 627px;
}

.request_popup__header .btn-close {
    right: 26px;
    top: 26px;
}

.modal-dialog .global_form .options-wrapper input[type="checkbox"]+label {
    font-size: var(--text-xs);
}

.global_form .options-wrapper input[type="checkbox"]+label::before {
    border-radius: 4px;
}

.modal-dialog .btn-close {
    right: 1rem;
    top: 1rem;
    padding: 1rem;
    width: 0.75rem;
    height: 0.75rem;
    transition: var(--base-transition);
    border-radius: var(--radius-md);
    box-shadow: unset !important;
}

.modal-dialog .btn-close:hover {
    background-color: var(--bg-secondary);
}

.modal-content {
    box-shadow: 0px 20px 24px -4px rgba(10, 13, 18, 0.08), 0px 8px 8px -4px rgba(10, 13, 18, 0.03), 0px 3px 3px -1.5px rgba(10, 13, 18, 0.04);
}

.modal {
    --bs-modal-margin: 1rem;
}

/* *************************** Request Form Popup *************************** */

/* *************************** 3D View Popup *************************** */

#view_3d_popup .view_popup_inner {
    max-width: 560px;
}

#view_3d_popup .view_popup_inner .view_popup_inner__content {
    border-radius: 12px;
    box-shadow: 0px 20px 24px -4px rgba(10, 13, 18, 0.08), 0px 8px 8px -4px rgba(10, 13, 18, 0.03), 0px 3px 3px -1.5px rgba(10, 13, 18, 0.04);
}

#view_3d_popup .view_popup_inner .view_popup_inner__header {
    padding: 1.5em 1.5rem 0;
}

#view_3d_popup .top_intro .img_wrap {
    width: 3rem;
    height: 3rem;
    padding: 0.6rem;
    border-radius: 0.75rem;
    border: 1px solid #E9EAEB;
    box-shadow: 0px 0px 0px 1px rgba(10, 13, 18, 0.18) inset, 0px -2px 0px 0px rgba(10, 13, 18, 0.05) inset, 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
}

#view_3d_popup .view_popup_inner .product_img_wrap {
    height: 312px;
    padding: 1.7rem;
    background: #e6e6e6;
    border-radius: 8px;
    width: 100%;
}

#view_3d_popup .view_popup_inner .product_img_wrap img {
    height: 100%;
    object-fit: contain;
}

/* *************************** 3D View Popup *************************** */

/* *************************** Responsive *************************** */

@media(max-width:1199px) {
    .news_detail_sec .grid {
        gap: var(--spacing-7xl);
    }

    .product_detail__inner {
        gap: var(--spacing-6xl);
    }
}

@media(max-width:1024px) {
    .list-column-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .product_detail__inner {
        grid-template-columns: 1fr;
    }

    .error__sec .container {
        min-height: 600px;
    }

    .product-catalog__slider .splide__track,
    .related-product__slider .splide__track {
        width: 90%;
    }

    .global_form .form-group label {
        font-size: var(--text-md);
    }

    .global_form {
        grid-template-columns: 1fr;
    }

    .news_detail_sec .grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:991px) {
    .global_banner__content {
        margin-top: 1.25rem;
    }

    .team__wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .content_section__img img {
        aspect-ratio: 343/240;
    }

    .contact_detail_sec .detail_wrap {
        min-height: 200px
    }
}

@media(max-width:767px) {
    .cta-horizontal__card_inner {
        grid-template-columns: 1fr;
        padding: var(--spacing-4xl);
    }

    .related-product__info {
        gap: var(--spacing-4xl);
    }

    .related-product__slider .product-catalog__arrows {
        gap: 0.625rem;
    }

    .product-catalog__arrows {
        padding: 0;
    }

    .service-sec .container,
    .service-sec {
        row-gap: var(--spacing-6xl);
    }

    .list-column-3 {
        grid-template-columns: repeat(1, 1fr);
        gap: var(--spacing-5xl);
    }

    .product-catalog__info {
        gap: var(--spacing-3xl);
        padding-block: var(--spacing-6xl);
    }

    .product-catalog__slider {
        padding-block: var(--spacing-6xl);
    }

    .list-column-2 {
        grid-template-columns: 1fr;
    }

    .footer-menu-wrap .footer-menu {
        width: 100%;
    }
}

@media(max-width:575px) {

    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        --bs-gutter-x: var(--spacing-5xl) !important;
    }

    .modal-dialog .btn-close {
        width: 1rem;
        height: 1rem;
        background-size: contain;
        padding: 0;
        margin: -5px;
    }

    .error__sec .container {
        min-height: 60vh;
    }

    .row {
        --bs-gutter-x: var(--spacing-5xl) !important;
        --bs-gutter-y: var(--spacing-5xl) !important;
    }

    section {
        padding-block: var(--spacing-7xl);
    }

    .global_space {
        gap: var(--spacing-5xl);
    }

    .global_banner_1 {
        min-height: 500px;
    }

    .global_banner_2 {
        min-height: 450px;
    }

    .icon-gray-lg__wrap {
        width: var(--spacing-5xl);
        height: var(--spacing-5xl);
    }

    .icon-gray-lg__wrap svg {
        width: var(--spacing-2xl);
        height: var(--spacing-2xl);
    }

    .cta-simple__sec,
    .social-proof__sec {
        min-height: auto;
    }

    .events.row {
        --bs-gutter-y: var(--spacing-6xl);
    }

    .btn__group {
        width: 100%;
    }

    .btn__group a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .team__wrap {
        gap: var(--spacing-6xl) var(--spacing-2xl);
    }

    .btn-secondary,
    .home-banner__btn .btn-xl,
    .btn-primary,
    .btn-outline-dark {
        width: 100%;
    }

    .social-proof__slider img {
        height: 55px;
    }

    .global_list__filter a {
        font-size: var(--text-sm);
    }

    .team_card__img img {
        width: 86px;
    }

    .product_card__info {
        padding-inline: var(--spacing-xl);
    }

    .product_card__img-wrap img {
        aspect-ratio: 4/3;
    }

    .site_footer .widget_second ul li {
        width: 100%;
    }

    .site_footer .row {
        --bs-gutter-y: var(--spacing-4xl) !important;
    }

    .site_footer .container {
        gap: var(--spacing-4xl) !important;
    }

    .location_map iframe {
        height: 350px;
    }

    .more_info ul li {
        gap: 0.5rem;
    }

    .post__content figure {
        margin: var(--spacing-5xl) 0;
    }

    .accordion-item {
        padding-left: var(--spacing-4xl);
    }

    .accordion-header::before {
        margin: 0;
    }

    .product_slider {
        gap: 16px;
        grid-template-columns: 41px 1fr;
    }

    .product_thumbnail_slider .product-catalog__arrows .splide__arrow {
        width: 2.5rem;
        height: 2.5rem;
    }

    .product_thumbnail_slider {
        padding-block: 50px;
    }

    .product-main__img-wrap a {
        padding: 0;
    }

    .product-main__img-wrap img {
        transform: scale(0.88);
    }

    .product_main_slider_detail .view_btn {
        gap: 1rem;
    }

    .image_carousel__slider .splide__pagination {
        bottom: 16px;
    }
}

/* *************************** Responsive *************************** */