@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Text:ital@0;1&family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    /* FONTS */
    --font-primary: "Figtree";
    --font-secondary: "DM Serif Text";
    --font-tertiary: "DM Sans";

    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-light: 300;
    --font-weight-book: "Book";
    --font-weight-italic: "Italic";
    --font-weight-bold-italic: "Bold Italic";
    --font-weight-semibold-italic: "Semibold Italic";
    --font-weight-medium-italic: "Medium Italic";
    --font-weight-light-italic: "Light Italic";

    --desktop-h1-font-family: var(--font-primary);
    --desktop-h1-weight: var(--font-weight-semibold);
    --desktop-h1-size: 64px;
    --desktop-h1-line-height: 72px;
    --desktop-h2-font-family: var(--font-primary);
    --desktop-h2-weight: var(--font-weight-semibold);
    --desktop-h2-size: 48px;
    --desktop-h2-line-height: 60px;
    --desktop-h3-font-family: var(--font-secondary);
    --desktop-h3-weight: var(--font-weight-regular);
    --desktop-h3-size: 32px;
    --desktop-h3-line-height: 40px;
    --desktop-h4-font-family: var(--font-secondary);
    --desktop-h4-weight: var(--font-weight-semibold);
    --desktop-h4-size: 22px;
    --desktop-h4-line-height: 28px;
    --desktop-h5-font-family: var(--font-tertiary);
    --desktop-h5-weight: var(--font-weight-bold);
    --desktop-h5-size: 18px;
    --desktop-h5-line-height: 24px;
    --desktop-h6-font-family: var(--font-tertiary);
    --desktop-h6-weight: var(--font-weight-semibold);
    --desktop-h6-size: 16px;
    --desktop-h6-line-height: 20px;

    --mobile-h1-font-family: var(--font-primary);
    --mobile-h1-line-height: 60px;
    --mobile-h1-size: 48px;
    --mobile-h1-weight: var(--font-weight-semibold);
    --mobile-h2-size: 32px;
    --mobile-h2-line-height: 40px;
    --mobile-h2-weight: var(--font-weight-semibold);
    --mobile-h2-font-family: var(--font-primary);
    --mobile-h3-weight: var(--font-weight-regular);
    --mobile-h3-line-height: 30px;
    --mobile-h3-size: 24px;
    --mobile-h4-font-family: var(--font-secondary);
    --mobile-h4-weight: var(--font-weight-semibold);
    --mobile-h4-size: 20px;
    --mobile-h4-line-height: 25px;
    --mobile-h5-size: 18px;
    --mobile-h5-line-height: 20px;
    --mobile-h5-weight: var(--font-weight-bold);
    --mobile-h5-font-family: var(--font-tertiary);
    --mobile-h6-size: 16px;
    --mobile-h6-line-height: 20px;
    --mobile-h6-weight: var(--font-weight-semibold);
    --mobile-h6-font-family: var(--font-tertiary);
    --mobile-h3-font-family: var(--font-secondary);


    --paragraph-font-family: var(--font-tertiary);
    --paragraph-weight: var(--font-weight-regular);
    --paragraph-size: 16px;
    --paragraph-line-height: 24px;
    --paragraph-small-font-family: var(--font-tertiary);
    --paragraph-small-weight: var(--font-weight-regular);
    --paragraph-small-size: 14px;
    --paragraph-small-line-height: 21px;

    --button-font-family: var(--font-tertiary);
    --button-weight: var(--font-weight-semibold);
    --button-size: var(--paragraph-size);
    --button-line-height: var(--paragraph-line-height);
    --input-font-family: var(--font-tertiary);
    --input-weight: var(--font-weight-semibold);
    --input-size: var(--paragraph-size);
    --input-line-height: var(--paragraph-line-height);
    --link-font-family: var(--font-tertiary);
    --link-weight: var(--font-weight-regular);
    --link-size: var(--paragraph-size);
    --link-line-height: var(--paragraph-line-height);
    --navbar-nav-link-padding-x: 12px !important;




    /* BRAND COLORS */
    --main-brand: #030303;
    --accents-1: #f16014;
    --accents-2: #180a57;
    --accents-3: #f6f5fa;
    --neutrals-white: #ffffff;
    --neutrals-light-grey: #f2f2f2;
    --neutrals-medium-grey: #d9d9d9;
    --neutrals-dark-grey: #989898;
    --neutrals-black: #000000;
    --ui-positive: #009681;
    --ui-negative: #d13346;
    --ui-warning: #e7aa35;

    /* FILE DATA */
    --border-radius-interactives: 8px;
    --border-radius-cards: 16px;
    --desktop-side-padding: 88px;
    --mobile-side-padding: 24px;
}


body {
    font-family: var(--paragraph-font-family);
    font-size: var(--paragraph-size);
    line-height: var(--paragraph-line-height);
    color: var(--neutrals-black);
}

h1 {
    font-size: var(--desktop-h1-size);
    line-height: var(--desktop-h1-line-height);
    font-weight: var(--desktop-h1-weight);
    margin-bottom: 2rem;
    font-family: var(--desktop-h1-font-family);
}

h2 {
    font-size: var(--desktop-h2-size);
    line-height: var(--desktop-h2-line-height);
    font-family: var(--desktop-h2-font-family);
    font-weight: var(--desktop-h2-weight);
    margin-bottom: 1rem;
}

