@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    /* FONTS */
    --font-primary: "Fira Sans";
    --font-secondary: "Fira Sans";
    --font-tertiary: "Inter";

    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-light: 300;
    --font-weight-bold: 700;
    --font-weight-book: 350;
    --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: 58px;
    --desktop-h1-line-height: 72.5px;
    --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-semibold);
    --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: 24px;
    --desktop-h4-line-height: 30px;
    --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-weight: var(--font-weight-semibold);
    --mobile-h1-size: 48px;
    --mobile-h1-line-height: 60px;
    --mobile-h2-font-family: var(--font-primary);
    --mobile-h2-weight: var(--font-weight-semibold);
    --mobile-h2-size: 32px;
    --mobile-h2-line-height: 40px;
    --mobile-h3-font-family: var(--font-secondary);
    --mobile-h3-weight: var(--font-weight-semibold);
    --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-font-family: var(--font-tertiary);
    --mobile-h5-weight: var(--font-weight-bold);
    --mobile-h5-size: 18px;
    --mobile-h5-line-height: 20px;
    --mobile-h6-font-family: var(--font-tertiary);
    --mobile-h6-weight: var(--font-weight-semibold);
    --mobile-h6-size: 16px;
    --mobile-h6-line-height: 20px;

    --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: 1.5rem !important;


    /* BRAND COLORS */
    --main-brand: #242852;
    --accents-1: #f5f7fa;
    --accents-2: #ff6600;
    --accents-3: #e3e3e3;
    --neutrals-white: #ffffff;
    --neutrals-light-grey: #f2f2f2;
    --neutrals-medium-grey: #d9d9d9;
    --neutrals-dark-grey: #989898;
    --neutrals-black: #222222;
    --ui-positive: #009681;
    --ui-negative: #d13346;
    --ui-warning: #e7aa35;

    /* FILE DATA */
    --border-radius-interactives: 8px;
    --border-radius-interactives-rem: 0.5rem;
    --border-radius-cards: 16px;
    --border-radius-cards-rem: 1rem;
    --desktop-side-padding: 128px;
    --desktop-side-padding-rem: 8rem;
    --mobile-side-padding: 24px;
    --mobile-side-padding-rem: 1.5rem;
}


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

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;
    color: var(--main-brand);
}

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

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

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

h6 {
    font-family: var(--desktop-h6-font-family);
}

.navbar-nav .nav-link {
    font-size: var(--link-size);
    font-family: var(--font-tertiary);
    line-height: var(--link-line-height);
    color: var(--neutrals-black);
    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;
}

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

.navbar-nav .current_page_item .nav-link {
    color: var(--accents-2);
    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);
}

.header-sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 111;
    box-shadow: 0px 12px 24px 0px #24285214;
}

#language_dropdown {
    /* order: 2; */
    border: 1px solid var(--neutrals-mediumgrey);
    border-radius: 4px;
    padding: 8px;
    margin-left: 1rem;
    font-size: var(--input-size);
    line-height: var(--input-line-height);
    font-family: var(--font-tertiary);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0;
}

#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;
}

#language_dropdown #languageSwitcher {
    color: var(--neutrals-darkgrey);
    font-weight: var(--font-weight-semibold);
}

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

#language_dropdown .dropdown-toggle::after {
    content: url(../images/arrow-bottom.svg);
    border: unset;
    vertical-align: 0.1rem;
    font-size: 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);
}

.soc-btn {
    border: 2px solid var(--accents-2);
    transition: all 0.3s ease-in-out;
}

.soc-btn i.bi {
    color: var(--accents-2);
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.soc-btn:hover {
    background-color: var(--accents-2);
    opacity: 1;

}

.soc-btn:hover i.bi {
    color: var(--neutrals-white);
}

.avatar-circle {
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--accents-2);
    border-radius: 100px;
}

.avatar-circle img {
    border-radius: 100px;
}

.btn {
    background-color: var(--accents-2);
    border: 2px solid var(--accents-2);
    color: var(--neutrals-white);
    font-weight: var(--button-weight);
    padding: 10px 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);
    border-radius: var(--border-radius-interactives);
}

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

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

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

.btn-outline i.bi {
    transition: all 0.3s ease-in-out;
}

.btn-outline:hover i.bi {
    color: var(--neutrals-white);
}

.btn-white {
    box-shadow: 0px 4px 10px 0px #00000014;
    background-color: var(--neutrals-white);
    color: var(--main-brand);
}

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

.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);
}

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

.text-accents-2 {
    color: var(--accents-2);
}
.text-accents-2-h4 h4, .text-accents-2-h h4, .text-accents-2-h h3 {
    color: var(--accents-2);
}

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

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

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

.br-cards-top {
    border-top-left-radius: var(--border-radius-cards);
    border-top-right-radius: var(--border-radius-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: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--neutrals-mediumgrey);
}

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

.accordion-button {
    border: unset !important;
    box-shadow: unset !important;
    background: unset !important;
}

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

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

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

.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 {
    box-shadow: 0px 12px 24px 0px #24285214;
    border-radius: var(--border-radius-cards);
}

.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);
}

.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: 64px;
    max-width: 64px;
    height: 64px;
    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:hover,
.swiper-arrow-right:hover {
    background-color: var(--neutrals-mediumgrey);
}

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

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

.swiper-pagination {
    bottom: unset !important;
    top: unset !important;
}

.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(--accents-2);
    color: var(--neutrals-white);
    background-color: var(--accents-2);
}

.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(--accents-1);
    box-shadow: 0px 12px 24px 0px #24285214;

}

