@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Manrope:wght@200..800&display=swap');

:root {
    /* ***** */
    /* FONTS */
    /* ***** */
    --font-primary: "Cal Sans";
    --font-secondary: "Manrope";
    --font-tertiary: "Manrope";

    --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-h2-font-family: var(--font-primary);
    --desktop-h3-font-family: var(--font-secondary);
    --desktop-h4-font-family: var(--font-secondary);
    --desktop-h5-font-family: var(--font-tertiary);
    --desktop-h6-font-family: var(--font-tertiary);

    --desktop-h1-weight: var(--font-weight-semibold);
    --desktop-h2-weight: var(--font-weight-semibold);
    --desktop-h3-weight: var(--font-weight-regular);
    --desktop-h4-weight: var(--font-weight-semibold);
    --desktop-h5-weight: var(--font-weight-bold);
    --desktop-h6-weight: var(--font-weight-semibold);

    --desktop-h1-size: 64px;
    --desktop-h1-line-height: 80px;
    --desktop-h2-size: 48px;
    --desktop-h2-line-height: 60px;
    --desktop-h3-size: 32px;
    --desktop-h3-line-height: 40px;
    --desktop-h4-size: 22px;
    --desktop-h4-line-height: 28px;
    --desktop-h5-size: 18px;
    --desktop-h5-line-height: 24px;
    --desktop-h6-size: 16px;
    --desktop-h6-line-height: 20px;

    --mobile-h1-font-family: var(--font-primary);
    --mobile-h2-font-family: var(--font-primary);
    --mobile-h4-font-family: var(--font-secondary);
    --mobile-h3-font-family: var(--font-secondary);
    --mobile-h5-font-family: var(--font-tertiary);
    --mobile-h6-font-family: var(--font-tertiary);

    --mobile-h1-weight: var(--font-weight-semibold);
    --mobile-h2-weight: var(--font-weight-semibold);
    --mobile-h3-weight: var(--font-weight-regular);
    --mobile-h4-weight: var(--font-weight-semibold);
    --mobile-h5-weight: var(--font-weight-bold);
    --mobile-h6-weight: var(--font-weight-semibold);

    --mobile-h1-line-height: 60px;
    --mobile-h1-size: 48px;
    --mobile-h2-size: 32px;
    --mobile-h2-line-height: 40px;
    --mobile-h3-line-height: 30px;
    --mobile-h3-size: 24px;
    --mobile-h4-size: 18px;
    --mobile-h4-line-height: 24px;
    --mobile-h5-size: 16px;
    --mobile-h5-line-height: 20px;
    --mobile-h6-size: 16px;
    --mobile-h6-line-height: 20px;

    --paragraph-font-family: var(--font-tertiary);
    --paragraph-small-font-family: var(--font-tertiary);
    --paragraph-weight: var(--font-weight-regular);
    --paragraph-small-weight: var(--font-weight-regular);
    --paragraph-size: 16px;
    --paragraph-line-height: 28px;
    --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: 1rem !important;


    /* ************ */
    /* BRAND COLORS */
    /* ************ */
    --main-brand: #82227a;
    --accents-1: #000938;
    --accents-2: #f8f4f8;
    --accents-3: #da64d1;
    --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: 32px;
    --border-radius-cards: 16px;
    --desktop-side-padding: 96px;
    --mobile-side-padding: 24px;
    --desktop-gutter: 32px;
    --mobile-gutter: 16px;
}



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: 400;
    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: 400;
    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: 600;
}

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(--font-weight-semibold);
}