h3 {
    font-family: var(--desktop-h3-font-family);
    font-size: var(--desktop-h3-size);
    font-weight: var(--font-weight-regular);
    line-height: var(--desktop-h3-line-height);
}

h4 {
    font-family: var(--desktop-h4-font-family);
    font-size: var(--desktop-h4-size);
    line-height: var(--desktop-h4-line-height);
    font-weight: var(--font-weight-regular);
}

h5 {
    font-family: var(--desktop-h5-font-family);
    font-size: var(--desktop-h5-size);
    line-height: var(--desktop-h5-line-height);
    font-weight: var(--desktop-h5-weight);
}

h6 {
    font-family: var(--desktop-h5-font-family);
    font-size: var(--desktop-h5-size);
    line-height: var(--desktop-h5-line-height);
    font-weight: var(--desktop-h5-weight);
}

.navbar-nav .nav-link {
    font-size: var(--button-size);
    font-family: var(--button-font-family);
    line-height: var(--button-line-height);
    color: var(--neutrals-white);
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
    transition: all 0.3s ease-in-out;
/*    text-transform: uppercase;*/
    font-weight: var(--button-weight);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bg-white .navbar-nav .nav-link,
.bg-white .header-links-c a {
    color: var(--neutrals-black);
}

.navbar-nav .nav-link:hover {
    color: var(--accents-1);
}

.bg-white .header-divider {
    background-color: var(--neutrals-black);
}

.navbar-nav .nav-link.active {
    color: var(--accents-1);
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
}

nav a.navbar-brand {
    font-size: var(--desktop-h2-line-height);
    line-height: var(--logo-line-height);
    font-family: var(--font-primary);
    font-weight: var(--font-weight-semibold);
}

#language_dropdown {
    /* order: 2; */
     min-width: 45px;
    width: 45px;
    height: 45px;
    background-color: var(--neutrals-light-grey);
    border-radius: var(--border-radius-cards);
    font-family: var(--link-font-family);
    font-size: var(--link-size);
    font-weight: 600;
    line-height: var(--link-line-height);
    color: var(--neutrals-dark-grey);
    display: block;
    cursor: pointer;
    text-transform: uppercase;
}

#language_dropdown .dropdown-menu {
    min-width: auto;
    width: 100%;

    margin-top: 0.6rem !important;
    border: 1px solid #E3E4E3;
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 0;
    margin: 0;
    border: unset;
    background: #f2f2f2;
    border-radius: var(--border-radius-cards);
}

#language_dropdown #languageSwitcher {
    font-weight: var(--font-weight-semi-bold);
     min-width: 45px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#language_dropdown .dropdown-item {
    padding: 4px 6px;
    min-width: 100%;
}

#language_dropdown .dropdown-toggle::after {
    display: none;
    content: url(../images/arrow-bottom.svg);
    border: unset;
    vertical-align: 0.1rem;
    font-size: 0.5rem;
    margin-left: 0.5rem;
}

.navbar-toggler,
.soc-btn {
    border: unset;
    box-shadow: 0px 4px 10px 0px #00000014;
    border-radius: 100%;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-brand);
}

.btn, .woocommerce-cart .wc-block-components-button__text, .wp-block-woocommerce-checkout .wc-block-components-checkout-place-order-button {
    background-color: var(--accents-1);
    border: 2px solid var(--accents-1);
    color: var(--neutrals-black);
    font-weight: var(--button-weight);
    padding: 11px 22px;
    transition: all 0.3s ease-in-out;
    font-size: var(--button-size);
    line-height: var(--button-line-height);
    font-family: var(--button-font-family);
    /*text-transform: capitalize;*/
    border-radius: var(--border-radius-interactives);
}

.btn:hover {
    background-color: var(--accents-1);
    color: var(--neutrals-black);
    border: 2px solid var(--accents-1);
    opacity: 1;
}

.btn-blue{
    background-color: var(--accents-2);
    border-color: var(--accents-2);
    color: var(--neutrals-white);
}
.btn-blue:hover{
    background-color: var(--accents-2);
    border-color: var(--accents-2);
    color: var(--neutrals-white);
}

.btn-outline {
    background-color: unset;
    color: var(--neutrals-white);
    border: 2px solid var(--neutrals-white);
}

.btn-outline:hover {
    background: unset;
    color: var(--neutrals-white);
    border: 2px solid var(--neutrals-white);
}

.btn-white {
    border-color: var(--accents-3);
    background-color: var(--accents-3);
    color: var(--neutrals-black)
}

.btn-white:hover {
    background-color: var(--accents-1);

    color: var(--neutrals-black);
    border-color: var(--accents-1);
}

.btn-outline-white {
    box-shadow: 0px 4px 10px 0px #00000014;
    color: var(--neutrals-white);
    border: 3px solid var(--neutrals-white);
    background-color: unset;
}

.btn-outline-white:hover {
    background-color: unset;
    border: 3px solid var(--neutrals-black);
    color: var(--neutrals-black);
}

.btn-product {
    background: unset;
    color: var(--main-brand);
    padding: 0;
    line-height: var(--link-line-height);
    font-size: var(--link-size);
    font-family: var(--link-font-family);
    font-weight: var(--link-weight);
    border: unset;
}

.btn-product:hover {
    background: unset;
    color: var(--main-brand);
}

.bg-brand {
    background-color: var(--main-brand);
    color: var(--neutrals-white);
}

.text-brand {
    color: var(--main-brand);
}

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

