@font-face {
    font-display: swap;
    font-family: 'Instrument Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/instrument-sans-v4-latin-regular.woff2') format('woff2'),
        url('../fonts/instrument-sans-v4-latin-regular.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Instrument Sans';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/instrument-sans-v4-latin-italic.woff2') format('woff2'),
        url('../fonts/instrument-sans-v4-latin-italic.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Instrument Sans';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/instrument-sans-v4-latin-500.woff2') format('woff2'),
        url('../fonts/instrument-sans-v4-latin-500.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Instrument Sans';
    font-style: italic;
    font-weight: 500;
    src: url('../fonts/instrument-sans-v4-latin-500italic.woff2') format('woff2'),
        url('../fonts/instrument-sans-v4-latin-500italic.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Instrument Sans';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/instrument-sans-v4-latin-600.woff2') format('woff2'),
        url('../fonts/instrument-sans-v4-latin-600.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Instrument Sans';
    font-style: italic;
    font-weight: 600;
    src: url('../fonts/instrument-sans-v4-latin-600italic.woff2') format('woff2'),
        url('../fonts/instrument-sans-v4-latin-600italic.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Instrument Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/instrument-sans-v4-latin-700.woff2') format('woff2'),
        url('../fonts/instrument-sans-v4-latin-700.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Instrument Sans';
    font-style: italic;
    font-weight: 700;
    src: url('../fonts/instrument-sans-v4-latin-700italic.woff2') format('woff2'),
        url('../fonts/instrument-sans-v4-latin-700italic.ttf') format('truetype');
}

:root {
    --color-title: #000;
    --color-text: #444;
    --color-text-muted: #767676;

    --color-white-title: #fff;
    --color-white-text: #fff;
    --color-white-text-muted: #fff;

    --color-primary-1: #dc6c3a;
    --color-primary-2: #a3acb4;
    --color-primary-3: #dad5d1;
    --color-primary-4: #888e82;
    --color-primary-5: #ffffff;
    --color-primary-6: #b5b4a9;
    --color-primary-7: #000000;
    --color-primary-8: #998376;

    --color-secondary-1: #e0e1e4;
    --color-secondary-2: #aea495;
    --color-secondary-3: #d8d8d8;
    --color-secondary-4: #d3cabe;
    --color-secondary-5: #e3dfdf;
    --color-secondary-6: #adb8b6;
    --color-secondary-7: #e1dcdb;
    --color-secondary-8: #b6b2a9;
}

body {
    font-family: "Instrument Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    color: var(--color-text);
}

header {
    z-index: 950;
    transition: color .2s ease-in-out;
    color: var(--color-title);
    padding: 10px 0;
}

@media (min-width: 992px) {
    header {
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        padding: 0;
    }

    /* .page-home:not(.header-open) header:not(.js-sticky),
    .page-sector:not(.header-open) header:not(.js-sticky) {
        color: #FFF;
    } */
}

.header-overlay,
.header-navbar {
    transition: background .2s ease-in-out;
}

header.js-sticky:not(.header-open) .header-navbar {
    background-color: rgba(255, 255, 255, 0.9);
}

.header-open .header-overlay {
    background-color: rgba(255, 255, 255, 0.95);
}

body.header-open .header-navbar {
    background-color: transparent;
}

.header-navbar>.container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 950;
}

.header-logo {
    padding-top: 5px;
    padding-bottom: 5px;
    margin-right: 40px;
    color: inherit;
}

.header-logo svg {
    height: 36px;
    width: auto;
}

.header-collapse {
    flex-grow: 1;
    flex-basis: 100%;
    align-items: center;
    display: none;
}

.header-open .header-collapse {
    display: block;
}

.header-open .header-collapse>* {
    animation: mega-nav-entry-animation 0.5s ease-out;
}

@keyframes mega-nav-entry-animation {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0px)
    }
}

.header-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 30px 0 10px 0;
}

.header-menu>li>a {
    color: inherit;
    text-decoration: none;
    padding: 5px 0;
    display: block;
    font-weight: 600;
    font-size: 16px;
}

.header-toggle {
    position: relative;
    padding: 9px 10px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    color: currentColor;
}

.header-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: currentColor;
}

.header-toggle span+span {
    margin-top: 4px;
}

.header-dropdown {
    display: none;
    padding: 20px calc(var(--bs-gutter-x) * .5);
}