.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 .current_page_item .nav-link {
    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; */
    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 {
    background-color: var(--neutrals-light-grey);
    transition: all 0.3s ease-in-out;
}

.soc-btn:hover {
    background-color: var(--neutrals-medium-grey);
}

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

.btn {
    background: linear-gradient(107.9deg, #82227A 15.19%, #424598 85.19%);
    border-radius: var(--border-radius-interactives);
    color: var(--neutrals-white);
    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;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background: linear-gradient(107.9deg, #424598 15.19%, #82227A 85.19%);
    opacity: 1;
    color: var(--neutrals-white);
}

.btn-grad {
    position: relative;
    display: inline-block;
    background: linear-gradient(107.9deg, #82227A 15.19%, #424598 85.19%);
    border-radius: var(--border-radius-interactives);
    color: var(--neutrals-white);
    font-weight: var(--button-weight);
    padding: 11px 22px;
    font-size: var(--button-size);
    line-height: var(--button-line-height);
    font-family: var(--button-font-family);
    text-transform: capitalize;
    overflow: hidden;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.btn-grad:hover {
    color: var(--neutrals-white);
}

.btn-grad span {
    position: relative;
    z-index: 1;
    font-size: var(--button-size);
    line-height: var(--button-line-height);
    font-family: var(--button-font-family);
    color: var(--neutrals-white);
    font-weight: var(--button-weight);
    text-transform: capitalize;
}

.btn-grad::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(107.9deg, #424598 15.19%, #82227A 85.19%);
    opacity: 0;
    transition: opacity 5s ease-in-out;
    z-index: 0;
}

.btn-grad:hover::before {
    opacity: 1;
}

.btn-grad {
    z-index: 1;
}

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

.btn-blue:hover {
    background: var(--accents-1);
    border-color: var(--accents-1);
    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(--neutrals-light-grey);
    background-color: var(--neutrals-light-grey);
    background: var(--neutrals-light-grey);
    color: var(--neutrals-black)
}

.btn-white:hover {
    background: var(--neutrals-medium-grey);

    color: var(--neutrals-black);
    border-color: var(--neutrals-medium-grey);
}

.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);
}
.play-btn{
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000938;
    border-radius: 100%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

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

.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-2);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: unset;
}

.contact-description p, .row-footer-a .contact-description a {
    color: var(--main-brand);
}

.contact-description i.bi {
    font-size: 20px;
    color: var(--main-brand);
}

footer .contact-description i.bi {
    color: var(--main-brand);
    font-size: 20px;
}

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

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

h3 .accordion-button:not(.collapsed) {
    color: var(--neutrals-black);
}

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

.bg-dark-c {
    background-color: #000938;
}

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

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

.wpcf7-form textarea {
    border-radius: 8px;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    font-family: var(--paragraph-font-family);
    font-size: var(--paragraph-size);
    font-weight: var(--paragraph-weight);
    line-height: var(--paragraph-line-height);
    color: var(--neutrals-dark-grey);
    opacity: 1;
}

.wpcf7-form input:focus,
.wpcf7-form input:active,
.wpcf7-form textarea:active,
.wpcf7-form textarea:focus {
    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);
    border-radius: var(--border-radius-interactives);
    width: auto;
}

.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:1400px) {
    .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(max-width:1300px) and (min-width:991px) {
    .swiper-header {
        max-width: 45%;
        bottom: 0;
        display: none;
    }
}

@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: 400;
        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: 400;
    }

    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;
    border-radius: var(--border-radius-cards);
}

.el-video .iframe-wrapper iframe {
    border-radius: var(--border-radius-cards);
    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: contain;*/
    object-fit: cover;
}





/* 
.swiper-slide {
    height: auto;
    opacity: 0.3;
}
.swiper-slide.swiper-slide-active{
    opacity: 1;
} */
.arrow-pag {

    display: flex;
    justify-content: center;
    align-items: center;
}




.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-1 {
    background-color: var(--accents-1);
}

.bg-accent-1 * {
    color: var(--neutrals-white);
}

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

.bg-accent-1 .btn-white {
    color: var(--neutrals-black);
}

.text-grad {
    background: linear-gradient(103.77deg, #82227A 15.51%, #424598 31.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.form-div {
    box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    padding: 3rem;
    border-radius: 16px;
}

.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: 100px;
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px !important;
    border: 1px solid #f8f4f8;
}

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

.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.active {

} */