.text-accent-3 {
    color: var(--accents-3);
}

.bg-light-grey {
    background-color: var(--neutrals-lightgrey);
}

.br-intr {
    border-radius: var(--borderradius-interactives);
}

.br-cards {
    border-radius: var(--border-radius-cards);
}

.br-cards-top {
    border-top-left-radius: var(--borderradius-cards);
    border-top-right-radius: var(--borderradius-cards);
}

.mh-376 {
    max-height: 376px;
    width: 100%;
    object-fit: cover;
}

.mh-480 {
    max-height: 480px;
    object-fit: cover;
}

.mh-653 {
    max-height: 653px;
    object-fit: cover;
}

.min-h-480 {
    min-height: 460px;
    background-size: cover;
    background-position: center;
}

.icon-square {
    width: 48px;
    height: 48px;
    flex: none;
}

.icon-square-big {
    width: 64px;
    min-width: 64px;
    height: 64px;
    flex: none;
}

.border-custom {
    border: 1px solid var(--neutrals-lightgrey);
}

.rotate-315 {
    transform: rotate(315deg);
}

.accordion-item {
    border-radius: var(--border-radius-cards) !important;
    border-left: 0 !important;
    border-right: 0 !important;
    background-color: var(--accents-3);
    padding: 16px;
        display: flex;
    flex-direction: column;
    gap: 1rem;
    border: unset;
}
.contact-description p{
    color: var(--accents-1);
}
.contact-description i.bi{
    font-size: 16px;
    color: var(--accents-1);
}

.accordion-item:first-of-type {
    border-top: 1px solid var(--neutrals-mediumgrey);
}

.accordion-button {
    border: unset !important;
    box-shadow: unset !important;
    background: unset !important;
    padding-top: 0;
    padding-bottom: 0;
}

.accordion-button::after {
    background-image: url(../images/xmark.svg);
    background-size: cover;
    width: 20px;
    height: 20px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/xmark.svg);
    background-size: cover;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
}

h4 .accordion-button {
    font-family: var(--desktop-h4-font-family);
    font-size: var(--desktop-h4-size);
    font-weight: 400;
    line-height: var(--desktop-h4-line-height);
    color: var(--neutrals-black) !important;
}
#accordion_1{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.input-email {
    min-width: 335px;
    border: 0;
    outline: 0;
    padding: 1rem;
    border: 1px solid var(--neutrals-lightgrey);
}

.product-card .ratio::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: unset;
    left: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
    border-top-left-radius: var(--borderradius-cards);
    border-top-right-radius: var(--borderradius-cards);
}

.product-card:not(.blog-card):hover .ratio::after {
    background: rgba(0, 0, 0, 0.32);

}

.product-card:not(.blog-card):hover h4 {
    color: var(--main-brand);
}

.small-p,
.pagination-item {
    font-family: var(--paragraph-small-font-family);
    font-size: var(--paragraph-small-size);
    line-height: var(--paragraph-small-line-height);
    font-weight: var(--paragraph-small-weight);
}

.br-8px {
    border-radius: 8px;
}

.dimensions {
    font-size: var(--paragraph-small-size);
    font-weight: var(--paragraph-small-weight);
    line-height: var(--paragraph-small-line-height);
    font-family: var(--paragraph-small-font-family);
    text-transform: uppercase;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.price {
    font-family: var(--button-font-family);
    line-height: var(--button-line-height);
    font-size: var(--button-size);
    font-weight: var(--button-weight);
    text-transform: uppercase;
    color: var(--accents-2);
}

.border-product {
    border: 1px solid var(--neutrals-light-grey);
}

.label-category {
    font-family: var(--paragraph-small-font-family);
    font-size: var(--paragraph-small-size);
    line-height: var(--paragraph-small-line-height);
    font-weight: var(--paragraph-small-weight);
    padding: 4px 12px;
    background-color: var(--neutrals-mediumgrey);
    border-radius: 100px;
    text-decoration: unset;
    color: var(--neutrals-black);
}

.swiper-arrow-left,
.swiper-arrow-right {
    min-width: 32px;
    max-width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* box-shadow: 0px 5.82px 14.55px 0px #00000014; */
    border-radius: 100%;
    transition: all 0.3s ease-in-out;
    /* background-color: var(--neutrals-white); */
}

.swiper-arrow-left i.bi,
.swiper-arrow-right i.bi {
    color: var(--accents-2);
}

.swiper-arrow-left.swiper-button-disabled i.bi,
.swiper-arrow-right.swiper-button-disabled i.bi {
    opacity: 0.5;
}

/* .swiper-arrow-left:hover,
.swiper-arrow-right:hover{
    background-color: var(--neutrals-mediumgrey);
} */

.swiper-pagination-bullet {
    opacity: 1;
    background-color: var(--neutrals-medium-grey)
}

.swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    background-color: var(--accents-2);
}

.swiper-pagination {
    bottom: unset !important;
    top: unset !important;
    position: relative !important;
    align-items: center;
    display: flex;
    justify-content: center;
}

.link {
    font-size: var(--link-size);
    line-height: var(--link-line-height);
    font-family: var(--link-font-family);
    font-weight: var(--link-weight);
    text-decoration: unset;
}

.form-check {
    padding: 0;
    margin-bottom: 0.5rem;
}

.form-check input {
    font-size: 24px;
    border: 1px solid var(--neutrals-darkgrey);
    margin: unset !important;
}