.dropdown {
    position: relative;
}

.header-menu .dropdown {
    position: static;
}

.dropdown.active .header-dropdown {
    display: block;
}

.header-mega-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.header-mega-submenu>li>a {
    padding: 4px 0;
    color: inherit;
    display: block;
    text-decoration: none;
    font-weight: 500;
    line-height: 33px;
    font-size: 20px;
    opacity: .6;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.header-mega-submenu>li>a svg {
    opacity: 0;
}

.header-mega-submenu>li.open>a {
    font-weight: 600;
    opacity: 1;
}

.header-mega-submenu>li.open>a svg {
    opacity: 1;
}

.header-mega-submenu>li>ul {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    margin-left: 40px;
    list-style: none;
    transition: all .1s;
}

.header-mega-submenu>li>ul>li>a {
    padding: 4px 0;
    color: inherit;
    display: block;
    text-decoration: none;
    line-height: 33px;
    opacity: .6;
    font-size: 17px;
}

.header-mega-submenu>li>ul>li>a:hover {
    font-weight: 600;
    opacity: 1;
}

.header-overlay {
    visibility: hidden;
    z-index: 949;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.header-open {
    overflow: hidden;
}

.header-open .header-overlay {
    visibility: visible;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: auto;
}

.header-actions-collapse {
    display: grid;
}

.header-btn-icon {
    display: flex;
    border: 0;
    background-color: transparent;
    color: inherit;
    padding: 10px;
    font-size: 20px;
    width: 100%;
    align-items: center;
    gap: 10px;
}

.header-btn-icon span {
    font-size: 16px;
    font-weight: 600;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    background-color: #FFF;
    padding: 8px 0;
    list-style: none;
    margin: 0;
}

.dropdown-menu::before {
    content: "";
    height: 4.5px;
    position: absolute;
    display: block;
    width: 100%;
    left: 0;
    bottom: 100%;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 8px 12px;
    color: var(--color-title);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.dropdown-item.active {
    background: #f7f7f7
}

@media (min-width: 992px) {
    header>.container {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }

    .header-actions-mobile {
        display: none;
    }

    .header-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .header-menu {
        flex-direction: row;
        margin: 0;
    }

    .header-menu>li>a {
        padding: 30px 10px;
    }

    .header-open .header-collapse>* {
        animation: none;
    }

    .header-dropdown {
        position: absolute;
        left: 0;
        width: 100%;
    }

    .header-mega-submenu {
        width: 520px;
        padding-right: 40px;
        border-right: 1px solid rgba(0, 0, 0, 0.15);
    }

    .header-mega-submenu>li.open>ul {
        opacity: 1;
        visibility: visible;
    }

    .header-mega-submenu>li>ul {
        display: block;
    }

    .header-actions-collapse {
        display: flex;
    }

    .header-actions .btn {
        margin-left: 16px;
    }

    .dropdown-menu {
        position: absolute;
        right: 0;
        top: 100%;
        margin-top: 4px;
        border: 1px solid rgb(224, 224, 224);
        min-width: 150px;
        padding: 12px;
    }
}

section {
    padding: 90px 0;
}

hr {
    border-color: #DDD;
    opacity: 1;
}

.text-white {
    --color-title: var(--color-white-title);
    --color-text: var(--color-white-text);
    --color-text-muted: var(--color-white-text-muted);
    color: var(--color-text);
}

.bg-white {
    background-color: #FFF;
}

.bg-dark {
    background-color: #888e82;
}

.bg-dark {
    background-color: #000;
}

.bg-light {
    background-color: #f7f7f7;
}

.bg-white+.bg-white {
    padding-top: 0;
}

.ratio {
    position: relative;
    width: 100%;
}

.ratio::before {
    display: block;
    padding-top: var(--aspect-ratio);
    content: "";
}

.ratio>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ratio-1x1 {
    --aspect-ratio: 100%;
}

.ratio-4x3 {
    --aspect-ratio: 75%;
}

.ratio-16x9 {
    --aspect-ratio: 56.25%;
}

.ratio-5x7 {
    --aspect-ratio: 140%;
}

.img-contain {
    object-fit: contain;
}

.img-cover {
    object-fit: cover;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-full {
    width: 100%;
    height: auto;
}

.carousel-visible {
    overflow: hidden;
}

.carousel-visible .swiper {
    overflow: visible;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.heading-space {
    margin-bottom: 50px;
}

.heading-left {
    text-align: left;
}

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

.heading-right {
    text-align: right;
}

.text-left .heading-alt,
.heading-left .heading-alt {
    justify-content: start;
}

.text-center .heading-alt,
.heading-center .heading-alt {
    justify-content: center;
}

.text-right .heading-alt,
.heading-right .heading-alt {
    justify-content: end;
}

.heading-alt {
    display: flex;
    align-items: end;
    gap: 8px;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 16px;
}

.heading-alt a {
    color: inherit;
    text-decoration: none;
}

.heading-alt-image svg,
.heading-alt-image img {
    height: 20px;
    width: auto;
}

.heading-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.1;
    color: var(--color-title);
    margin-bottom: 24px;
}

.heading-title-lg {
    font-size: 40px;
}

.heading-title-sm {
    font-size: 28px;
}

.heading>*:last-child {
    margin-bottom: 0 !important;
}

.heading .heading-title {
    margin-bottom: 0;
}

.heading .heading-text {
    margin-bottom: 0;
}

.heading .heading-title+p {
    margin-bottom: 0;
    margin-top: 24px;
}

.heading-center p:not(.heading-title):not(.heading-alt) {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero {
    position: relative;
    padding: 60px 0;
    z-index: 0;
    display: flex;
    flex-flow: column;
    justify-content: end;
    background-color: #e3dfdf;
}

.slider .swiper-slide img {
    width: 100%;
    height: auto;
}

.slider-desktop {
    display: none;
}

@media (min-width: 992px) {
    .is-hero {
        margin-top: -84px;
    }

    .hero {
        padding-top: 144px;
        margin-top: -84px;
    }

    .slider-mobile {
        display: none;
    }

    .slider-desktop {
        display: block;
    }
}

.hero-image,
.hero-video {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.hero:not(.hero-home) .hero-image {
    opacity: .2;
}

.hero-image img,
.hero-video img,
.hero-video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
}

.hero-video .hero-poster {
    z-index: -1;
}

.hero-video video {
    opacity: 0;
}

.hero-video video.is-visible {
    opacity: 1;
}

.hero-pattern:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 84px, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

footer {
    background-color: #dc6c3a;
    color: #000;
}

.footer-primary {
    padding: 100px 0;
}

.footer-primary a {
    color: inherit;
    text-decoration: none;
}

.footer-title {
    font-weight: 600;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav a {
    display: block;
    padding: 4px 0;
}

.footer-bottom {
    padding: 0 0 40px;
    font-size: 11px;
    opacity: .8;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
}

.footer-copyright {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-logo svg {
    height: 24px;
    width: auto;
}

.footer-slogan-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.footer-slogan-text {
    margin-bottom: 0;
}

.footer-social {
    display: flex;
    margin-top: 30px;
    gap: 24px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.bi {
    display: inline-block;
    vertical-align: -.125em;
    fill: currentcolor;
    width: 1em;
    height: 1em;
}

.h-100 {
    height: 100%;
}

.product-item {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-item-image {
    display: block;
    position: relative;
}

.product-item-image .product-item-image-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .15s ease-in-out;
}

.product-item-image:hover .product-item-image-cover {
    opacity: 1;
}

.product-item-body {
    text-align: center;
    padding-top: 16px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.product-item-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-title);
    margin-bottom: 16px;
}

.product-item-title a {
    color: inherit;
    text-decoration: none;
}

.product-item-colors {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
}

.product-item-color {
    width: 20px;
    height: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.31);
}

.product-item-color img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
}

.form-label {
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    display: block;
    width: 100%;
    padding: 8px 15px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #FFF;
    background-clip: padding-box;
    border: 1px solid #000;
    border-radius: 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    color: #212529;
    background-color: #FFF;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.25);
}

textarea.form-control {
    min-height: 38px;
}

.form-check {
    display: block;
    min-height: 24px;
    padding-left: 24px;
}

.form-check .form-check-input {
    float: left;
    margin-left: -24px;
}

.form-check-input {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 4px;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #FFF;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid #000;
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}

.form-check-input[type=radio] {
    border-radius: 50%;
}

.form-check-input:checked {
    background-color: #dc6c3a;
    border-color: #dc6c3a;
}

.form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-control.is-invalid {
    border-color: var(--bs-form-invalid-border-color);
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid:focus {
    border-color: var(--bs-form-invalid-border-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

textarea.form-control.is-invalid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.form-select.is-invalid {
    border-color: var(--bs-form-invalid-border-color);
}

.form-select.is-invalid:focus {
    border-color: var(--bs-form-invalid-border-color);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.form-check-input.is-invalid {
    border-color: var(--bs-form-invalid-border-color);
}

.form-check-input.is-invalid:checked {
    background-color: var(--bs-form-invalid-color);
}

.form-check-input.is-invalid:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

.form-check-input.is-invalid~.form-check-label {
    color: var(--bs-form-invalid-color);
}


.newsletter-body {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    --btn-bg: #FFF;
    --btn-color: #000;
    display: inline-block;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid var(--btn-bg);
    border-radius: 0;
    background-color: var(--btn-bg);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-primary {
    --btn-bg: #dc6c3a;
    --btn-color: #000;
}

.btn-white {
    --btn-bg: #FFF;
    --btn-color: #000;
}

.btn-dark {
    --btn-bg: #000;
    --btn-color: #FFF;
}

.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading:after {
    content: "";
    display: inline-block;
    vertical-align: text-bottom;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 100px;
    color: var(--btn-color);
    position: absolute;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px;
    left: 50%;
    top: 50%;
    animation: spinner-border .75s linear infinite;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

.btn-block {
    width: 100%;
}

.product-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-nav li {
    border-bottom: 1px solid #DDD;
}

.product-nav li button,
.product-nav li a {
    color: var(--color-title);
    text-decoration: none;
    background: transparent;
    border: 0;
    padding: 12px 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

.product-nav button:focus {
    outline: 0;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-specs li {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #DDD;
}

.product-specs-title {
    font-weight: 600;
    color: var(--color-title);
    font-size: 16px;
}

.product-specs-value {
    font-weight: 600;
}

.post-image {
    margin-bottom: 30px;
    height: 600px;
    margin-top: 30px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blocks {
    font-size: 14px;
}

.blocks h1,
.blocks h2,
.blocks h3,
.blocks h4,
.blocks h5 {
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--color-title);
}

.blocks *+h1,
.blocks *+h2,
.blocks *+h3,
.blocks *+h4,
.blocks *+h5 {
    margin-top: 40px;
}

.blocks h2 {
    font-size: 18px;
}

.blocks h3 {
    font-size: 16px;
}

.blocks a {
    color: inherit;
}

.blocks img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.blocks hr {
    margin: 40px 0;
}

.logo {
    padding: 10% 25%;
    border: 1px solid #DDD;
    background-color: #FFF;
}

.logo-carousel {
    --swiper-wrapper-transition-timing-function: linear;
}

.logo img {
    filter: grayscale(1);
    opacity: .8;
}

.filters-header {
    display: none;
}

@media (max-width: 991.98px) {
    .filters {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1045;
        background: transparent;
        display: block;
        outline: 0;
        overflow-x: hidden;
        overflow-y: auto;
        visibility: hidden;
    }

    .filters:before {
        content: '';
        background: rgba(0, 0, 0, 0.4);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .filters.active {
        opacity: 1;
        visibility: visible;
    }

    .filters.active:before {
        opacity: 1;
    }

    .filters-dialog {
        position: relative;
        width: auto;
        pointer-events: none;
        opacity: 0;
        transition: all 0.3s ease;
        max-width: 544px;
        transform: translateX(100%);
        height: 100%;
        margin-left: auto;
    }

    .filters.active .filters-dialog {
        transform: translate(0);
        opacity: 1;
    }

    .filters-content {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        pointer-events: auto;
        background-color: #FFF;
        background-clip: padding-box;
        outline: 0;
        height: 100%;
        overflow: hidden;
    }

    .filters-header {
        display: flex;
        flex-shrink: 0;
        align-items: center;
        padding: 25px;
    }

    .filters-body {
        overflow-y: auto;
        position: relative;
        flex: 1 1 auto;
        padding: 25px;
        padding-top: 10px;
    }
}

.filter+.filter {
    border-top: 1px solid #dfdfdf;
}

.filter-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.1;
    color: var(--color-title);
    padding: 20px 0;
}

.filter-body {
    padding-bottom: 20px;
}

.filter-body .form-check {
    padding: 0;
    position: relative;
}

.filter-body .form-check label {
    padding: 6px 0;
    padding-right: 20px;
    display: block;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
}

.filter-body .form-check .form-check-input {
    position: absolute;
    margin: 0;
    right: 0;
    top: 9px;
}

.product-carousel {
    border: 1px solid #0000001a;
    overflow: hidden;
}

.product-carousel .carousel-button {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    left: 20px;
    z-index: 1;
}

.product-carousel .carousel-button-next {
    right: 20px;
    left: auto;
}

.carousel-button-group {
    display: flex;
    gap: 8px;
}

.carousel-button-group .carousel-button {
    opacity: 1;
    border: 1px solid rgb(224, 224, 224);
}

.carousel-button {
    background-color: #FFF;
    background: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-title);
    transition: all .2s;
}

.carousel-button.swiper-button-disabled {
    opacity: 0.2;
}

.product-carousel-thumbs {
    margin-top: 16px;
}

.product-carousel-thumbs .swiper-slide {
    border: 1px solid #0000001a;
    overflow: hidden;
}

.product-carousel-thumbs .swiper-slide.swiper-slide-thumb-active {
    border-color: #000;
}

.variants {
    margin-top: 30px;
    margin-bottom: 30px;
}

.variant+.variant {
    margin-top: 16px;
}

.variant-body {
    display: flex;
    align-items: center;
    gap: 8px;
}

.variant-header {
    margin-bottom: 8px;
}

.variant-title {
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    color: var(--color-title);
}

.variant-value {
    font-size: 12px;
    display: inline-block;
    margin-left: 8px;
    color: var(--color-text-muted);
}

.variant-item {
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    border: 1px solid #DDD;
}

.variant-item.variant-active {
    border-color: #3b3838;
}

.variant-item.variant-disable {
    opacity: .2;
}

.variant-color img {
    width: 30px;
    height: 30px;
}

.variant-color span {
    display: none;
}

.variant-select {
    padding: 5px 10px;
}

.variant-reference {
    display: flex;
    text-transform: uppercase;
    margin-top: 16px;
    font-size: 14px;
    gap: 8px;
}

.variant-reference-title {
    color: var(--color-text-muted);
}

.variant-reference-value {
    font-weight: 500;
}


.product-sticky {
    position: sticky;
    top: 120px;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-title);
    font-weight: 600;
    text-decoration: none;

}

.section-newsletter {
    padding-top: 50px;
    padding-bottom: 50px;
}

.newsletter-icon {
    font-size: 45px;
    line-height: 1;
    margin-bottom: 16px;
    color: var(--color-primary-1);
}

.newsletter-subtitle {
    color: var(--color-title);
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-subtitle-icon {
    color: var(--color-primary-1);
    font-size: 24px;
}

.offcanvas,
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1045;
    background: transparent;
    display: block;
    outline: 0;
    overflow-x: hidden;
    overflow-y: auto;
    visibility: hidden;
}

.modal:before,
.offcanvas:before {
    content: '';
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active:before,
.offcanvas.active:before {
    opacity: 1;
}

.modal.active,
.offcanvas.active {
    opacity: 1;
    visibility: visible;
}

.modal.active .modal-dialog,
.offcanvas.active .offcanvas-dialog {
    transform: translate(0);
    opacity: 1;
}

.modal-content,
.offcanvas-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #FFF;
    background-clip: padding-box;
    outline: 0;
}

.modal-header,
.offcanvas-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    padding: 25px;
}

.modal-body,
.offcanvas-body {
    position: relative;
    flex: 1 1 auto;
    padding: 25px;
    padding-top: 10px;
}

.modal-footer,
.offcanvas-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0 25px 25px 25px;
}


.offcanvas-title,
.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    color: var(--color-title);
    font-weight: 600;
    font-size: 20px;
}

.offcanvas-dialog,
.modal-dialog {
    position: relative;
    width: auto;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.offcanvas-dialog {
    max-width: 544px;
    transform: translateX(100%);
    height: 100%;
    margin-left: auto;
}

.offcanvas-content {
    height: 100%;
    overflow: hidden;
}

.offcanvas-body {
    overflow-y: auto;
}

.modal-dialog {
    transform: translateY(-30px);
}


.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 28px * 2);
}

.modal-dialog {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .modal-dialog {
        margin-top: 28px;
        margin-bottom: 28px;
    }
}

.btn-close {
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 29px;
    margin-left: auto;
    line-height: 1;
}

.accordion {
    border-bottom: 1px solid #DDD;
    text-align: left;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 0;
    font-size: 15px;
    text-align: left;
    background-color: transparent;
    border: 0;
    font-weight: 500;
    color: var(--color-title);
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23052c65' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-left: auto;
    content: '';
    background-repeat: no-repeat;
    background-size: 16px;
    transition: .4s ease-out;
}

.accordion.open .accordion-button:after {
    transform: rotate(-180deg);
}

.accordion-body {
    font-size: 14px;
    padding: 0 0 8px 0;
}

.accordion-collapse {
    display: none;
}

.accordion.open .accordion-collapse {
    display: block;
    animation: accordion-v2-entry-animation 0.4s ease-out;
}

@keyframes accordion-v2-entry-animation {
    from {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0px)
    }
}

.faq-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: sticky;
    top: 120px;
}

.faq-menu a {
    color: inherit;
    display: block;
    padding: 6px 0;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
}

.faq {
    scroll-margin-top: 120px;
}

.faq+.faq {
    margin-top: 42px;
}

.faq-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-title);
    margin-bottom: 24px;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-box {
    background-color: #FFF;
    padding: 48px;
    border: 1px solid #c7c7bf;
}

.card-box-accent {
    background-color: #000;
    border: 0;
}

.card.h-100 .card-body {
    flex: 1;
}

.card-icon {
    font-size: 30px;
    line-height: 1;
    color: #dc6c3a;
}

.card-image {
    background-color: #DDD;
}

.card-body {
    display: flex;
    flex-direction: column;
}

.card-body>*:last-child {
    margin-bottom: 0;
}

.card-title {
    font-weight: 600;
    font-size: 18px;
    color: var(--color-title);
    margin-bottom: 8px;
}

.card-title-icon {
    display: flex;
    gap: 32px;
    align-items: end;
}

.card-title-icon .bi {
    font-size: 28px;
}

.card-title a {
    color: inherit;
    text-decoration: none;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.text-white .card-tags span {
    color: #FFF;
    background-color: rgba(255, 255, 255, 0.1);
}

.card-tags span {
    padding: 5px 12px;
    display: block;
    text-transform: uppercase;
    font-size: 11px;
    background-color: rgb(234, 232, 230);
    color: var(--color-title);
}

[data-text]:after {
    content: attr(data-text);
}


.explore {
    position: relative;
    z-index: 0;
}

.explore-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.explore-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.explore-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

.explore-body {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-height: 400px;
}

.explore-title {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 600;
}

.bg-video {
    min-height: 400px;
    background-image: url('../img/newsletter.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.bg-video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
}

@media (min-width: 992px) {

    .bg-video {
        min-height: 600px;
    }
}

.contact-title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.634);
}

.contact-emails {
    padding-left: 30px;
    border-left: 3px solid #dc6c3a;
    margin-bottom: 40px;
}

.contact-email-label {
    margin-bottom: 0;
}

.contact-email-value {
    font-size: 24px;
    font-weight: 600;
}

.contact-office {
    padding: 30px;
    background-color: #f7f7f7;
}

.contact-office+.contact-office {
    margin-top: 16px;
}

.contact-office-title {
    font-weight: 600;
}

.contact-office-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-office-info div {
    display: flex;
    align-items: center;
}

.contact-office-info div svg {
    flex-shrink: 0;
    font-size: 16px;
    margin-right: 20px;
    color: #dc6c3a;
}

.contact-office-info div span {
    flex-grow: 1;
}

.feature-icon .bi {
    color: var(--color-primary-1);
    font-size: 24px;
    line-height: 1;
}

.feature-icon {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--color-title);
}

.box {
    padding: 35px;
    border: 1px solid var(--box-border);
    background-color: var(--box-bg);
    height: 100%;
}

.box-icon {
    font-size: 30px;
    line-height: 1;
    color: var(--box-icon);
}

.box-title {
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 0;
    color: var(--box-title);
}

.box-text {
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: -0.3px;
    font-size: 14px;
    font-weight: 500;
    color: var(--box-text);
}

.box-white {
    --box-border: rgba(220, 109, 58, 0.48);
    --box-bg: #FFF;
    --box-icon: var(--color-primary-1);
    --box-title: var(--color-title);
    --box-text: var(--color-text);
}

.box-dark {
    --box-border: var(--color-title);
    --box-bg: var(--color-title);
    --box-icon: #FFF;
    --box-title: #FFF;
    --box-text: rgba(255, 255, 255, 0.8);
}

.box-primary {
    --box-border: var(--color-primary-1);
    --box-bg: var(--color-primary-1);
    --box-icon: #FFF;
    --box-title: #FFF;
    --box-text: rgba(255, 255, 255, 0.8);
}


/* */


.sector-category {
    position: relative;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.sector-category:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

.sector-category-image {
    background: #CCC;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.sector-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sector-category-body {
    padding: 30px;
    z-index: 0;
    z-index: 2;
}

.sector-category-title {
    font-weight: 600;
    font-size: 18px;
    color: #FFF;
    margin-bottom: 8px;
}

.sector-category-title a {
    color: inherit;
    text-decoration: none;
}

.sector-category-text {
    color: #FFF;
    max-width: 600px;
    margin-bottom: 0;
}

.sector-category-text *:last-child {
    margin-bottom: 0;
}

.sector-category-text li p {
    margin-bottom: 0;
}

.carousel-cards .swiper-slide {
    height: auto;
}

.category-text {
    margin-top: 100px;
    margin-bottom: 100px;
    border-top: 1px solid rgb(233, 233, 233);
    border-bottom: 1px solid rgb(233, 233, 233);
    padding-top: 24px;
    padding-bottom: 24px;
}

.category-text h2 {
    font-size: 16px;
}

.category-text h3 {
    font-size: 14px;
}

.category-text summary {
    letter-spacing: -0.14px;
    font-size: 14px;
    list-style-type: none;
    text-decoration-line: underline;
}

.category-text details[open] summary {
    display: none;
}

.category-text strong,
.category-text b {
    font-weight: 500;
}

.category-text .blocks p,
.category-text .blocks ul,
.category-text .blocks ol,
.category-text .blocks h1,
.category-text .blocks h2,
.category-text .blocks h3,
.category-text .blocks h4,
.category-text .blocks h5 {
    margin-bottom: 8px;
}

.category-text .blocks *+h1,
.category-text .blocks *+h2,
.category-text .blocks *+h3,
.category-text .blocks *+h4,
.category-text .blocks *+h5 {
    margin-top: 20px;
}


.alert {
    position: relative;
    padding: 16px;
    margin-bottom: 16px;
    color: #212529;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0;
}

.alert-success {
    border-color: rgb(163, 207, 187);
    background-color: rgb(209, 231, 221);
    color: rgb(10, 54, 34);
}

.alert-danger {
    border-color: rgb(241, 174, 181);
    background-color: rgb(248, 215, 218);
    color: rgb(88, 21, 28);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-item {
    display: flex;
}

.step-number {
    flex-shrink: 0;
    color: var(--color-primary-1);
    font-size: 30px;
    line-height: 1;
    margin-right: 20px;
    width: 40px;
}

.step-body {
    flex-grow: 1;
}

.step-title {
    color: var(--color-title);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 18px;
}

.step-text {
    margin-bottom: 0;
}

.steps-horizontal {
    flex-direction: row;
    position: relative;
    z-index: 0;
}

.steps-horizontal:before {
    content: '';
    position: absolute;
    top: 30px;
    width: 100%;
    height: 2px;
    background-color: #DDD;
    z-index: -1;
}

.text-left .steps-horizontal .steps-item {
    text-align: left;
    align-items: start;
}

.text-right .steps-horizontal .step-item {
    text-align: right;
    align-items: end;
}

.text-center .steps-horizontal .step-item {
    text-align: center;
    align-items: center;
}

.steps-horizontal .step-item {
    flex-direction: column;
    gap: 16px;
}

.steps-horizontal .step-number {
    font-weight: 600;
    width: 60px;
    height: 60px;
    border: 2px solid var(--color-primary-1);
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 0;
    background-color: #FFF;
}

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

.layout-item+.layout-item {
    margin-top: 26px;
}

.cta {
    background-color: #fbf0eb;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-icon {
    flex-shrink: 0;
    font-size: 40px;
    color: var(--color-primary-1);
    padding-right: 30px;
}

.cta-body {
    flex-grow: 1;
}

.cta-title {
    font-weight: 600;
    font-size: 22px;
    color: var(--color-title);
}

.cta-text {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .cta {
        flex-direction: row;
        padding: 40px;
    }
}

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