.navbar-nav .nav-item.current_page_item .nav-link {
    color: var(--main-brand);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 10px;
}

.navbar-nav .nav-item.active .sub-menu .menu-item .nav-link {
    text-decoration: unset;
    color: var(--neutrals-black);
}

/* .navbar-expand-xxl .navbar-nav {
    gap: 8px;
} */

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

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

.number-header {
    color: var(--accents-1);
    font-family: var(--button-font-family);
    font-size: var(--button-size);
    line-height: var(--button-size);
    font-weight: var(--button-weight);
}

.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.menu-item-has-children .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.menu-item-has-children .nav-link::after {
    filter: invert(1);
}

.nav-item.menu-item-has-children:hover .nav-link::after {
    transform: rotate(180deg);
}

.nav-item.menu-item-has-children .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.menu-item-has-children:hover .sub-menu {
    display: flex;
    border-radius: 0;
}

.nav-item .sub-menu .nav-link {
    color: var(--neutrals-black);
    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;
}

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

.el-text-image ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    width: 4px;
    height: 4px;
    background-color: var(--neutrals-black);
    border-radius: 50px;
    display: block;
    transform: translateY(-50%);
    top: 50%;
}

.el-text-image .ul-done ul li {
    padding-left: 2rem;
}

.el-text-image .ul-done ul li::before {
    width: 14px;
    height: 10px;
    background-image: url(../assets/icons/done-svg.svg);
    background-color: unset;
}

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

.p-32px-64px {
    padding: 32px 32px 32px 64px;
    ;
}

.p-48px {
    padding: 48px;
}

.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;
}
.div-img-head {
    position: absolute;
    right: 0;
    aspect-ratio: 1;
    max-width: 50%;
}
.div-img-head > img {
    margin-top: 10vh;
}

.swiper-header {
    position: absolute;
    right: 0;
    aspect-ratio: 1;
    max-width: 50%;
}

.img-head-port {
    aspect-ratio: unset;
    width: 100%;
}

.bt-lg-1 {
    border-top: 1px solid var(--neutrals-light-grey);
    padding-top: 16px;
}