.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: 1px solid var(--neutrals-lightgrey);
    border-radius: var(--borderradius-interactives);
    padding: 12px;
    margin-top: 0.5rem;
    background-color: var(--neutrals-white);
}

.wpcf7-form input:focus,
.wpcf7-form input:active,
.wpcf7-form textarea:active,
.wpcf7-form textarea:focus {
    border: 1px solid var(--bg-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(--main-brand);
}

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

.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;
}

.contact-btn {
    display: flex;
    gap: 1rem;
    align-items: center;
}

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

.list-none {
    list-style: none;
    padding-left: 0;
    display: flex;
    gap: 1rem;
}

.mb-minus {
    margin-bottom: -1.5rem;
}

.breadcrumbs {
    display: flex;
    gap: 1rem;
}

.breadcrumbs span,
.breadcrumbs span i.bi, .breadcrumbs a.btn-icon, .breadcrumbs a.btn-icon i.bi {
    color: var(--main-brand);
    font-size: var(--link-size);
    font-weight: var(--link-weight);
    font-family: var(--link-font-family);
    line-height: var(--link-line-height);
}
.breadcrumbs a.btn-icon, .breadcrumbs a.btn-icon i.bi{
    color: var(--neutrals-dark-grey);
    transition: all 0.3s ease-in-out;
}
.breadcrumbs a.btn-icon:hover, .breadcrumbs a.btn-icon:hover i.bi{
    color: var(--accents-2);
}

.breadcrumbs span.dissable {
    color: var(--neutrals-dark-grey);
}

@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);
    }
}

@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: 40px;
        line-height: 50px;
        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;
}


.min-h-416 {
    min-height: 416px;
}


.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: unset;
    color: var(--accents-2);
    border: unset;
    gap: 0.5rem;
    padding: 0;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
}

.btn-icon:hover {
    border-bottom: 2px solid var(--accents-2);
    background-color: transparent;
    color: var(--accents-2);
}

.btn-icon i.bi {
    color: var(--accents-2);
}



/*element text with bg image */

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

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

.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;
}

/* 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 */

@media(max-width:767px) {
    .el-usp-wrapped .col-md-6:not(:last-child):after {
        content: '';
        position: relative;
        width: 100%;
        height: 1px;
        background-color: white;
        margin-top: 1rem;
    }
}

@media(min-width:768px) AND (max-width: 1199px) {
    .el-usp-wrapped .col-md-6:nth-child(2n) {
        border-left: 1px solid #fff;
    }
}

@media(min-width:1200px) {
    .el-usp-wrapped .col-md-6:nth-child(3n+2) {
        border-left: 1px solid #fff;
        border-right: 1px solid #fff;
    }
}









.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;
}





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

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

.bg-brand .text-accents-2 {
    color: var(--accents-2);
}

.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: 2px solid var(--accents-2);
    background-color: var(--main-brand);
    color: var(--accents-2);
}

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

.bg-brand-color-1 .btn-icon {
    background-color: unset;
    color: var(--accents-2);
    border: unset;
    gap: 0.5rem;
    border-bottom: 2px solid var(--main-brand);
    border-radius: 0;
}

.bg-brand-color-1 .btn-icon:hover {
    background-color: unset;
    color: var(--accents-2);
    border-bottom: 2px solid var(--accents-2);
}

.bg-brand-color-1 .btn-icon i.bi {
    color: var(--accents-2);
}

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





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;
}

.el-text-image ul {
    list-style: unset;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
}

.el-text-image ul li {
    padding-left: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.el-text-image ul li::before {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background-color: var(--accents-2);
    display: inline-block;
    left: 0;
    margin-left: 0.5rem;
    top: 6px;
}

.el-text-image ul li p {
    margin-bottom: 0;
}

.product-card .btn-icon {
    color: var(--main-brand);
    font-weight: var(--font-weight-regular);
    transition: all 0.3s ease-in-out;
    padding: 0;
}

.product-card .btn-icon i.bi {
    color: var(--main-brand);
    font-size: 12px;
    transition: all 0.3s ease-in-out;
}

.product-card .btn-icon:hover {
    border: transparent;
    color: var(--main-brand);
    opacity: 0.4;
}

.product-card .btn-icon:hover i.bi {
    color: var(--main-brand);
    opacity: 0.4;
}

.product-card h4 {
    margin-right: 3rem;
}

.p-2rem {
    padding: 32px;
}

.bg-quote h4 {
    color: var(--neutrals-white);
}

.btn-contact-page {
    padding: 0 !important;
}

.btn-contact-page:hover {
    border-bottom: 2px solid transparent;
}

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

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

    .avatar-div-mobile .h-auto {
        width: 100%;
    }

    .avatar-div-mobile .h-auto .btn {
        width: 100%;
    }

    .contact-btn {
        justify-content: center;
        align-items: center;
    }

    .mob-center img {
        object-position: center !important;
    }
    .p-2rem{
        padding: 1.5rem;
    }
}

.navbar-toggler:focus {
    box-shadow: unset;
}
@media(max-width:1200px){
        nav.navbar {
        padding-left: calc(var(--bs-gutter-x) * .5);
        padding-right: calc(var(--bs-gutter-x) * .5);
    }
    .navbar-brand img{
        max-width: 100px;
    }
        .contact-btn {
        justify-content: center;
        align-items: center;
    }
    .p-2rem{
        padding: 1.5rem;
    }
}

@media(max-width:1199px){
    body {
        margin-top: 74px;
    }
}