.form-check .form-check-label {
    padding-left: 1rem;
    font-weight: var(--font-weight-semibold);
    font-size: var(--paragraph-size);
    line-height: var(--paragraph-line-height);
    font-family: var(--paragraph-font-family);
}

.pagination-item {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    border: 1px solid var(--neutrals-light-grey);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--neutrals-dark-grey);
    text-decoration: unset;
}

.pagination-item.active {
    border: 1px solid var(--main-brand);
    color: var(--neutrals-white);
    background-color: var(--main-brand);
}

.pagination-item.disable {
    border: unset;
}

.rotate-180 img {
    transform: rotate(180deg);
}

.testimonials-avatar {
    width: 32px;
    height: 32px;
    object-fit: cover;
    object-position: center;
    border-radius: 100px;
}

.box-shadow {
    border: 1px solid var(--neutrals-lightgrey);
    box-shadow: 0px 8px 20px 0px #00000014;
}

.blog-category {
    border: 1px solid var(--neutrals-mediumgrey);
    border-radius: 32px;
    font-size: var(--button-size);
    line-height: var(--button-line-height);
    font-family: var(--button-font-family);
    font-weight: var(--button-weight);
    color: var(--neutrals-black);
    padding: 12px 24px;
}

.blog-category:hover {
    border: 1px solid var(--neutrals-black);
}

.blog-category.active {
    border: 1px solid var(--neutrals-black);
    background-color: var(--neutrals-black);
    color: var(--neutrals-white);
}

.wpcf7-form label,
.wpcf7-form input,
.wpcf7-form textarea {
    width: 100%;
}

.wpcf7-form input,
.wpcf7-form textarea {
    border: unset;
    border-bottom: 1px solid var(--neutrals-black);
    border-radius: 0;
    padding: 12px 0;
    margin-top: 0.5rem;
    background-color: var(--neutrals-white);
    color: var(--neutrals-black);
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    font-family: var(--link-font-family);
    font-size: var(--link-size);
    font-weight: var(--link-weight);
    line-height: var(--link-line-height);
    color: var(--neutrals-black);
    opacity: 0.6;
    text-transform: uppercase;
}

.wpcf7-form input:focus,
.wpcf7-form input:active,
.wpcf7-form textarea:active,
.wpcf7-form textarea:focus {
    border: unset !important;
    border-bottom: 1px solid var(--neutrals-black) !important;
    outline: unset !important;
}

.wpcf7-form label {
    color: var(--neutrals-black);
    font-size: var(--input-size);
    font-family: var(--input-font-family);
    line-height: var(--input-line-height);
    font-weight: var(--font-weight-semibold);
}

.wpcf7-form input[type=submit] {
    background-color: var(--accents-2);
    padding: 12px 24px;
    border-radius: 8px;
    color: var(--neutrals-white);
}

.contact-description p {
    font-weight: var(--font-weight-regular);
    font-family: var(--button-font-family);
    font-size: var(--button-size);
    line-height: var(--button-line-height);
}

.contact-description i.bi{
    font-size: 16px;
    color: var(--accents-1);
}

.container-1 {
    width: 100%;
    display: flex;
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
    align-items: center;
}

.container-1 input#search {
    width: 100%;
    height: 40px;
    border: 1px solid var(--neutrals-mediumgrey);
    font-size: var(--paragraph-size);
    line-height: var(--paragraph-line-height);
    float: left;
    color: var(--neutrals-black);
    padding-left: 45px;
    border-radius: var(--borderradius-interactives);
}

.container-1 .icon {
    position: absolute;
    margin-left: 18px;
    z-index: 1;
    color: #4f5b66;
}

.custom-drop {
    padding: 8px 16px;
    border: 1px solid var(--neutrals-mediumgrey);
    border-radius: var(--borderradius-interactives);
    position: relative;
    display: flex;
    align-items: center;
}

.custom-drop::after {
    content: url(../images/chevron-down.svg);
    position: absolute;
    right: 1rem;
}

.before-accent-3-left::before {
    content: '';
    position: absolute;
    left: -50%;
    width: 50%;
    background-color: var(--accents-3);
    height: 100%;
    bottom: 0;
}

.bx-product-shadow {
    box-shadow: 0px 12px 24px 0px #00000014;
}

.bx-product-shadow .btn-product {
    font-weight: var(--button-weight);
    font-size: var(--button-size);
    font-family: var(--button-font-family);
    line-height: var(--button-line-height);
    text-transform: uppercase;
    color: var(--accents-2);
}

.bx-product-shadow .btn-product.btn-product-article {
    display: flex;
    gap: 1rem;
}