.hover-i {
    width: 44px;
    height: 44px;
    background: linear-gradient(107.9deg, #82227A 15.19%, #424598 85.19%);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-sl {
    background-color: var(--neutrals-light-grey);
    border-radius: 50px;
    padding: 4px 4px 4px 16px;
    display: flex;
    font-family: var(--button-font-family);
    line-height: var(--button-line-height);
    font-size: var(--button-size);
    font-weight: var(--button-weight);
    color: var(--neutrals-black);
    align-items: center;
    gap: 16px;
    justify-content: space-between;
    max-width: 175px;
    width: 100%;
    transition: max-width 0.3s ease-in-out;
}

.btn-sl.js-read-more {
    max-width: 100%;
    width: auto;
}

.card-white-proj .btn-sl {
    max-width: 168px;
}

.btn-sl:hover,
.slider-wh:hover .btn-sl,
.card-white-proj:hover .btn-sl {
    max-width: 100%;
    opacity: 1;
}

.btn-sl .hover-i img {
    transition: all 0.3s ease-in-out;
    transform: rotate(0);
}

.btn-sl:hover .hover-i img,
.slider-wh:hover .btn-sl .hover-i img,
.card-white-proj:hover .btn-sl .hover-i img {
    transform: rotate(45deg);
}

.card-white-proj {
    cursor: pointer;
}

.card-white-proj .btn-sl {
    background-color: var(--neutrals-white);
}

.slider-wh {
    background-color: var(--neutrals-white);
    padding: 32px;
    border-radius: 16px;
}

.cat-acc {
    padding: 12px 16px;
    border-radius: var(--border-radius-interactives);
    border: 1px solid var(--neutrals-white);
    cursor: pointer;
}

.cat-acc h4 {
    text-transform: uppercase;
}

.cat-acc.active {
    background-color: var(--main-brand);
    border-color: var(--main-brand);
}

.text-black-i * {
    color: var(--neutrals-black);
}

.text-black-i h3 {
    margin-bottom: 2rem;
    color: var(--accents-1);
}

.text-black-i p:last-of-type {
    margin-bottom: 0;
}

.text-darkgrey {
    color: var(--neutrals-dark-grey);
}

.br-cards-top {
    border-radius: 16px 16px 0 0;
}

.img-card-proj {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.img-card-proj img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.card-white-proj:hover .img-card-proj img {
    transform: scale(1.1);
}

.card-white-proj {
    background-color: var(--accents-2);
    color: initial !important;
    opacity: 1 !important;
}

.card-white-proj * {
    color: var(--neutrals-black);
}

.arrow-left-s2,
.arrow-right-s2 {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-color: var(--neutrals-light-grey);
    border-radius: 50px;
    cursor: pointer;
}

.bg-grad {
    background: linear-gradient(107.9deg, #82227A 15.19%, #424598 85.19%);
    position: relative;
    z-index: 1;
    margin-bottom: -8rem;
}

.pt-9rem {
    padding-top: 9rem !important;
}

.bg-grad * {
    color: var(--neutrals-white);
}

.mailch {
    display: flex;
    align-items: center;
}

.mailch input {
    border: 1px solid var(--neutrals-light-grey);
    padding: 15px 24px;
    border-radius: var(--border-radius-interactives);
    min-width: 330px;
}

.mailch button {
    background: linear-gradient(107.9deg, #82227A 15.19%, #424598 85.19%);
    padding: 12px 24px;
    border-radius: var(--border-radius-interactives);
    font-family: var(--button-font-family);
    font-size: var(--button-size);
    line-height: var(--button-line-height);
    font-weight: var(--button-weight);
    color: var(--neutrals-white);
    height: 60px;
    border: unset;
}

ul.footer-menu {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.footer-menu .footer-list-a a {
    color: var(--neutrals-black);
}

.btn-parnt {
    background: rgba(248, 244, 248, 0.14);
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-parnt span {
    margin-bottom: 0;
    font-family: var(--button-font-family);
    font-size: var(--button-size);
    line-height: var(--button-line-height);
    font-weight: var(--button-weight);
    color: var(--neutrals-white);

}

.fig-bottom {
    position: absolute;
    bottom: -1px;
    width: 100%;
    left: 0;
    z-index: 1;
    height: auto;
}
.host-svg{
    bottom: unset;
    bottom: calc(100% - 2px);
}

.mySwiper .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mySwiper .swiper-slide .slider-wh {
    height: 100%;
}

.neem-con a{
 color: var(--accents-3);
    font-family: var(--link-font-family);
    font-size: var(--link-size);
    line-height: var(--link-line-height);
    font-weight: var(--font-weight-bold);
}
.neem-con p{
    color: var(--neutrals-white);
}

.mb-minus-1 {
    margin-bottom: -1px;
}



.col-6-form {
    margin-top: -7rem;
    position: relative;
    z-index: 1;
}

.row-footer-a a {
    color: var(--neutrals-black);
    font-family: var(--link-font-family);
    font-size: var(--link-size);
    line-height: var(--link-line-height);
}

.footer-line-bootom a {
    color: var(--neutrals-dark-grey);
    font-family: var(--link-font-family);
    font-size: var(--link-size);
    font-weight: 400;
    line-height: var(--link-line-height);
}

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

.list-tags .tag {
    font-family: var(--desktop-h6-font-family);
    font-size: var(--desktop-h6-size);
    line-height: var(--desktop-h6-line-height);
    font-weight: var(--font-weight-semibold);
    color: var(--accents-1);
    padding: 12px 16px;
    border-radius: var(--border-radius-interactives);
    background-color: var(--accents-2);
}

.img-small {
    aspect-ratio: 1;
    max-width: 163px;
    transform: rotate(15deg);
    border-radius: var(--border-radius-cards);
    position: absolute;
    right: 3rem;
    bottom: -2rem;
}

.number-info h3 {
    font-family: var(--desktop-h1-font-family);
    font-size: 93px;
    font-weight: 400;
    line-height: 116px;
    color: var(--accents-1);
    margin-bottom: 0;
}

.number-info h5 {
    text-transform: uppercase;
}

.col-6-info {
    display: flex;
    justify-content: end;
    gap: 64px;
    align-items: start;
}

.col-6-info .number-info {
    display: flex;
    flex-direction: column;
    width: max-content;
}

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

.member-team h3 {
    color: black;
}

.member-team p {
    color: var(--neutrals-black);
}

.member-team .member-img {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: top;
    /* max-width: 306px; */
    transition: all 0.3s ease-in-out;
}

.member-team:hover .member-img {
    max-width: 96px;
}

.member-team .member-hide {
    height: 100%;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.member-team:hover .member-hide {
    max-height: 170px;
    opacity: 1;
}

.card-white-part {
    background-color: var(--neutrals-white);
}

.card-white-part .img-par-logo {
    max-width: 172px;
    height: 110px;
    object-fit: contain;
}

.date-div {
    border-radius: 100px;
    background-color: var(--accents-2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 4px 12px;
    width: max-content;
}

.date-div i.bi {
    font-size: 14px;
}

.date-div p {
    color: var(--main-brand);
}

.span-time {
    padding-top: 4px;
    padding-bottom: 4px;
    display: flex;
    gap: 8px;
    align-items: start;
}

.span-time i.bi {
    font-size: 16px;
    color: var(--main-brand);
}

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

.bx-sh-con {
    border: 1px solid var(--neutrals-light-grey);
    box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
}

.contact-hr {
    background: linear-gradient(103.77deg, #82227A 15.51%, #424598 31.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-size: var(--desktop-h5-size);
    font-weight: var(--font-weight-bold);
    line-height: var(--desktop-h5-line-height);
    font-family: var(--desktop-h5-font-family);

}

.bx-sh-con i.bi {
    font-size: 30px;
}

.img-box-contact {
    aspect-ratio: 1;
    max-width: 162px;
    border-radius: var(--border-radius-cards);
    transform: rotate(15deg);
    position: absolute;
    bottom: -2rem;
    right: -2rem;
}
.wpcf7 form .wpcf7-response-output{
    border-color: #000939;
}
.wpcf7 form.failed .wpcf7-response-output{
        border-color: #000939;
}


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


    .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;
        display: none;
    }
}

@media(max-width:1199px) {
    .nav-item .sub-menu {
        position: relative;
        display: flex;
        flex-direction: column;
        background: unset;
        box-shadow: unset;
        padding: 0;
    }

    .nav-item.menu-item-has-children .nav-link::after {
        display: none;
    }

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

}

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

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

    .pb-6rem {
        padding-bottom: 6rem !important;
    }
    .mt-6rem{
        margin-top: 6rem !important;
    }
}

@-webkit-keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.slider {
    padding: 50px;
    height: 200px;
    overflow: hidden;
    margin: auto;
    position: relative;
    width: 100%;
}

/* .slider::before, .slider::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    padding: 50px;
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
  } */
.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.slider .slide {
    height: 138px;
    width: 217px;
    margin-right: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider .slide img {
    max-width: 100%;
    width: auto;
    object-fit: contain;
    height: 100%;
}

@media screen and (max-width: 720px) {
    .slider img {
        width: auto;
    }
}

.card-desc {
    overflow: hidden;
}

/* сам текст */
.card-desc__text {
    margin: 0;
    /* щоб не було зайвих відступів */
    display: -webkit-box;
    -webkit-box-orient: vertical;

    -webkit-line-clamp: 3;
    /* СКІЛЬКИ РЯДКІВ показувати по дефолту */
    overflow: hidden;

    /* опціонально: щоб слова нормально переносились */
    word-break: break-word;
}

/* стан "відкрито" */
.card-desc.is-expanded {
    overflow: visible;
}

/* коли відкрито — прибираємо обрізання */
.card-desc.is-expanded .card-desc__text {
    -webkit-line-clamp: unset;
    overflow: visible;
    display: block;
    /* важливо, щоб текст став звичайним блоком */
}



/* (опціонально) якщо хочеш щоб кнопка була інлайн і не ламала верстку */
.btn-sl.js-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 2rem;
}



.masked-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    -webkit-mask-image: url("../assets/masks/blob03.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-mode: alpha;
    display: block;
}
.masked-image.mask-1{
    -webkit-mask-image: url("../assets/masks/blob01.svg");
}
.masked-image.mask-2{
    -webkit-mask-image: url("../assets/masks/blob02.svg");
}
.masked-image.mask-3{
    -webkit-mask-image: url("../assets/masks/blob03.svg");
}
.masked-image.mask-4{
    -webkit-mask-image: url("../assets/masks/blob04.svg");
}
.masked-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}





.swiper-header .swiper-slide{
    position: relative;
}
.div-img-head img{
    border-radius: 50% 0 0 0;
}
.swiper-header .swiper-slide::before, .div-img-head::before{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(0, 9, 56, 0) 0%, #000938 90%);
        z-index: 1;
}
.swiper-header .swiper-slide img {
    width: 100%;
    border-radius: 50% 0 0 0;
}

.slider-wh .img-hover-wh {
    position: absolute;
    aspect-ratio: 1;
    object-fit: cover;
    max-width: 102px;
    border-radius: var(--border-radius-cards);
    top: -1rem;
    right: 1rem;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.slider-wh:hover .img-hover-wh {
    opacity: 1;
    max-width: 120px;
    transform: rotate(15deg);
    top: -2rem;
    right: 1rem;
}

.mySwiper {
    overflow: visible;
}
.h5-upper h5{
text-transform: uppercase;
}
.mb-p-0 p {
    margin-bottom: 0;
}
.h4-uppercase h4{
text-transform: uppercase;
}
.h4-semibold h4{
font-weight: 600;
}
.h2-mb4 h2{
    margin-bottom: 1.5rem;
}
.fs-text p{
    margin-bottom: 1.5rem;
}
.fs-text h5{
    margin-bottom: 3rem;
     background: linear-gradient(103.77deg, #82227A 15.51%, #424598 31.3%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}
.fs-text h4{
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.h5-upper-p-mb-4 h5{
    text-transform: uppercase;
}
.h5-upper-p-mb-4 p{
    margin-bottom: 1.5rem;
}

@media(max-width:1200px) {
    .navbar .container-head {
        border-radius: 30px;
    }

    .img-head-port {
        display: none;
    }
}

@media(max-width:991px) {
    .swiper-header {
        position: relative;
        max-width: 100%;
        /* display: none; */
    }

    .cat-acc {
        text-align: start;
    }

    ul.footer-menu {
        flex-direction: column;
        align-items: center;
    }

    .col-6-form {
        margin-top: 2rem;
    }

    .btn-parnt {
        width: 100%;
        justify-content: center;
    }

    .btn {
        width: 100%;
    }

    .bg-grad .row {
        row-gap: 1.5rem;
    }

    .col-6-info {
        justify-content: start;
    }
    .container-over{
            margin-top: -4rem;
    z-index: 11;
    }
    .wpcf7-form input[type=submit]{
        width: 100%;
    }
    .p-32px-64px{
        padding: 24px;
    }
    .swiper-header .swiper-slide::after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(0, rgba(0, 9, 56, 0) 0%, #000938 90%);
}
}

@media(max-width:768px) {
    .mailch {
        flex-wrap: wrap;
    }

    .mailch input,
    .mailch button {
        width: 100%;
        min-width: unset;
    }

    .form-div {
        padding: 2rem;
    }
}
@media(min-width:1200px){
    .img-head-port{
        min-height: 100%;
        object-fit: cover;
    }
}