.bx-product-shadow .btn-product.btn-product-article img {
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.article-card:hover .btn-product.btn-product.btn-product-article img {
    opacity: 1;
}

.product-card.article-card .ratio::after {
    display: none;
}

.product-card.article-card {
    margin-top: 0;
    transition: all 0.3s ease-in-out;
}

.product-card.article-card:hover {
    margin-top: -1rem;
}

.product-card.article-card a:hover {
    opacity: 1;
}

.modal-werken .modal-dialog {
    max-width: 1100px;
}

.img-icon-d {
    width: 48px;
    min-width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(241, 96, 20, 0.12);
    border-radius: 6px;
}

.img-icon-d img {
    width: 25px;
}

.gap-32 {
    gap: 32px;
}

.gap-24 {
    gap: 24px;
}

.bg-image-f {
    position: relative;
}

.bg-image-f::before {
    content: '';
    background-image: url(../assets/images/bg-fig.svg);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

.bg-image-f * {
    position: relative;
    z-index: 1;
}

@media(min-width:1200px) {
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: var(--navbar-nav-link-padding-x);
        padding-left: var(--navbar-nav-link-padding-x);
    }
}

@media(max-width:1200px) {
    nav a.navbar-brand {
        font-size: var(--mobile-h2-line-height);
        line-height: var(--mobile-logo-line-height);
    }

    .navbar {
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .navbar-nav .nav-link {
        justify-content: center;
    }
}

@media(min-width:992px) {
    .border-lg-start {
        border-left: 1px solid var(--neutrals-white);
    }

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

@media(max-width:991px) {
    body {
        font-family: var(--font-tertiary);
        font-size: var(--paragraph-size);
        line-height: var(--paragraph-line-height);
        color: var(--neutrals-black);
    }

    h1 {
        font-size: var(--mobile-h1-size);
        line-height: var(--mobile-h1-line-height);
        /*font-weight: var(--mobile-h1-weight);*/
        font-family: var(--mobile-h1-font-family);
    }

    h2 {
        font-size: var(--mobile-h2-size);
        line-height: var(--mobile-h2-line-height);
        font-family: var(--mobile-h2-font-family);
        /*font-weight: var(--mobile-h2-weight);*/
    }

    h3 {
        font-family: var(--mobile-h3-font-family);
        font-size: var(--mobile-h3-size);
        /*font-weight: var(--mobile-h3-weight);*/
        line-height: var(--mobile-h3-line-height);
    }

    h4 {
        font-family: var(--mobile-h4-font-family);
        font-size: var(--mobile-h4-size);
        line-height: var(--mobile-h4-line-height);
        /*font-weight: var(--mobile-h4-weight);*/
    }



    .border-mob-top {
        border-top: 1px solid var(--neutrals-white);
    }

    h3 .accordion-button {
        font-family: var(--mobile-h3-font-family);
        font-size: var(--mobile-h3-size);
        /*font-weight: var(--mobile-h3-weight);*/
        line-height: var(--mobile-h3-line-height);
        padding-left: 0;
        padding-right: 0;
    }

    .accordion-body {
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
    }

    .min-h-480 {
        min-height: 400px;
    }

    .input-email {
        min-width: unset;
    }
}











/*EDIT BY MAARTEN FROM HERE*/


/* general */
.bg-cover {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.slide-vacancy {
    cursor: pointer;
    transition: all 0.3s ease-in-out;

    /* margin-top: 0; */
}

.min-h-416 {
    /* min-height: 429px; */
    aspect-ratio: 4 / 3;
}

.min-h-407 {
    /* min-height: 407px; */
    aspect-ratio: 3 / 4;
}

.ons-team-hover {
    position: relative;
    /* у тебе вже є, але хай буде */
    overflow: hidden;
    cursor: pointer;
}

.hover-ons {
    position: absolute;
    inset: 0;
    /* скорочено left/top/right/bottom */
    background-color: var(--accents-2);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: start;
    justify-content: start;
    /* початковий стан */
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.7s ease;
}

.hover-ons h4 {
    font-weight: 400;
}

/* ефект при наведенні */
.ons-team-hover:hover .hover-ons {
    transform: translateY(0);
    opacity: 1;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon i.bi {
    color: #fff;
}



/*element text with bg image */

.el-text-bg-image {
    background-position: center;
    background-size: cover;
}

.el-text-bg-image::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 100%;
    background: linear-gradient(263.85deg, rgba(3, 3, 3, 0) 1.95%, rgba(3, 3, 3, 0.57) 83.93%);
    left: 0;
    top: 0;
}

.el-text-bg-image-small::before {
    background: linear-gradient(258.17deg, rgba(0, 0, 0, 0) 49.01%, rgba(0, 0, 0, 0.44) 66.73%, rgba(0, 0, 0, 0.81) 98.82%),
        linear-gradient(360deg, rgba(0, 0, 0, 0) 68.87%, rgba(0, 0, 0, 0.564) 92.64%);

}

.el-text-bg-image .btn-outline:hover {
    color: #fff;
}



/* element divider */
.el-divider {
    min-height: 3rem;
}

.el-divider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 4 / 1;
    max-height: 336px;
    min-height: 336px;
}

/* element video */
.el-video .iframe-wrapper {
    position: relative;
    padding: 56.34% 0 0 0;
}

.el-video .iframe-wrapper iframe {
    border-radius: var(--borderradius-interactives);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*element logos */
.slider-logos .swiper-wrapper {
    transition-timing-function: linear !important;
    display: flex;
    align-items: center;
}

.slider-logos .swiper-slide {
    max-width: 300px;
    width: auto;
    /*flex-shrink: 0;*/
}

.slider-logos .swiper-slide img {
    max-height: 100px;
    object-fit: contain;
}






/* wrapped usp */










.fit-img-to-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.fit-img-to-content>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}






.swiper-slide {
    height: auto;
    opacity: 0.3;
}
.swiper-slide.swiper-slide-active{
    opacity: 1;
}
.arrow-pag{
    min-width: 44px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius-interactives);
    background-color: var(--neutrals-light-grey);
}




.bg-brand-color-1 {
    background-color: var(--main-brand);
}

.bg-brand-color-1 * {
    color: #fff;
}

.bg-brand-color-1 .btn {
    background-color: #fff;
    color: var(--main-brand);
    border: 3px solid #fff;
}

.bg-brand-color-1 .btn {
    background-color: #fff;
    color: var(--main-brand);
    border: 3px solid #fff;
}

.bg-brand-color-1 .btn:hover {
    background-color: var(--neutrals-mediumgrey);
    color: var(--main-brand);
}

.bg-brand-color-1 .btn-outline {
    border: 3px solid #fff;
    background-color: var(--main-brand);
    color: #fff;
}

.bg-brand-color-1 .btn-outline:hover {
    background-color: var(--main-brand);
    color: #000;
    border: 3px solid #000;
}

.bg-accent-3 {
    background-color: var(--accents-3);
}

.bg-accent-2 {
    background-color: var(--accents-2);
}

.bg-accent-2 h2,
.bg-accent-2 p {
    color: var(--neutrals-white);
}

.text-accent-2 {
    color: var(--accents-2);
}
.logo-footer{
    min-width: 126px;
}
.p-footer{
    font-family: var(--link-font-family);
    font-size: var(--link-size);
    font-weight: 400;
    line-height: var(--link-line-height);
}
.link-f{
    font-family: var(--link-font-family);
    font-size: var(--link-size);
    line-height: var(--link-line-height);
    font-weight: 400;
}


.line-footer {
    height: 1px;
    width: 100%;
    background-color: var(--accents-2);
}

.contacts-icons i.bi {
    font-size: 20px;
}

.soc-link-f {
    text-transform: uppercase;
}


i.bi {
    color: var(--main-brand);
    display: block;
    font-size: 28px;
}

i.bi.fs-normal {
    font-size: inherit;
}

i.bi.bi-star-fill {
    color: var(--neutrals-mediumgrey);
    font-size: 16px;
}

i.bi.bi-star-fill.color-yellow {
    color: var(--ui-warning);
}


.bi-chevron-left::before,
.bi-chevron-right::before {
    font-weight: 600 !important;
}




a {
    color: var(--main-brand);
    text-decoration: none;
}

a:hover,
a:active {
    color: var(--main-brand);
    opacity: .8;
}


.border-top {
    border-top: 1px solid var(--neutrals-lightgrey) !important;
}

.border-bottom,
.el-posts .scnd-column .row:last-child {
    border-bottom: 1px solid var(--neutrals-lightgrey) !important;
}

.before-over {
    position: relative;
}

.before-over::before {
    content: '';
    width: 100%;
    height: 45%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    display: block;
    z-index: 1;
}

.hover-circle-arrow {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px 0px #00000014;
    border: 2px solid var(--neutrals-white);
    border-radius: 32px;
}

.hover-circle-arrow i.bi {
    color: var(--neutrals-white);
    font-size: 16px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .container-head {
    border-radius: var(--border-radius-cards);
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px !important;
}

.logo-color img {
    width: 120px;
}

.navbar-nav .nav-link {
    font-size: var(--link-size);
    font-family: var(--link-font-family);
    line-height: var(--link-line-height);
    font-weight: 400;
    color: var(--main-brand);
    padding: 4px 12px;
    transition: all 0.3s ease-in-out;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    /*text-transform: capitalize;*/
}

.navbar-nav .nav-item.current-menu-item {
    background: rgba(232, 81, 2, 0.16);
    border-radius: 6px;
}

.navbar-nav .nav-item.current-menu-item .nav-link {
    color: var(--accents-1);
}

.navbar-expand-xl .navbar-nav {
    gap: 4px;
}

.d-header-items a {
    min-width: 45px;
    width: 45px;
    height: 45px;
    background-color: var(--neutrals-light-grey);
    border-radius: var(--border-radius-cards);
    font-family: var(--link-font-family);
    font-size: var(--link-size);
    font-weight: 600;
    line-height: var(--link-line-height);
    color: var(--neutrals-dark-grey);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.d-header-items a i.bi {
    font-size: 20px;
}


.header-links-c a {
    color: white;
    text-transform: uppercase;
    font-family: var(--button-font-family);
    font-size: var(--button-size);
    line-height: var(--button-line-height);
    font-weight: var(--button-weight);
}

.header-divider {
    width: 1px;
    height: 34px;
    background-color: var(--neutrals-white);
}

.nav-item.have-child .nav-link::after {
    content: '';
    background-image: url(../assets/icons/drop-down.svg);
    width: 16.25px;
    height: 8.25px;
    display: block;
    background-repeat: no-repeat;
    position: relative;
    right: 0;
    top: 40%;
    transition: all 0.3s;
}

.bg-white .nav-item.have-child .nav-link::after {
    filter: invert(1);
}

.nav-item.have-child:hover .nav-link::after {
    transform: rotate(180deg);
}

.nav-item.have-child .sub-menu .nav-link::after {
    display: none;
}

.nav-item .sub-menu {
    /* position: absolute;
    top: 100%;
    left: 1rem;
    background: #000;
    padding: 0;
    list-style: none;
    padding: 0.5rem 1rem;
    transform: translateY(0); */
    position: absolute;
    z-index: 9999;
    background: var(--neutrals-white);
    list-style: none;
    padding: 5px;
    font-size: 17px;
    display: none;
    box-shadow: 0px 4px 15px 0px #00000026;
    text-align: left;
    flex-direction: column;
    gap: 0.2rem;
}

.nav-item.have-child:hover .sub-menu {
    display: flex;
    border-radius: 0;
}

.nav-item .sub-menu .nav-link {
    color: var(--accents-2);
    padding-left: 12px;
    padding-right: 12px;
}

.img-bg-card {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
}

.img-bg-card img {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    object-fit: cover;
}

.hover-an-top {
    margin-top: 0;
    transition: all 0.3s ease-in-out;
}

.hover-an-top:hover {
    opacity: 1;
    margin-top: -1rem;

}

.hover-an-top:hover .img-bg-card img {
    transform: scale(1.2);
}

/* .hover-an-top:{

} */
footer .link,
footer .soc-link-f {
    font-family: var(--button-font-family);
    line-height: var(--button-line-height);
    font-size: var(--button-size);
    font-weight: var(--button-weight);
}

.language-drop {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.label-ges {
    background-color: var(--accents-3);
    border-radius: 8px;
    padding: 4px 16px;
    width: max-content;
}

.row-ges {
    position: relative;
}

.row-ges::before {
    content: '';
    width: 2px;
    height: 100%;
    background-color: var(--accents-2);
    top: 0;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
}

.row-ges .row {
    position: relative;
}

.row-ges .row::before {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    background-color: var(--accents-2);
    width: 22px;
    height: 22px;
    border: 3px solid var(--neutrals-white);
    border-radius: 30px;
}

.el-text-image ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.el-text-image ul li {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 0;
}

.el-text-image ul li::before {
    content: '';
    background-image: url(../assets/icons/done.svg);
    position: absolute;
    left: 4px;
    width: 14.38px;
    height: 10px;
    display: block;
    transform: translateY(-50%);
    top: 50%;
}
.el-text-image .done-orange ul li::before{
     background-image: url(../assets/icons/done-orange.svg);
}

.contact-section {
    position: relative;
}

.contact-section * {
    position: relative;
    z-index: 1;
}

.contact-section::before {
    content: '';
    width: 45%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: var(--neutrals-white);
    position: absolute;
    display: block;
}

.slider-garden-1 .swiper-slide img {
    aspect-ratio: 1/1;
}

.btn-instagram-accent2 {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-instagram-accent2 i.bi {
    color: white;
    font-size: 16px;
}

.link-back {
    color: var(--neutrals-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--button-font-family);
    line-height: var(--button-line-height);
    font-size: var(--button-size);
    font-weight: var(--button-weight);
    text-transform: uppercase;
}

.link-back i.bi {
    font-size: 16px;
    color: white;
}

.pop-gal {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pop-gal h2 {
    font-family: 'Barlow Condensed';
    font-weight: 600;
    font-size: 102.4px;
    line-height: 115.2px;
    text-transform: uppercase;
    color: var(--neutrals-white);
}

.modal-header {
    border-bottom: unset;
}

.br-left-light {
    border-left: 1px solid var(--accents-3);
}

.modal-header {
    padding: 24px;
}

.modal-body {
    padding: 24px;
}

.product-card-modal.product-card .ratio::after {
    display: none;
}

.toon {
    font-family: var(--link-font-family);
    font-size: var(--link-size);
    font-weight: var(--link-weight);
    line-height: var(--link-line-height);
    text-transform: uppercase;
}

.sort {
    font-family: var(--button-font-family);
    line-height: var(--button-line-height);
    font-size: var(--button-size);
    font-weight: var(--button-weight);
    text-transform: uppercase;
}

.sort-iside {
    font-family: var(--link-font-family);
    font-size: var(--link-size);
    font-weight: var(--link-weight);
    line-height: var(--link-line-height);
    text-transform: uppercase;
    display: flex;
    gap: 8px;
    align-items: center;
    border-bottom: 1px solid var(--main-brand);
}

.sort-iside i.bi {
    color: var(--neutrals-black);
    font-size: 16px;
}

.bx-product-shadow .btn-product:hover {
    border: unset;
}

.gallery-pop-parent {
    cursor: pointer;
}

.btn-white-download {
    display: flex;
    gap: 8px;
    align-items: center;
    width: max-content;
}

.btn-white-download i.bi {
    color: black;
}

.link-back:hover {
    color: var(--neutrals-white);
}

.mfp-pager .dots {
    display: flex;
    position: absolute;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    top: 6px;
}

.mfp-pager .dots li {
    padding: 0;
    margin: 0;
    display: inline-flex;
    border: 2px solid transparent;
}

.mfp-pager .dots li button {
    padding: 0;
    display: inline-flex;
    border: none;
}

.mfp-pager .dots li img {
    width: 80px;
    aspect-ratio: 4/3;
    object-fit: cover;
    cursor: pointer;
}

.mfp-pager .dots li.active {
    border: 2px solid #783DAB;
}

.parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 1fr);
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
}

.div1 {
    grid-area: 1 / 1 / 3 / 2;
}

.div2 {
    grid-area: 1 / 2 / 4 / 3;
}

.div3 {
    grid-area: 4 / 2 / 7 / 3;
}

.div4 {
    grid-area: 3 / 1 / 7 / 2;
}

.section-pt-8 {
    padding-top: 7rem;
}

.mb-minus-8 {
    margin-bottom: -8rem;
}
.mt-minus-4{
    margin-top: -4rem;
}
.quote-top{
    position: absolute;
    left: 12px;
    top: -30px;
}
.quote-bottom{
    position: absolute;
    right: 12px;
    bottom: -30px;
}
.quote-h3{
    font-size: 42px;
    line-height: 54px;
}
.bt-1px{
    border-top: 1px solid var(--neutrals-medium-grey);
}
.p-32px{
    padding: 32px;
}
.bg-card-i{
    background: rgba(24, 10, 87, 0.06);
    padding: 32px;
    border-radius: var(--border-radius-cards);
}
.bg-card-i .img-s{
    min-width: 59px;
    width: 59px;
    height: 59px;
    background-color: var(--accents-3);
    display: flex;
    justify-content: center;
    align-content: center;
    border-radius: 8px;
}
.bg-card-i .img-s img{
    max-width: 32px;
}
.mb-minus-2{
    margin-bottom: -4rem;
}
.mb-1px-accent-2{
    border-bottom: 1px solid var(--accents-2);
    padding-bottom: 8px;
}
.def-s h2{
    margin-bottom: 1.5rem;
}
.slider-t h3{
    color: var(--accents-1);
}
.h3-ac2 h3{
    color: var(--accents-2);
}
.icon-div-s h4{
    margin-bottom: 1rem;
    color: var(--neutrals-black);
}
.icon-div-s p{
    color: var(--neutrals-black);
}
.df-s-h4-h2 h4{
    color: var(--accents-1);
}
.df-s-h4-h2 h2{
    margin-bottom: 1.5rem;
}
.h4-p0 p{
    margin-bottom: 0;
}
.content-white h3, .content-white p{
    color: var(--neutrals-white);
}
.sbs h4{
    color: var(--accents-1);
}
.sbs h2{
    margin-bottom: 0;
}
.h2-accent2-p0 h2{
    color: var(--accents-2);
}
.h2-accent2-p0 p{
    margin-bottom: 0;
}
.contact-description a{
    color: var(--accents-1);
    font-family: var(--link-font-family);
    font-size: var(--link-size);
    line-height: var(--link-line-height);
    font-weight: 400;
}

.woocommerce-MyAccount-navigation ul{
    padding: 0;
}
.woocommerce-cart .wc-block-components-button:not(.is-link),
.woocommerce-cart .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button {
    border: none;
    outline: none !important;
    min-height: auto !important;
    flex: none !important;
    padding: 0 !important;
    white-space: inherit;
    background: none !important;
    box-shadow: none !important;
}
.woocommerce-cart .wc-block-components-button:not(.is-link) > div {
    width: 100%;
}
.accent-2-text *{
    color: var(--accents-2);
}
.col-table-about h5{
    font-size: 16px;
}
.h2-ac2 h2{
    color: var(--accents-2);
}


.woocommerce-checkout .wc-block-components-text-input.wc-block-components-address-form__flagpin-company-name {
    flex: 0 0 100% !important;
}
.woocommerce-checkout #shipping > .wc-block-components-text-input.wc-block-components-address-form__flagpin-coc-number,
.woocommerce-checkout #shipping > .wc-block-components-text-input.wc-block-components-address-form__flagpin-company-name,
.woocommerce-checkout #shipping > .wc-block-components-text-input.wc-block-components-address-form__flagpin-vat-number {
    display: none;
}


@media(max-width:991px) {
    .align-items-center-2 {
        align-items: center;
    }

    .fit-img-to-content {
        position: relative;
    }

    .row-ges .row::before {
        display: none;
    }

    .row-ges::before {
        display: none;
    }

    .contact-section::before {
        display: none;
    }

    .div-white-mob {
        position: relative;
    }

    .div-white-mob::before {
        content: '';
        width: 110%;
        height: 100%;
        background-color: var(--neutrals-white);
        left: -15px;
        top: 0;
        position: absolute;
    }

    .div-white-mob * {
        position: relative;
        z-index: 1;
    }

    .btn-white-download {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .btn-instagram-accent2,
    .link-back {
        justify-content: center;
        text-align: center;
    }

    .parent {
        display: flex;
        flex-direction: column;
        row-gap: 2rem;
    }
    .mt-minus-4{
        margin-top: -2rem;
    }
    .h-100-min-mob{
        min-height: 250px;
    }
    .mb-minus-2{
        margin-bottom: 0;
    }
    .quote-top{

    top: -10px;
        max-width: 50px;
}
.quote-bottom{
    bottom: -10px;
        max-width: 50px;
}
.quote-h3 {
    font-size: 32px;
    line-height: 42px;
}
}

@media(max-width:1200px) {
    .header-links-c {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        padding-bottom: 2rem;
    }

    .header-divider {
        display: none;
    }

    .nav-item .sub-menu {
        position: relative;
        display: flex;
        flex-direction: column;
        background: unset;
        box-shadow: unset;
        padding: 0;
    }

    .nav-item.have-child .nav-link::after {
        display: none;
    }

    .nav-item .sub-menu .nav-link {
        color: var(--main-brand);
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .el-usp-wrapped .col-md-6:not(:last-child):after,
    .el-usp-wrapped .col-md-6:not(:last-child):after {
        display: none;
    }

    .el-text-bg-image::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        left: 0;
        top: 0;
    }
}

@media(max-width:1100px) {
    .modal-werken .modal-dialog {
        max-width: 95%;
    }
}

@media(min-width:991px) {
    .pe-lg-12px {
        padding-right: 12px;
    }
}