/* Table of Content
==================================================
	#Font-Face
	#Site Styles
	#Media Queries */

/* #Font-Face
================================================== */


/* #Site Styles
================================================== */

:root {
    --width-base: 1280px;
    --width-fluid: 1344px;
    --font-size-base: 1rem;
    --color-white-default: #fff;
    --color-white-600: #e8e8e8;
    --color-white-700: #b5b5b5;
    --color-white-800: #8c8c8c;
    --color-white-900: #6b6b6b;
    --color-black-50: #e6e6e6;
    --color-black-100: #b0b0b0;
    --color-black-200: #8a8a8a;
    --color-black-300: #545454;
    --color-black-400: #333333;
    --color-black-default: #000;
    --color-blue-50: #e6ecf1;
    --color-blue-100: #b0c4d2;
    --color-blue-200: #8aa7bc;
    --color-blue-300: #547f9e;
    --color-blue-400: #33668b;
    --color-blue-default: #00406e;
    --color-blue-600: #003a64;
    --color-blue-700: #002d4e;
    --color-blue-800: #00223d;
    --color-blue-900: #001b2e;
    --color-orange-50: #fef2e9;
    --color-orange-100: #fad5ba;
    --color-orange-200: #f8c198;
    --color-orange-300: #f5a569;
    --color-orange-400: #f3934c;
    --color-orange-500: #f0781f;
    --color-orange-600: #da6d1c;
    --color-orange-700: #aa5516;
    --color-orange-800: #844211;
    --color-orange-900: #65320d;
    --color-light-blue-50: #eef2f6;
    --color-light-blue-100: #ccd7e3;
    --color-light-blue-200: #b3c3d6;
    --color-light-blue-300: #90a8c3;
    --color-light-blue-400: #7a97b8;
    --color-light-blue-default: #597da6;
    --color-light-blue-600: #517297;
    --color-light-blue-700: #3f5976;
    --color-light-blue-800: #31455b;
    --color-light-blue-900: #253546;
    --color-light-orange-50: #fff7ee;
    --color-light-orange-100: #fde5ca;
    --color-light-orange-200: #fdd8b0;
    --color-light-orange-300: #fcc78c;
    --color-light-orange-400: #fbbf6c;
    --color-light-orange-500: #faab54;
    --color-light-orange-600: #e49c4c;
    --color-light-orange-700: #b2793c;
    --color-light-orange-800: #8a5e2e;
    --color-light-orange-900: #694823;
    --color-grey: #3a3a3;
    --color-grey-medium: #333;
    --color-green: #60B22E;
    --color-grey-dark: #444;
    --color-sl-blue-400: #EBEBEB;
    --color-medium-orange: #F9AA54;
    --color-dark-orange: #EF771E;
    --font-family-base: 'Plus Jakarta Sans', sans-serif;
    --font-family-plume: 'Plume', sans-serif;
    --line-height-base: 1.65;
    --font-size-h1: 2.25rem;
    --font-size-h2: 2rem;
    --font-size-h3: 1.75rem;
    --font-size-h4: 1.563rem;
    --font-size-h5: 1.25rem;
    --font-size-h6: 1.125rem;
    --line-height-heading: 1.1;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --width: 100%;
    --height: 100%;
    --duration: all .31s ease-in-out;
    --space-left: 1rem;
    --space-right: 1rem;
    --gentle-spring: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ### general ### */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    color: var(--color-black-default);
    font-size: var(--font-size-base);
    font-family: var(--font-family-base);
    line-height: var(--line-height-base);
    font-weight: var(--font-weight-normal);
    background-color: var(--color-white-default);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.is-menu-open {
    overflow: hidden;
}

input,
select,
textarea {
    padding: 12px 19px;
    position: relative;
    width: var(--width);
    font-size: 0.938rem;
    font-family: var(--font-family-base);
    color: var(--color-blue-default);
    background-color: var(--color-white-default);
    min-height: 42px;
    border: 1px solid rgba(12, 85, 68, 0.15);
}

input:focus,
textarea:focus {
    border: 1px solid var(--color-black-default);
}

textarea {
    height: 150px;
}

textarea::placeholder,
input::placeholder {
    color: rgba(12, 85, 68, 0.15);
}

img {
    display: block;
    border: 0;
    height: auto;
    max-width: var(--width);
}

ul,
li {
    list-style-position: outside;
}

:focus {
    outline: none;
}

p {
    margin-bottom: 20px;
}

a {
    transition: var(--duration);
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 20px;
    font-family: var(--font-family-plume);
    color: var(--color-blue-default);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-heading);
}

h1,
.h1 {
    font-size: var(--font-size-h1);
}

h2,
.h2 {
    font-size: var(--font-size-h2);
}

h3,
.h3 {
    font-size: var(--font-size-h3);

    @media (width < 768px) {
        font-size: 1.25rem;
    }
}

h4,
.h4 {
    font-size: var(--font-size-h4);
}

h5,
.h5 {
    font-size: var(--font-size-h5);
}

h6,
.h6 {
    font-size: var(--font-size-h6);
}

.rte {
    a {
        text-decoration: underline;
        text-decoration-color: var(--color-orange-500);
        text-decoration-thickness: 7%;
        text-underline-offset: auto;
        text-underline-position: from-font;
        color: inherit;
    }

    ol {
        margin-left: 1.1rem;
        margin-bottom: 25px;
        padding-top: 2px;

    }

    ul {
        margin-left: 1.1rem;
        margin-bottom: 25px;
        padding-top: 2px;

        li {
            line-height: 1.6;
            position: relative;
            list-style: none;
            margin-bottom: 1px;

            &::marker {
                display: none;
            }

            &::before {
                content: '';
                position: absolute;
                top: 11px;
                left: -13px;
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background-color: var(--color-black-default);
            }
        }
    }

    h1,h2,h3,h4,h5,h6 {
        + ul {
            padding-top: 0 !important;
        }
    }

    p {
        margin-bottom: 23px;
    }
}

/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

/* ### global classes ### */
.clear {
    visibility: hidden;
    clear: both;
    height: 0;
    line-height: 0;
}

.centered-fluid,
.centered {
    padding-right: var(--space-right);
    padding-left: var(--space-left);
}

/* ### button ### */
.button {
    font-size: 0.938rem;
    padding: 5px 18px;
    color: var(--color-white-default);
    display: inline-flex;
    align-items: center;
    background-color: var(--color-orange-500);
    border-radius: 8px;
    min-height: 46px;
    text-decoration: none;
    font-family: var(--font-family-base);
    font-weight: var(--font-weight-semibold);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -103px;
    background-color: rgba(from var(--color-orange-500) r g b / 0.50);
    width: 150px;
    height: 150px;
    mix-blend-mode: multiply;
    border-radius: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: -1;
    margin-top: 5px;
    transition: var(--duration);
}

.button span {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 23px;
    overflow: hidden;
    margin-right: -10px;
    position: relative;
}

.button span svg {
    fill: var(--color-medium-orange);
    position: absolute;
    transition: var(--duration);
}

.button span svg.arrow-left {
    transform: translateX(-50px);
    opacity: 0;
}

.button:focus:after,
.button:hover:after {
    width: calc(100% + 206px);
    background-color: rgba(240, 120, 31, 0.50);
    border-radius: 0;
}

.button:focus span svg.arrow-right,
.button:hover span svg.arrow-right {
    transform: translateX(50px);
    opacity: 0;
}

.button:focus span svg.arrow-left,
.button:hover span svg.arrow-left {
    transform: translateX(0);
    opacity: 1;
}

.button-portal {
    font-size: 0.938rem;
    color: var(--color-orange-500);
    padding: 5px 29px 5px 17px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    background-color: var(--color-light-orange-50);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    position: relative;
    overflow: hidden;
}

.button-portal span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 37px;
    position: relative;
    width: 14px;
    height: 25px;
}

.button-portal span svg {
    fill: var(--color-dark-orange);
    position: absolute;
    transition: all 0.2s ease-in-out;
}

.button-portal:before {
    width: 150px;
    height: 150px;
    position: absolute;
    top: 50%;
    left: -105px;
    border: 1px solid var(--color-orange-200);
    border-radius: 100%;
    transform: translateY(-50%);
    content: '';
    pointer-events: none;
}

.button-flip {
    padding: 7px 20px 7px 54px;
    display: inline-flex;
    position: relative;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-black-default);
    border: 1px solid var(--color-white-600);
    border-radius: 8px;
    text-decoration: none;
    overflow: hidden;
    background-color: var(--color-white-default);
    overflow-y: clip;

    &:before {
        width: 100px;
        height: 100px;
        position: absolute;
        top: 50%;
        left: -60px;
        border: 1px solid var(--color-white-600);
        border-radius: 100px;
        transform: translateY(-50%);
        content: '';
        pointer-events: none;
    }

    &:hover, &:focus {
        span {
            transform: translateY(-32px);

            &:after {
                transform: translateY(32px);
            }
        }
    }

    em {
        font-style: normal;
        display: inline-block;
    }

    span {
        margin: 0;
        position: relative;
        display: inline-block;
        transition: var(--gentle-spring);
        transition-duration: 0.31s;
        height: auto;

        &:after {
            content: attr(data-title);
            position: absolute;
            top: 0;
            left: 0;
            transition: var(--gentle-spring);
            transition-duration: 0.31s;
            transform: translateY(32px);
        }
    }
}

.button-flip i {
    position: absolute;
    top: 50%;
    left: 13px;
    transform: translateY(-50%);
}

.button.no-button {
    padding: 0;
    min-height: 0;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.938rem;
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    color: var(--color-black-default);
    background-color: transparent;
    transition: var(--duration);
}

.button.no-button:after {
    display: none;
}

.button.no-button i {
    margin-right: 16px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    border-radius: 8px;
    background-color: var(--color-orange-500);
    overflow: hidden;
}

.button.no-button i:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 41px;
    height: 41px;
    background-color: var(--color-medium-orange);
    content: '';
    transition: var(--duration);
    border-radius: 40px;
    transform: translate(-35px, 35px);
}

.button.no-button svg {
    position: relative;
    z-index: 1;
    transition: var(--duration);
}

.button.no-button svg.without-hover {
    fill: var(--color-medium-orange);
    transform: translateX(-4px)
}

.button.no-button svg.is-hover {
    fill: var(--color-orange-500);
    transform: translateX(-50px);
}

.button.no-button span {
    margin: 0;
    width: auto;
    height: auto;
    display: inline-block;
    transition: var(--duration);
    overflow: inherit;
}

.button.no-button:focus i:before,
.button.no-button:hover i:before {
    border-radius: 8px;
    transform: translate(0);
}

.button.no-button:focus svg.without-hover,
.button.no-button:hover svg.without-hover {
    transform: translateX(50px);
}

.button.no-button:focus svg.is-hover,
.button.no-button:hover svg.is-hover {
    transform: translateX(4px);
}

.button.no-button:focus span,
.button.no-button:hover span {
    transform: translateX(-5px);
}

.button.no-button.white {
    color: var(--color-white-default);
}

.button.no-button.white i {
    border: 1px solid var(--color-blue-200);
    background-color: transparent;
}

.button.no-button.white svg.without-hover,
.button.no-button.white svg.is-hover {
    fill: var(--color-blue-200);
}

.button.no-button.white i:before {
    display: none;
}

.button.no-button.blue i {
    background-color: var(--color-blue-default);
}

.button.no-button.blue svg.without-hover {
    fill: var(--color-blue-200);
}

.button.no-button.blue svg.is-hover {
    fill: var(--color-blue-default);
}

.button.no-button.blue i:before {
    background-color: var(--color-blue-200);
}

.button-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-orange-500);
    border-radius: 6px;
    border: none;
    pointer-events: none;
}

.button-arrow svg {
    margin-right: 0 !important;
}

.button-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.938rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-black-default);
    text-decoration: none;
    overflow: hidden;
    transition: var(--duration);
}

.button-link i {
    display: inline-block;
    transform: translateY(1px);
    /*transition: var(--duration);*/
    transition: var(--gentle-spring);
}

.button-link i.on-hover {
    margin-right: 14px;
    margin-left: 0;
}

.button-link i.without-hover {
    margin-left: 14px;
    opacity: 0;
    visibility: hidden;
}

.button-link:focus i.on-hover,
.button-link:hover i.on-hover {
    margin-left: -34px;
}

.button-link:focus i.without-hover,
.button-link:hover i.without-hover {
    opacity: 1;
    visibility: visible;
}

/* ### mfp ### */
.mfp-container {
    height: auto;
}

/* mfp animation */
.mfp-slide-from-top .mfp-content {
    transform: translateY(-200px);
    opacity: 0;
    transition: all .4s ease-out;
}

.mfp-slide-from-top.mfp-ready .mfp-content {
    transform: translateY(0);
    opacity: 1;
}

.mfp-slide-from-top.mfp-removing .mfp-content {
    transform: translateY(-100px);
    opacity: 0;
}

/* ### wrapper ### */
.wrapper {
    position: relative;
    display: block;
    width: var(--width);
    min-height: 100%;
    overflow-x: clip;
}

/* ### usps ### */
.usps {
    padding-top: 16px;
    padding-bottom: 16px;
    color: var(--color-blue-200);
    font-size: 0.875rem;
    position: relative;
    background-color: var(--color-blue-default);
    padding-inline: 3rem;

    @media (width < 768px) {
        padding-inline: 1rem;
    }
}

.usps-block {
    position: relative;
    padding-right: 10%;
    line-height: 1.3;
}

.usps p strong {
    font-size: 1rem;
    color: var(--color-white-default);
    font-family: var(--font-family-plume);
    font-weight: var(--font-weight-bold);
    margin-right: 12px;
    display: block;
}

.usps p a {
    color: var(--color-blue-200);
}

.usps p a:hover {
    text-decoration: none;
}

.usps p:last-of-type {
    margin-bottom: 0;
}

.usps .button-close {
    width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--color-blue-400);
    border: 0;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.usps .button-close svg {
    fill: var(--color-white-default);
}

/* ### header ### */
.header {
    padding-top: 16px;
    padding-bottom: 16px;
    position: fixed;
    width: var(--width);
    transition: var(--duration);
    z-index: 11;
    background-color: var(--color-white-default);
    border-radius: 0 0 25px 25px;

    &.centered-fluid {
        @media (width > 1440px) {
            padding-inline: 3rem;
        }
    }
}

.header-wrap {
    margin: 0 auto;
    max-width: 1344px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.header:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: var(--width);
    height: var(--height);
    background-color: var(--color-white-default);
    border-radius: 0 0 25px 25px;
    z-index: -1;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    display: none;
}

.header-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.header-logo {
    width: 119px;
}

.header-search {
    margin-top: 2px;
    margin-left: 15px;
    padding-left: 15px;
    position: relative;
    display: none;
}

.header-search:before {
    content: '';
    position: absolute;
    top: 52%;
    left: 0;
    width: 1px;
    height: calc(100% - 10px);
    background-color: rgba(0, 0, 0, .10);
    transform: translateY(-50%);
}

.header-search .button-search {
    color: var(--color-green);
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 0;
    background-color: var(--color-blue-50);
    cursor: pointer;
    transition: var(--duration);
}

.header-search .button-search svg {
    fill: var(--color-blue-default);
    transition: var(--duration);
}

.header-search .button-search:focus svg,
.header-search .button-search:hover svg {
    fill: var(--color-white-default);
}

.header-search .button-search:focus,
.header-search .button-search:hover {
    background-color: var(--color-orange-500);
}

.header-right {
    padding: 100px 16px 0 16px;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--width);
    height: 100vh;
    overflow-y: scroll;
    background-color: var(--color-orange-50);
    z-index: -1;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    opacity: 0;
    visibility: hidden;
    transition: var(--duration);
}

.header-right .card-search {
    margin-bottom: 15px;
}

.header-right .card-search input {
    padding: 10px 58px 10px 23px;
    font-size: 0.875rem;
}

.header-button {
    padding-top: 21px;
    padding-bottom: 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    margin-top: auto;
    width: var(--width);
}

.header-button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% + 32px);
    height: var(--height);
    background-color: var(--color-white-default);
    z-index: -1;
    pointer-events: none;
    border-radius: 16px 16px 0 0;
    margin-left: -16px;
}

.header.sticky {
    padding-top: 10px;
    padding-bottom: 10px;
    position: fixed;
    top: 0;
    left: 0;

    @media (width < 767px) {
        padding-top: 16px;
        padding-bottom: 16px;
    }
}

.header.sticky .header-logo {
    width: 112px;
}

.header.sticky .header-hamburger {
    top: 12px;

    @media (width < 767px) {
        top: 19px;
    }
}

.header-result {
    padding: 8px 10px;
    font-size: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-blue-50);
    border-radius: 10px;
    font-weight: var(--font-weight-medium);
}

.header-result-left {
    max-width: 290px;
    width: var(--width);
    margin-right: 10px;
    display: none;
}

.header-result-link {
    display: none;
    flex-wrap: wrap;
    list-style: none;
}

.header-result-link li a {
    text-decoration: none;
    color: var(--color-black-default);
}

.header-result-link li a.is-active,
.header-result-link li a:focus,
.header-result-link li a:hover {
    color: var(--color-blue-200);
    font-weight: var(--font-weight-semibold);
}

.header-result-link li:not(:last-child) {
    margin-right: 10px;
}

.header-result-link li:first-child {
    padding-right: 6px;
    position: relative;
}

.header-result-link li:first-child:after {
    content: '';
    position: absolute;
    top: -1px;
    right: -2px;
    width: 1px;
    height: calc(100% + 3px);
    background-color: var(--color-blue-100);
}

.mobile-header-result {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    button {
        padding: 8px 10px;
        color: var(--color-white-default);
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-family-base);
        font-weight: var(--font-weight-semibold);
        border: 0;
        border-radius: 10px;
        text-align: center;
        appearance: none;
        background: var(--color-blue-default);
        background-repeat: no-repeat;
        background-size: 10px 7px;
        background-position: center right 70px;
        position: relative;
        width: 100%;

        &::after {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 70px;
            width: 10px;
            height: 7px;
            background-image: url('../images/select-arrow.svg');
            display: block;
            pointer-events: none;
            transition: var(--duration);
        }
    }

    &.is-active {
        button:after {
            transform: translateY(-50%) rotate(180deg);
        }

        ul {
            pointer-events: auto;
        }
    }

    .header-result-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        width: 100%;
        height: 0;
        opacity: 0;
        pointer-events: none;
        padding-block: 0;

        li {
            width: 100%;
            display: flex;
            justify-content: center;

            &:not(:last-child) {
                margin-right: 0;
            }

            &:first-child {
                padding-right: 0;
                padding-bottom: 24px;

                &:after {
                    width: 100%;
                    height: 1px;
                    background-color: var(--color-blue-100);
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    right: 0;
                    top: auto;
                    /*transform: none;*/
                    max-width: 298px;
                }
            }

            a {

            }
        }
    }
}

.header-result-hidden {
    list-style: none;
    text-align: center;
}

.header.inner .header-wrap {
    margin-bottom: 16px;
}

.is-menu-open .header-right {
    opacity: 1;
    visibility: visible;
}

/* ### header-menu ### */
.header-menu {
    width: var(--width);
}

.header-menu ul {
    list-style: none;
}

.header-menu li {
    padding: 15px 0;
    font-size: 1.25rem;
    font-weight: var(--font-weight-medium);
    border-bottom: solid 1px rgba(0, 0, 0, .05);
    position: relative;
}

.header-menu li a {
    display: flex;
    color: var(--color-black-default);
    text-decoration: none;
    align-items: center;
}

.header-menu li a svg.caret-arrow {
    fill: var(--color-medium-orange);
    margin-left: 11px;
    display: none;
    transition: var(--duration);
}

.header-menu li a:hover,
.header-menu li a.is-active {
    color: var(--color-orange-500);
}

.header-menu li a.button-role svg {
    display: none;
    transition: var(--duration);
}

.header-menu li:hover a.button-role svg.caret-down,
.header-menu li:hover a svg.caret-arrow {
    transform: rotate(-180deg);
}

.header-menu li .header-menu-dropdown {
    display: none;
    margin-top: 17px;
}

.header-menu li .header-menu-sub {
    padding: 10px 20px;
    background-color: var(--color-white-default);
    border-radius: 20px;
    min-width: 294px;
}

.header-menu li ul {
    display: block;
}

.header-menu li li {
    padding: 0;
    font-size: 0.938rem;
    border-bottom: none;
}

.header-menu li li a {
    padding: 0;
    position: relative;
    display: inline-block;
    transition: var(--gentle-spring);
}

.header-menu li li a svg {
    margin: 0;
    fill: var(--color-blue-default);
    position: absolute;
    top: 6px;
    transition: var(--gentle-spring);
}

.header-menu li li a svg.arrow-left {
    left: -20px;
    opacity: 0;
    visibility: hidden;
}

.header-menu li li a svg.arrow-right {
    right: -35px;
}

.header-menu li li a:hover svg.arrow-left {
    left: 1px;
    opacity: 1;
    visibility: visible;
}

.header-menu li li a:hover svg.arrow-right {
    opacity: 0;
    visibility: hidden;
}

.header-menu li li a:focus,
.header-menu li li a:hover {
    padding-left: 38px;
    color: var(--color-black-default);
}

.header-menu li li:not(:last-child) {
    margin-bottom: 8px;
}

.header-menu-title {
    font-size: 1.25rem;
    color: var(--color-blue-default);
    font-family: var(--font-family-plume);
    font-weight: var(--font-weight-bold);
    letter-spacing: -1px;
    margin-bottom: 14px;

    @media (width < 768px) {
        font-size: 1rem;
    }
}

.header-mobile-arrow {
    position: absolute;
    top: 2px;
    right: -7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    min-height: 64px;
    transition: var(--duration);
}

.header-mobile-arrow.is-active {
    transform: rotate(-180deg);
}

.header-menu li .header-menu-dropdown.parent {
    max-width: 358px;
    width: 100vw;
}

.header-menu li .header-menu-dropdown.parent .header-menu-sub {
    padding: 16px 24px 15px 16px;
    max-width: 358px;
    border-radius: 15px;
}

.header-submenu-item:not(:last-child) {
    margin-bottom: 16px;
}

.header-menu-sub:not(:last-child) {
    margin-bottom: 16px;
}

.header-menu li a.card-agency {
    .button.no-button i {
        margin-right: 0;
    }

    &:hover, &:focus {
        i:before {
            transform: translate(0);
            border-radius: 8px;
        }

        svg.without-hover {
            transform: translateX(50px);
        }

        svg.is-hover {
            transform: translateX(14px);
        }
    }
}

/* ### header-hamburger ### */
.header-hamburger {
    position: absolute;
    top: 19px;
    right: 16px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    background-color: var(--color-orange-500);
    border: 0;
    transition: var(--duration);
    border-radius: 10px;
}

.header-hamburger span {
    position: relative;
    display: block;
    width: 15px;
    height: 2px;
    text-indent: -9999px;
    background: var(--color-white-default);
    transition: var(--duration);
    border-radius: 1px;
    margin-right: -5px;
}

.header-hamburger span:before,
.header-hamburger span:after {
    position: absolute;
    right: 0;
    display: block;
    width: var(--width);
    height: 2px;
    background-color: var(--color-white-default);
    transition: var(--duration);
    content: '';
}

.header-hamburger span:before {
    top: -6px;
    width: 19px;
}

.header-hamburger span:after {
    bottom: -7px;
    width: 8px;
}

.header-hamburger.active span {
    background: none;
    width: 19px;
    margin-right: 0;
}

.header-hamburger.active span:before,
.header-hamburger.active span:after {
    background-color: var(--color-white-default);
    transition-delay: 0s, 0.2s;
    width: var(--width);
}

.header-hamburger.active span:before {
    top: 0;
    transform: rotate(45deg);
}

.header-hamburger.active span:after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ### hero ### */
.hero {
    padding-top: 132px;
    padding-bottom: 186px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    background-color: var(--color-light-orange-500);
    min-height: 519px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-top: -80px;
}

.hero h1 {
    color: var(--color-white-default);
    letter-spacing: -2px;
    margin-bottom: 36px;
    font-size: 2.5rem;
    text-wrap: balance;

    @media (width < 768px) {
        font-size: 2rem;
    }
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--color-orange-100);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.1px;

    @media (width < 768px) {
        font-size: 1.125rem;;
    }
}

.hero-intro {
    width: var(--width);
    text-align: center;
    margin-bottom: 48px;
}

.hero-photo {
    width: 40%;
    margin-right: 20px;
    position: relative;
    display: none;
}

.hero-photo img {
    width: var(--width);
}

.hero-shape {
    position: absolute;
    top: -226px;
    left: 50%;
    z-index: -1;
    pointer-events: none;
    transform: translateX(-50%);
    margin-left: 468px;
    width: 853px;
}

.hero-shape img {
    width: var(--width);
}

.hero-plus {
    position: absolute;
    bottom: 20px;
    right: 5px;
    mix-blend-mode: multiply;
    width: 60px;
}

.hero-plus.medium {
    width: 41px;
    bottom: 54px;
    right: -45px;
}

.hero-plus.small {
    width: 27px;
    bottom: 9px;
    right: -25px;
}

.hero-plus img {
    width: var(--width);
}

.hero-shape-bottom {
    position: absolute;
    bottom: -51px;
    left: 0;
    width: var(--width);
    display: none;
}

.hero-shape-bottom img, .hero-shape-bottom svg {
    width: var(--width);
    height: 188px;
    object-fit: cover;
}

/* ### choose ### */
.choose {
    padding-top: 29px;
    padding-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    background-color: var(--color-orange-50);
    z-index: 1;
}

.choose-left {
    margin-top: -152px;
    width: var(--width);
    margin-bottom: 30px;
    display: none;
}

.choose-lead {
    padding: 5px 20px;
    font-size: 1rem;
    color: rgba(255, 255, 255, .50);
    font-weight: var(--font-weight-bold);
    background-color: var(--color-orange-500);
    border-radius: 6px 6px 0 0;
    display: inline-block;
    margin-left: 32px;
    letter-spacing: 0.2px;
}

.choose-column {
    padding: 16px 20px 44px 20px;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 10px;
    background-color: var(--color-white-default);
    overflow: hidden;
}

.choose-column-items {
    position: relative;
    width: var(--width);
    display: flex;
    flex-wrap: wrap;
}

.choose-column-items:not(:last-child):after {
    content: '';
    position: absolute;
    top: -16px;
    right: -20px;
    width: 1px;
    height: calc(100% + 61px);
    background-color: rgba(250, 171, 84, .15);
}

.choose-intro {
    max-width: 280px;
    width: var(--width);
    display: none;
}

.choose-title {
    color: var(--color-orange-500);
    font-weight: var(--font-weight-normal);
    line-height: 1.4;
    margin-bottom: 20px;
}

.choose-column-items:nth-child(2) .card-choose-photo {
    padding-left: 28px;
}

.choose-column-items:nth-child(3) .card-choose-photo {
    padding-left: 17px;
}

.choose-list {
    width: var(--width);
    margin-top: -215px
}

.choose-list-info {
    padding: 15px 23px 15px 15px;
    border: solid 1px var(--color-sl-blue-400);
    border-radius: 15px;
    background-color: var(--color-white-default);
}

.choose-list-item:not(:last-child),
.choose-list-info:not(:last-child) {
    margin-bottom: 16px;
}

/* ### result ### */
.result {
    padding-top: 87px;
    padding-bottom: 47px;
    background-color: var(--color-white-default);
    border-radius: 0 0 25px 25px;
    width: var(--width);
    position: relative;
    z-index: 1;
}

.result .card-search {
    margin-bottom: 34px;
}

.result .card-search input {
    padding-left: 23px;
    font-size: 0.875rem;
    height: 63px;
    border: solid 4px rgba(250, 171, 84, .15);
    box-shadow: 0 0 12px rgba(0, 0, 0, .05);
}

.result .card-search .button-submit {
    top: 10px;
    right: 10px;
    width: 43px;
    height: 43px;
    background-color: var(--color-orange-500);
}

.result .card-search .button-submit svg {
    fill: var(--color-white-default);
}

.result-holder {
    display: flex;
    flex-wrap: wrap;
}

.result-left {
    width: var(--width);
    margin-bottom: 30px;
}

.result-title {
    font-size: 1.688rem;
    color: var(--color-blue-default);
    font-family: var(--font-family-plume);
    font-weight: var(--font-weight-bold);
    letter-spacing: -1px;
    line-height: 1.3;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
}

.result-title svg {
    margin-left: 17px;
    margin-top: 1px;
}

.result-items {
    margin-bottom: 15px;

    .card-event {
        flex-direction: row;
    }
}

.result-text {
    padding: 15px 20px;
    font-size: 0.875rem;
    color: var(--color-black-default);
    border: solid 1px var(--color-black-50);
    font-weight: var(--font-weight-medium);
    border-radius: 15px;
    line-height: 1.45;
}

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

.result-right {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    flex: 1;
    width: var(--width);
}

.result-column {
    width: var(--width);
}

.result .mfp-close {
    color: var(--color-white-default);
    width: 40px;
    height: 40px;
    background-color: var(--color-orange-500);
    border-radius: 10px;
    border: 0;
    opacity: 1;
    position: absolute;
    top: 21px;
    left: 50%;
    transform: translateX(-50%);
}

/* ### about ### */
.about {
    padding-top: 43px;
    padding-bottom: 32px;
    background-color: var(--color-orange-50);
    position: relative;
}

.about-left {
    margin-bottom: 55px;
}

.about h2 {
    margin-bottom: 23px;
    font-size: 2.25rem;
    color: var(--color-orange-500);
    letter-spacing: -0.9px;
}

.about p {
    margin-bottom: 36px;
}

.about-right {
    position: relative;
}

.about-picture {
    position: relative;
}

.about-picture img {
    width: 100%;
}

.about-picture picture img {
    mask-image: url("/assets/templates/images/about-mask.svg");
    mask-repeat: no-repeat;
    mask-size: cover;
}

.about-plus {
    position: absolute;
    top: 52px;
    left: -15px;
    width: 86px;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.about-plus.medium {
    width: 36px;
    top: 32%;
    left: 27%;
}

.about-plus.small {
    width: 24px;
    top: 52%;
    left: 20.5%;
}

.about-plus img {
    width: var(--width);
}

.about-shape {
    position: absolute;
    top: -54px;
    right: -110px;
    width: 284px;
    pointer-events: none;
}

.about-shape img, .about-shape svg {
    width: var(--width);
}

/* ### news ### */
.news {
    padding-top: 53px;
    padding-bottom: 23px;
    background-color: var(--color-orange-50);
}

.news h2 {
    margin-bottom: 39px;
    color: var(--color-orange-500);
    text-align: center;
}

.news .swiper {
    overflow: visible;
}

.news-view-more {
    text-align: center;
}

.news-pagination {
    margin-bottom: 48px;
    padding-top: 28px;
    position: inherit;
}

/* ### banner ### */
.banner {
    padding-top: 80px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin-top: -25px;
    min-height: 524px;
    background-color: var(--color-blue-default);
    overflow: hidden;

    p {
        a {
            color: inherit;
            font-family: inherit;
            font-size: inherit;
        }
    }

    .banner-intro-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        list-style: none;
        margin-bottom: 26px;

        li {
            color: var(--color-white-default);
            font-size: 0.875rem;
            font-style: normal;
            font-weight: 600;
            line-height: 120%;
            padding: 8px;
            border-radius: 8px;
            background: rgba(230, 236, 241, 0.10);

        }
    }

    .banner-back-btn {
        position: absolute;
        bottom: 45px;
        right: 0;
        padding-right: calc((100% - var(--width-base)) / 2);
        display: flex;
        align-items: center;
        gap: 16px;
        text-decoration: none;

        @media (width < 1440px) {
            padding-right: var(--space-right);
        }

        .icon {
            width: 41px;
            height: 41px;
            border: 1px solid var(--color-white-default);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;

            img {
                transition: var(--duration);

                &:first-child {
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    position: absolute;
                }

                &:last-child {
                    top: 50%;
                    left: 150%;
                    transform: translate(-50%, -50%);
                    position: absolute;
                }
            }
        }

        span {
            color: var(--color-white-default);
            font-size: 0.9375rem;
            font-weight: 500;
            line-height: 120%;
            transform: translateX(0);
            transition: var(--duration);
        }

        &:hover, &:focus {
            .icon {
                img {
                    &:first-child {
                        left: -150%;
                    }

                    &:last-child {
                        left: 50%;
                    }
                }
            }

            span {
                transform: translateX(-4px);
            }
        }
    }

    &:has(.banner-intro.center) {
        justify-content: center;
        text-align: center;
        padding-top: 99px;
        min-height: auto;
        background-color: var(--color-blue-default);

        &:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 294px;
            height: 506px;
            background-image: url('../images/services-banner-left.svg');
            background-repeat: no-repeat;
        }

        &:after {
            content: '';
            position: absolute;
            top: -102px;
            right: 0;
            width: 446px;
            height: 257px;
            background-image: url('../images/services-banner-top-right.svg');
            background-repeat: no-repeat;
            display: block;
            z-index: 1;
        }

        .banner-intro {
            padding-bottom: 56px;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;

            li {
                a, span {
                    background-color: var(--color-blue-600);
                }
            }
        }
    }

    &.services-detail {
        padding-top: 141px;
        min-height: 539px;

        .breadcrumb {
            @media (width > 1025px) {
                margin-bottom: 30px;
            }
        }

        .banner-intro-tags {
            margin-bottom: 14px;

            li {
                background-color: var(--color-blue-400);
            }
        }

        h1 {
            @media (width > 768px) {
                margin-bottom: 9px;
            }
        }

        p {
            font-size: 1rem;
        }

        ul.services-list {
            list-style: none;
            margin-top: 23px;
            display: flex;
            flex-direction: column;
            gap: 8px;

            li {
                display: flex;
                gap: 8px;
                align-items: center;

                .icon {
                    flex: 0 0 auto;
                }
            }
        }
    }

    &.news-detail {
        padding-top: 141px;
        min-height: 539px;

        .breadcrumb {
            @media (width > 1025px) {
                margin-bottom: 30px;
            }
        }

        .banner-intro-tags {
            margin-bottom: 14px;

        }

        h1 {
            @media (width > 768px) {
                margin-bottom: 9px;
            }
        }

        p {
            font-size: 1rem;
        }

        ul.services-list {
            list-style: none;
            margin-top: 55px;
            display: flex;
            gap: 39px;

            @media (width < 768px) {
                margin-top: 20px;
            }

            li {
                display: flex;
                gap: 8px;
                align-items: center;
            }
        }
    }

    &.event-detail {
        padding-top: 141px;
        min-height: 539px;

        .breadcrumb {
            @media (width > 1025px) {
                margin-bottom: 30px;
            }
        }

        h1 {
            @media (width > 768px) {
                margin-bottom: 9px;
            }
        }

        p {
            font-size: 1rem;
        }

        ul.services-list {
            list-style: none;
            margin-top: 23px;
            display: flex;
            flex-direction: column;
            gap: 8px;

            li {
                display: flex;
                gap: 8px;
                align-items: center;
            }
        }

        .event-info {
            display: flex;
            padding-block: 5px 16px;

            .date {
                display: flex;
                gap: 14px;
                align-items: center;
                color: var(--color-white-default);
                font-size: 0.875rem;
                font-weight: 700;
                line-height: 1.2;
                padding: 8px 12px;
                border-radius: 5px;
                background-color: var(--color-blue-700);
                position: relative;
                z-index: 1;
            }

            .event-type {
                border-radius: 8px;
                position: relative;
                z-index: 0;
                left: -10px;
                padding: 8px 14px 8px 24px;
                background-color: var(--color-blue-400);
                color: var(--color-white-default);
                font-weight: 600;
                line-height: 1.2;
                font-size: 0.875rem;

            }
        }

    }

    &.werken-bij-detail {
        padding-top: 77px;
        min-height: 476px;

        .breadcrumb {
            @media (width > 1025px) {
                margin-bottom: 45px;
            }

            li {
                a, span {
                    background-color: var(--color-blue-600);
                }
            }
        }

        h1 {
            @media (width > 768px) {
                margin-bottom: 9px;
                text-wrap: unset;
            }
        }

        p {
            font-size: 1rem;
        }

        .services-list {
            list-style: none;
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            margin-top: 49px;

            @media (width < 768px) {
                margin-top: 40px;
                gap: 10px 20px;
            }

            li {
                display: flex;
                gap: 9px;
                align-items: center;
            }
        }

        .banner-scroll-btn {
            margin-top: 43px;
        }
    }

    &:has(.banner-intro.center, .faq-nav) {
        padding-top: 142px;

        .banner-intro {
            width: auto;
            max-width: unset;
            z-index: 2;
        }

        .faq-nav {
            margin-top: 45px;

            ul {
                width: fit-content;
                margin: 0 auto;
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
                list-style: none;
                padding: 8px;
                border-radius: 40px;
                background-color: var(--color-white-default);

                @media (width < 992px) {
                    background-color: transparent;
                }

                li {
                    a {
                        font-size: 0.875rem;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 160%; /* 1.4rem */
                        color: var(--color-black-default);
                        display: inline-flex;
                        justify-content: center;
                        align-items: center;
                        gap: 10px;
                        padding: 10px 18px;
                        border-radius: 50px;
                        background-color: transparent;
                        transition: var(--duration);
                        text-decoration: none;

                        @media (width < 992px) {
                            background-color: var(--color-white-default);
                        }

                        &.active, &:hover, &:focus {
                            background-color: var(--color-blue-50);
                        }
                    }
                }
            }
        }
    }

    .logo {
        position: absolute;
        right: 11%; /*@TODO Check if you can make this work like the back button*/
        bottom: 0;
        padding-right: calc((100% - var(--width-base)) / 2);

        @media (width < 1440px) {
            padding-right: var(--space-right);
        }
    }

    .banner-scroll-btn {
        display: flex;
        align-items: center;
        gap: 16px;
        text-decoration: none;
        appearance: none;
        background-color: unset;
        border: unset;
        margin-top: 27px;

        .icon {
            width: 41px;
            height: 41px;
            border: 1px solid var(--color-blue-200);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;

            img {
                transition: var(--duration);

                &:first-child {
                    top: -50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    position: absolute;
                }

                &:last-child {
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    position: absolute;
                }
            }
        }

        span {
            color: var(--color-white-default);
            font-size: 0.9375rem;
            font-weight: 500;
            line-height: 120%;
            transform: translateX(0);
            transition: var(--duration);
            font-family: var(--font-family-base);
        }

        &:hover, &:focus {
            .icon {
                img {
                    &:first-child {
                        top: 50%;
                    }

                    &:last-child {
                        top: 150%;
                    }
                }
            }

            span {
                transform: translateX(-4px);
            }
        }
    }

    .werken-bij-photo {
        mask-image: url('../images/werken-bij-mask.svg');
        z-index: 1;
        position: relative;
        margin-top: 100px;
        left: -35px;
        mask-size: 100%;

        @media (width < 768px) {
            left: 0;
            margin-top: 0;
        }

        button, a {
            position: absolute;
            top: 51%;
            left: 51%;
            transform: translate(-50%, -50%);
            border: unset;
            background-color: unset;
            cursor: pointer;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            span {
                color: var(--color-white-default);
                font-family: var(--font-family-base);
                font-size: 0.9375rem;
                font-style: normal;
                font-weight: 600;
                line-height: 120%; /* 1.125rem */
            }
        }
    }

    &.werken-bij {
        padding-top: 74px;
        min-height: 539px;
        background-color: var(--color-blue-default);

        .banner-intro {
            max-width: 488px;

            h1 + p {
                font-size: 1.125rem;
                font-style: normal;
                font-weight: 500;
                line-height: 160%; /* 1.8rem */
                margin-bottom: 26px;
            }

            p {
                font-size: 1rem;
                font-style: normal;
                font-weight: 400;
                line-height: 180%; /* 1.8rem */
                margin-bottom: 33px;
            }
        }

        &:after {
            content: '';
            position: absolute;
            top: -63px;
            right: 0;
            width: 347px;
            height: 665px;
            background-image: url('../images/werken-bij-path.svg');
            background-repeat: no-repeat;
            z-index: 0;

            @media (width < 767px) {
                display: none;
            }
        }

        .breadcrumb {
            li {
                a, span {
                    background-color: var(--color-blue-600);
                }
            }
        }

        .banner-right {
            height: auto;
        }
    }

    .banner-slider {
        width: 100%;

        .testimonial {
            background: unset;

            @media (width > 768px) {
                padding-top: 87px;
            }

            .swiper-slide {
                width: auto;
                @media (width < 768px) {
                    max-width: 75vw;
                }

                img {
                    width: 100%;
                    transform: scale(0.9);
                    transition: var(--duration);
                    border-radius: 20px;
                }

                &.swiper-slide-active {
                    img {
                        transform: scale(1);
                    }
                }
            }
        }

        .testimonial-arrows {
            @media (width > 768px) {
                max-width: 788px;
                width: 100%;
                transform: translate(-50%, -50%);
            }
        }

    }

    &.orange {
        background-color: var(--color-orange-500);

        .breadcrumb {
            li {
                a, span {
                    background-color: var(--color-orange-600);
                }
            }
        }
    }

    &.orange:has(.banner-intro.center) {
        background-color: var(--color-orange-500);

        &:before {
            background-image: url('../images/services-banner-left-orange.svg');
            bottom: 0;
            height: 100%;
            background-size: cover;
        }

        &:after {
            background-image: url('../images/services-banner-top-right-orange.svg');
            top: 0;
        }

        .breadcrumb {
            li {
                a, span {
                    background-color: var(--color-orange-600);
                }
            }
        }
    }
}

.banner h1 {
    color: var(--color-white-default);
    letter-spacing: -2px;
    margin-bottom: 16px;
    text-wrap: balance;
}

.banner-intro {
    p {
        max-width: 850px;
    }

    width: var(--width);
    color: var(--color-white-default);
    padding-bottom: 71px;
    z-index: 2;

    @media (width < 768px) {
        padding-bottom: 30px;
    }
}

.banner-intro p:last-of-type {
    margin-bottom: 0;
}

.banner-intro .breadcrumb {
    margin-bottom: 39px;
}

.banner-photo {
    display: none;
}

.banner-mobile img,
.banner-photo img {
    width: var(--width);
    height: var(--height);
    object-fit: cover;
}

.banner-mobile {
    width: calc(100% + 80px);
    margin-left: -40px;
    margin-right: -40px;
    height: 268px;
}

.banner-mobile img {
    height: auto;
    mask-image: url(/assets/templates/images/mask.png);
    mask-size: cover;
}

.banner-right {
    width: VAR(--width);
    display: flex;
    justify-content: center;
    position: relative;
}

.banner-shape {
    position: absolute;
    top: -300px;
    right: -465px;
    width: 853px;
    /*mix-blend-mode: multiply;*/
    pointer-events: none;
    display: none;

    background: linear-gradient(153.05deg, rgba(0, 64, 110, 0) 37.43%, #00406E 96.43%);
    opacity: 0.7;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    clip-path: ellipse(678px 845px at 686.9px 49%);
}

.banner-shape img {
    width: var(--width);
    display: none;
}

/* ### breadcrumb ### */
.breadcrumb {
    width: var(--width);
    margin-bottom: 20px;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px 0;
}

.breadcrumb li a, .breadcrumb li span {
    padding: 8px 10px;
    font-size: 0.75rem;
    color: var(--color-white-default);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    background-color: var(--color-blue-600);
    border-radius: 8px;
    text-decoration: none;
    display: block;
    align-items: center;
    min-width: 0;
    text-wrap-mode: nowrap;
}

.breadcrumb li:last-child {
    min-width: 0;

    span {
        text-overflow: ellipsis;
        overflow: hidden;
    }
}


.breadcrumb li a:has(svg) {
    padding-block: 10px;
}

.breadcrumb li:not(:last-child) {
    margin-right: 10px;

    @media (width < 767px) {
        margin-right: 5px;
    }
}

/* ### faq ### */
.faq {
    padding-top: 57px;
    padding-bottom: 58px;
    position: relative;
    background-color: var(--color-orange-50);
}

.faq-holder {
    position: relative;
    z-index: 1;
}

.faq h2 {
    margin-bottom: 24px;
    color: var(--color-light-orange-500);
    line-height: 1.2;
    letter-spacing: -1px;
}

.faq-left .picture {
    position: relative;
    z-index: 1;
    display: none;
}

.faq-left .picture img {
    width: 100%;
}

.faq-left .picture picture img {
    mask-image: url('/assets/templates/images/faq-mask.svg');
    mask-repeat: no-repeat;
    mask-size: cover;
}

.faq-plus {
    display: flex;
    align-items: center;
    position: absolute;
    top: 31px;
    left: 35px;
    mix-blend-mode: multiply;
    pointer-events: none;
    width: 148px;
}

.faq-plus.medium {
    width: 63px;
    top: 89px;
    left: 228px;
}

.faq-plus.small {
    width: 42px;
    top: 180px;
    left: 188px;
}

.faq-plus img {
    width: var(--width);
}

.faq-shape {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    pointer-events: none;
    margin-left: -450px;
    display: none;
}

.faq-shape img, .faq-shape svg {
    width: var(--width);
}

/* ### accordion ### */
.accordion-item {
    border-bottom: 1px solid rgba(240, 120, 31, 0.3)
}

.accordion-title {
    padding: 15px 35px 18px 0;
    position: relative;
    width: 100%;
    font-size: 1rem;
    font-family: var(--font-family-base);
    font-weight: 600;
    border: 0;
    text-align: left;
    background-color: transparent;
    line-height: 1.63;
    cursor: pointer;
    color: var(--color-black-default);

    &.active {
        @media (width < 767px) {
            padding-bottom: 12px;
        }
    }
}

.accordion-title:after {
    background: url('../images/accordion-arrow.svg') no-repeat center right;
    position: absolute;
    top: 25px;
    right: -1px;
    width: 14px;
    height: 10px;
    opacity: 0.5;
    content: '';
    transition: var(--duration);
}

.accordion-title.active:after {
    transform: rotate(-180deg);
}

.accordion-content p {
    margin-bottom: 16px;
}

/* ### cta ### */
.cta {
    padding-top: 32px;
    position: relative;
    background-color: var(--color-orange-50);

    &.light-blue {
        background-color: var(--color-light-blue-50);
    }

    &.white {
        background-color: var(--color-white-default);
    }
}

.cta:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 109px;
    background-color: var(--color-white-default);
    content: '';
    pointer-events: none;
}

.cta-holder {
    position: relative;
    z-index: 1;
    background-color: var(--color-blue-default);
    overflow: hidden;
    border-radius: 15px;
}

.cta-left {
    padding: 24px 23px 51px;
    font-weight: var(--font-weight-medium);
    color: var(--color-white-default);
}

.cta-tag {
    margin-bottom: 14px;
    padding: 5px 11px;
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    border-radius: 8px;
    background-color: var(--color-blue-400);
}

.cta-left h2 {
    margin-bottom: 16px;
    color: inherit;
}

.cta-sub-title {
    margin-bottom: 15px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-blue-200);
}

.cta-left p {
    margin-bottom: 32px;
    font-size: 0.875rem;
    line-height: 1.8;
}

.cta-right {
    overflow: hidden;
}

.cta-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: url("/assets/templates/images/cta-block-mask.svg");
    mask-repeat: no-repeat;
    mask-size: cover;
}

.cta-right img.is-desktop {
    display: none;
}

/* ### register ### */
.register {
    margin-bottom: 80px;
    padding-top: 64px;

    &.services {
        background-color: var(--color-light-blue-50);

        h2 {
            color: var(--color-blue-default);
        }

        .card-register {
            background-color: var(--color-white-default);
            border-radius: 20px;
            padding: 20px;

            @media (width > 1025px) {
                margin-bottom: 20px;
            }

            h3 {
                margin-bottom: 10px;
            }

            p {
                margin-bottom: 18px;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            ul {
                margin-bottom: 8px;

                li {
                    border-radius: 8px;
                    background: rgba(0, 64, 110, 0.10);
                    padding: 6px;
                    color: var(--color-blue-default);
                    font-size: 0.625rem;
                    margin-right: 9px;
                }
            }

            .card-register-text {
                padding-bottom: 20px;
                flex: 1;
                @media (width > 1025px) {
                    margin-left: 32px;
                }
            }

            &.featured {
                background-color: #00406E;
                color: #fff;

                ul {
                    li {
                        background: #33668B;
                        color: #fff;
                        font-weight: 700;
                    }
                }

                h3 {
                    color: #fff;
                }

                .button-link {
                    color: #fff;

                    img {
                        filter: brightness(0) invert(1);
                    }
                }

                .card-register-comment {
                    background-color: #fff;
                }

                &:nth-child(3) {
                    margin-bottom: 60px;
                }
            }
        }

        .card-help {
            background: rgba(0, 64, 110, 0.10);
        }

        &:has(+ .cta) {
            + .cta {
                background-color: var(--color-light-blue-50);
            }
        }
    }

    &.registration {

        .register-holder {
            border-bottom: 0;
            justify-content: space-between;
        }

        .register-left {
            width: 100%;
            max-width: 642px;

            @media (width < 1200px) {
                max-width: 450px;
            }
        }

        .register-right {
            display: flex;
            justify-content: flex-end;
            align-items: baseline;

            @media (width < 768px) {
                display: block;
            }
        }

        .card-aanmelden {
            border-radius: 10px;
            background-color: var(--color-light-blue-50);
            padding: 48px 48px 38px 48px;

            @media (width < 768px) {
                padding: 20px;
            }

            .aanmelden-text {
                padding-bottom: 42px;
                border-bottom: 1px solid var(--color-blue-100);
            }

            .card-help {
                border-radius: unset;
                padding: 37px 0 0;
                max-width: unset;
                flex-direction: row;
                display: flex;
                justify-content: space-between;
                flex-wrap: wrap;
                gap: 15px;

                .card-help-title {
                    margin-top: 10px;

                    h3 {
                        font-size: 2rem;
                        line-height: 1.2;

                        @media (width < 768px) {
                            font-size: 1.75rem;
                        }
                    }
                }

                .card-help-contact {
                    position: relative;
                    right: 21px;

                    @media (width < 768px) {
                        right: 0;
                    }
                }
            }
        }


        h2 {
            color: var(--color-orange-500);
        }

        .step {
            display: flex;
            gap: 48px;
            margin-bottom: 42px;

            @media (width < 768px) {
                gap: 20px;
                margin-bottom: 20px;
            }

            .step-image {
                position: relative;
                flex: 0 0 auto;

                @media (width < 768px) {
                    max-width: 90px;
                }

                .count {
                    width: 41px;
                    height: 41px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background-color: var(--color-white-default);
                    border-radius: 50%;
                    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.05);
                    font-family: "Plus Jakarta Sans";
                    font-size: 1.125rem;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 1;
                    color: var(--color-blue-default);
                    position: absolute;
                    top: -10px;
                    left: -10px;

                    @media (width < 768px) {
                        width: 30px;
                        height: 30px;
                        font-size: 1rem;
                    }
                }

                img {
                    border-radius: 15px;
                    overflow: hidden;
                }
            }

            .step-text {
                max-width: 456px;

                h3 {
                    color: var(--color-black-default);
                    font-size: 1.5rem;
                    font-style: normal;
                    font-weight: 700;
                    font-family: var(--font-family-base);
                    margin-bottom: 15px;

                    @media (width < 768px) {
                        font-size: 1.25rem;
                    }
                }
            }
        }
    }
}

.register h2 {
    margin-bottom: 46px;
    font-family: var(--font-family-base);
    color: var(--color-blue-200);
    text-transform: uppercase;
}

.register-left {
    margin-bottom: 64px;

    @media (width < 768px) {
        margin-bottom: 50px;
    }
}

.register-text {
    margin-bottom: 43px;
    padding-bottom: 53px;
    border-bottom: 1px solid var(--color-blue-50);
}

.register-title {
    margin-bottom: 19px;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--color-blue-default);
    line-height: 1.6;
}

.register.with-filter {
    @media (width > 768px) {
        padding-top: 75px;
    }
}

.register-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 45px;

    @media (width < 768px) {
        flex-wrap: wrap;
        gap: 15px;
    }

    h2.h6 {
        margin-bottom: 0;
    }

    button {
        appearance: none;
        background-color: unset;
        border: unset;
        display: flex;
        align-items: center;
        cursor: pointer;

        &:hover {
            .icon {
                img {
                    transform: rotate(23deg);
                }
            }

            span:not(.icon) {
                padding-right: 12px;
            }
        }

        span:not(.icon) {
            font-family: var(--font-family-base);
            font-size: 0.9375rem;
            font-weight: 500;
            line-height: 1.2;
            padding-right: 16px;
            transition: var(--duration);
        }

        .icon {
            width: 41px;
            height: 41px;
            background-color: var(--color-blue-default);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;

            &.hidden {
                &[data-count] {
                    &:after {
                        display: none;
                    }
                }
            }

            &[data-count] {
                position: relative;

                &:after {
                    position: absolute;
                    top: -9px;
                    right: -7px;
                    width: 20px;
                    height: 20px;
                    background-color: var(--color-white-default);
                    border-radius: 50%;
                    content: attr(data-count);
                    font-size: 0.75rem;
                    color: var(--color-blue-default);
                    font-weight: 700;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }
            }


            img {
                transition: var(--duration);
                transform-origin: center center;
            }
        }
    }
}

.register-text ul {
    list-style: none;
}

.register-text li {
    padding-left: 21px;
    position: relative;
    font-size: 0.875rem;
    line-height: 1.8;
}

.register-text li:before {
    position: absolute;
    top: 13px;
    left: 8px;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--color-black-default);
    content: '';
}

/* ### intro ### */
.intro {
    margin-bottom: 60px;
    padding-top: 64px;
    display: none;

    .title {
        grid-column: 1 / 2 span;
        margin-top: 17px;

        h2 {
            font-size: 2rem;
            font-style: normal;
            font-weight: 700;
            line-height: 120%; /* 2.4rem */
            letter-spacing: -0.0625rem;

            @media (width < 768px) {
                font-size: 1.75rem;
            }
        }
    }

    ul {
        padding-left: 18px;
        margin-bottom: 1rem;
    }

    &:has(.title) {
        @media (width > 768px) {
            margin-bottom: 122px;
        }
    }
}

.intro p {
    margin-bottom: 27px;
}

.intro-left {
    line-height: 1.72;
    letter-spacing: -0.004rem;

    p {
        &:first-child {
            font-weight: 600;
            font-size: 1.125rem;

            strong {
                font-weight: 600;
            }
        }
    }
}

.intro-right {
    line-height: 1.62;
}

.intro .button {
    margin-top: 13px;
}

/* ### blessing ### */
.blessing {
    padding-top: 54px;
    padding-bottom: 30px;
    position: relative;
    z-index: 1;
    background-color: var(--color-orange-50);

    @media (width < 768px) {
        padding-top: 30px;
    }

    &:has(+ .cta) {
        padding-bottom: 0;

        .blessing-shape {
            max-width: 501px;
        }

        + .cta {
            padding-top: 10px;

            @media (width < 767px) {
                padding-top: 50px;
            }
        }
    }

    .blessing-text {
        ul {
            list-style: none;


            li {
                position: relative;
                padding-left: 34px;
                margin-bottom: 11px;

                &::before {
                    position: absolute;
                    top: 9px;
                    left: 7px;
                    width: 15px;
                    height: 12px;
                    content: '';
                    background: url('../images/icon-check-orange.svg') no-repeat;
                }
            }
        }
    }
}

.blessing-text {
    margin-bottom: 94px;

    @media (width < 768px) {
        margin-bottom: 54px;
    }
}

.blessing-text h2 {
    margin-bottom: 23px;
    color: var(--color-orange-500);
    line-height: 1.22;
    letter-spacing: -0.056rem;
}

.blessing-faq {
    margin-bottom: 74px;
}

.blessing-faq h3 {
    margin-bottom: 33px;
    padding-left: 86px;
    position: relative;
    color: var(--color-light-orange-500);
    letter-spacing: -0.056rem;
    line-height: 1.2;

    @media (width < 768px) {
        padding-left: 66px;
        margin-bottom: 16px;
    }
}

.blessing-faq h3 span {
    position: absolute;
    top: 2px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 6px;
    background-color: var(--color-light-orange-500);

    @media (width < 768px) {
        width: 44px;
        height: 44px;
    }
}

.blessing-faq h3 span img {
    width: 14px;
    height: 22px;
}

.blessing-right {
    position: relative;
}

.blessing-picture {
    position: relative;
    z-index: 1;
}

.blessing-picture picture img {
    width: 100%;
    mask-image: url("../images/blessing-mask.svg");
    mask-size: 100%;
    mask-repeat: no-repeat;
}

.blessing-plus {
    position: absolute;
    top: 19.5%;
    left: -15px;
    width: 86px;
    height: 86px;
    mix-blend-mode: multiply;
    pointer-events: none;

    &.top-left {
        bottom: unset;
        top: 21%;
        left: -30px;
    }
}

.blessing-plus.medium {
    top: 31.5%;
    left: 27%;
    width: 37px;
    height: 37px;
}

.blessing-plus.small {
    top: 51.5%;
    left: 20.5%;
    width: 24px;
    height: 24px;
}

.blessing-shape {
    position: absolute;
    top: -54px;
    right: -110px;
    z-index: -1;
    width: 284px;
    pointer-events: none;
    opacity: 0.2;
}

.blessing-shape img {
    width: 100%;
}

/* ### testimonial ### */
.testimonial {
    padding-top: 57px;
    padding-bottom: 38px;
    position: relative;
    background-color: var(--color-orange-50);
}

.testimonial h2 {
    margin-bottom: 40px;
    text-align: center;
    color: var(--color-orange-500);
    letter-spacing: -0.056rem;
}

.testimonial-slider {
    position: relative;
}

.testimonial .swiper {
    overflow: visible;
}

.testimonial .swiper-slide {
    width: 330px;
}

.testimonial-arrows {
    padding-top: 68px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;

    @media (width < 768px) {
        padding-top: 2rem;
        gap: 1rem;
    }
}

/* ### card-testimonial ### */
.card-testimonial {
    padding: 31px 32px 21px;
    border-radius: 20px;
    background-color: var(--color-white-default);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card-testimonial-text {
    position: relative;
    z-index: 1;
}

.card-testimonial-title {
    margin-bottom: 10px;
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
}

.card-testimonial p {
    margin-bottom: 26px;
}

.card-testimonial-owner {
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-white-700);
}

.card-testimonial-quote {
    width: 98px;
    height: 67px;
    position: absolute;
    bottom: -20px;
    right: -43px;
    opacity: 0.15;
    pointer-events: none;
}

/* ### card-register ### */
.card-register {
    margin-bottom: 32px;
    padding-bottom: 28px;
    display: block;
    border-bottom: 1px solid var(--color-blue-50);
    text-decoration: none;
    color: var(--color-black-default);

    &.bijbels-onderwijzen {
        .card-register-text {
            ul {
                margin-top: 5px;
                margin-bottom: 15px;
            }

            li {
                font-size: 0.75rem;
                font-style: normal;
                font-weight: 700;
                line-height: 1;
                display: flex;
                padding: 6px 10px;
                justify-content: center;
                align-items: center;
                gap: 10px;
                border-radius: 8px;
                background: rgba(0, 64, 110, 0.10);
                margin-right: 8px;
            }
        }

        .card-register-title {
            margin-bottom: 24px;
        }
    }
}

.card-register-photo {
    margin-bottom: 27px;
    position: relative;
    border-radius: 14px;
    overflow: hidden;

    @media (768px < width < 1024px) {
        max-width: 100px;
    }
}

.card-register-photo:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(137deg, rgba(0, 64, 110, 0.00) 41.13%, #00406E 139.56%) no-repeat;
    content: '';
    pointer-events: none;
}

.card-register-photo img {
    width: 100%;
    transform: scale(1.05);
    transition: var(--duration);
}

.card-register-photo img.d-desktop {
    display: none;
}

.card-register-comment {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background-color: var(--color-blue-default);
}

.card-register-comment img {
    width: auto;
    transform: scale(1);
}

.card-register-text ul {
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.card-register-text li {
    margin-right: 16px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
}

.card-register-text li span {
    color: var(--color-blue-200);
}

.card-register-text li:last-of-type {
    margin-right: 0;
}

@media (width > 768px) {
    .card-register-text {
        position: relative;
    }

    .card-register-text span.button-link {
        position: absolute;
        bottom: 0;
    }
}

.card-register-title {
    margin-bottom: 27px;
    font-size: 1.375rem;
    font-family: var(--font-family-plume);
    color: var(--color-blue-default);
    line-height: 1.1;
    letter-spacing: -0.0625rem;

    @media (width < 768px) {
        font-size: 1.125rem;;
    }
}

.card-register:focus .button-link i.on-hover,
.card-register:hover .button-link i.on-hover {
    margin-left: 0;
}

.card-register:focus .button-link i.without-hover,
.card-register:hover .button-link i.without-hover {
    opacity: 0;
    visibility: hidden;
}

.card-register:focus .card-register-photo img,
.card-register:hover .card-register-photo img {
    transform: scale(1);
}

/* ### card-help ### */
.card-help {
    padding: 30px 40px 18px;
    border-radius: 10px;
    background-color: var(--color-light-blue-50);

    @media (width < 768px) {
        padding: 20px;
    }
}

.card-help h3 {
    font-size: 2rem;
    font-family: var(--font-family-base);
    line-height: 1.2;

    @media (width < 768px) {
        font-size: 1.75rem;

        br {
            display: none;
        }
    }
}

.card-help-tell {
    margin-bottom: 33px;
    padding: 5px 17px 5px 12px;
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-blue-default);
    border-radius: 8px;
    background-color: var(--color-white-default);
}

.card-help-tell i {
    position: absolute;
    top: -7px;
    left: 12px;
    pointer-events: none;
}

.card-help-tell span {
    margin-right: 8px;
    width: 15px;
    height: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background-color: rgba(96, 178, 46, 0.3);

}

.card-help-tell span:before {
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 6px;
    background-color: var(--color-green);
    content: '';
    animation: pulse-animation 2s infinite;
}

.card-help-client {
    margin-bottom: 24px;
    display: flex;
    align-items: flex-end;
}

.card-help-photo {
    position: relative;
    z-index: 1;
    width: 76px;
    flex: 0 0 auto;
}

.card-help-photo img {
    /*margin-left: -4px;*/
    max-width: 72px;
    border-radius: 6px;
}

.card-help-photo:after {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 72px;
    height: 72px;
    border-radius: 6px;
    background-color: var(--color-blue-default);
    content: '';
    opacity: 0;
}

.card-help-text {
    margin-bottom: 1px;
    margin-left: 10px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-blue-default);
    line-height: 1.45;
}

.card-help-text span {
    display: block;
    font-size: 0.875rem;
    font-weight: var(--font-weight-normal);
    color: var(--color-black-default);
}

.card-help-buttons .button-flip {
    margin-bottom: 14px;
    padding: 8px 14px 9px 62px;
    font-size: 0.875rem;
    border: 0;
}

.card-help-buttons .button-flip i {
    left: 17px;
}

.card-help-buttons .button-flip:before {
    left: -51px;
}

.card-help-buttons .button {
    display: inline-flex;
}

/* ### card-post ### */
.card-event {
    font-size: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
    color: var(--color-grey-medium);
}

.card-event-photo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
}

.card-event-photo img {
    width: var(--width);
    height: var(--height);
    object-fit: cover;
}

.card-event-info {
    flex: 1;
}

.card-event-info strong {
    font-size: 1rem;
    color: var(--color-black-default);
}

.card-event-info ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.card-event-info li {
    display: flex;
    align-items: center;
}

.card-event-info li:not(:last-child) {
    margin-right: 12px;
}

.card-event-info li svg {
    margin-right: 8px;
}

/* ### card-choose ### */
.card-choose {
    font-size: 0.875rem;
    color: var(--color-grey-medium);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    text-decoration: none;
    font-weight: var(--font-weight-medium);
}

.card-choose-photo {
    width: var(--width);
    border-radius: 8px;
    position: relative;
    z-index: 1;
    padding-left: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 27px;
}

.card-choose-items {
    width: var(--width);
}

.card-choose-photo span {
    position: absolute;
    bottom: 2px;
    right: 5px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    overflow: hidden;
}

.card-choose-photo span img {
    transition: var(--duration);
}

.card-choose-photo .is-hover {
    transform: translateX(-50px);
}

.card-choose-photo .no-effect {
    transform: translateX(-9px);
}

.card-choose-info {
    font-size: 1.25rem;
    color: rgba(240, 120, 31, .25);
    font-weight: var(--font-weight-semibold);
    position: relative;
    left: 9px;
    line-height: 1.35;
    margin-bottom: 25px;
}

.card-choose-info strong {
    font-size: 1.5rem;
    display: block;
    font-family: var(--font-family-plume);
    color: var(--color-orange-500);
    line-height: 1;

    @media (width < 768px) {
        font-size: 1.25rem;
    }
}

.card-choose-text {
    padding-left: 9px;
    margin-top: auto;
    line-height: 1.45;
}

.card-choose-text p:last-of-type {
    margin-bottom: 0;
}

.card-choose:focus .is-hover,
.card-choose:hover .is-hover {
    transform: translateX(9px);
}

.card-choose:focus .no-effect,
.card-choose:hover .no-effect {
    transform: translateX(50px);
}

.card-choose-photo:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: var(--width);
    height: calc(100% - 25px);
    border-radius: 8px;
    background-color: rgba(250, 171, 84, .15);
    z-index: -1;
    pointer-events: none;
}

/* ### card-post ### */
.card-post {
    font-size: 0.875rem;
    display: flex;
    flex-wrap: wrap;
    text-decoration: none;
    color: var(--color-grey-medium);
}

.card-post-photo {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
}

.card-post-photo img {
    width: var(--width);
    height: var(--height);
    object-fit: cover;
}

.card-post-info {
    flex: 1;
}

.card-post-info strong {
    font-size: 1rem;
    color: var(--color-black-default);
    display: block;
    margin-bottom: 4px;
}

.card-post-info ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.card-post-info li {
    position: relative;
}

.card-post-info li:not(:last-child):after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: var(--color-black-300);
    margin: 0 10px;
}

/* ### card-search ### */
.card-search {
    width: var(--width);
}

.card-search form {
    position: relative;
    display: block;
}

.card-search input {
    padding: 10px 58px 10px 33px;
    color: var(--color-black-default);
    font-size: 1rem;
    width: var(--width);
    height: 65px;
    border-radius: 90px;
    border: 0;
    font-weight: var(--font-weight-medium);
    font-style: italic;
    box-shadow: 0 0 20px rgba(0, 0, 0, .10);
}

.card-search input::placeholder {
    color: var(--color-black-default);
    font-style: italic;
}

.card-search .button-submit {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: rgba(250, 171, 84, .30);
    border: 0;
    cursor: pointer;
}

.card-search .button-submit svg {
    fill: var(--color-orange-500);
}

.card-search .button-submit:focus,
.card-search .button-submit:hover {
    background-color: var(--color-orange-500);
}

.card-search .button-submit:focus svg,
.card-search .button-submit:hover svg {
    fill: var(--color-white-default);
}

.card-search.is-alt input {
    padding-left: 18px;
    font-size: 0.875rem;
    height: 47px;
}

.card-search.is-alt .button-submit {
    top: 4px;
    right: 4px;
    width: 39px;
    height: 39px;
    background-color: var(--color-blue-50);
}

.card-search.is-alt .button-submit svg {
    width: 18px;
    fill: var(--color-blue-default);
}

/* ### card-agency ### */
.card-agency {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}

.card-agency-user {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
}

.card-agency-photo {
    padding: 0 2px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: rgba(240, 120, 31, .15);
    border-radius: 6px;
    margin-right: 15px;

    @media (width < 768px) {
        align-items: start;
    }
}

.card-agency-info {
    flex: 1;
    line-height: 1.4;
    color: rgba(240, 120, 31, .25);
    font-size: 1rem;
    padding-bottom: 4px;
}

.card-agency-info strong,
.card-agency-info b {
    font-size: 1.125rem;
    display: block;
    color: var(--color-orange-500);
    font-family: var(--font-family-plume);
}

.choose .choose-list-info:last-child .card-agency-info {
    padding-bottom: 0;
}

/* ### card-news ### */
.card-news {
    padding: 21px;
    border-radius: 20px;
    background-color: var(--color-white-default);
    width: 100%;
    color: var(--color-black-default);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.card-news-picture {
    margin-bottom: 23px;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    height: 228px;
}

.card-news-picture picture img {
    width: 100%;
    transition: var(--duration);
    transform: scale(1.05);
    min-height: 188px;
    object-fit: cover;
    height: 100%;
}

.card-news-arrow {
    position: absolute;
    bottom: 16px;
    right: 17px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 59px;
    height: 45px;
    background: url('../images/shape-news-arrow.svg') no-repeat;
    background-size: contain;
    overflow: hidden;
}

.card-news-arrow img, .card-news-arrow svg {
    transition: var(--duration);
}

.card-news-arrow .on-hover {
    transform: translateX(-50px);
}

.card-news-arrow .without-hover {
    transform: translateX(-9px);
}

.card-news-tag {
    padding: 6px 15px 8px 14px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    display: inline-flex;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-white-default);
    border-radius: 10px;
    background-color: var(--color-orange-500);
}

.card-news-title {
    margin-bottom: 10px;
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    font-family: var(--font-family-base);
    color: var(--color-black-default);
}

.card-news p {
    margin-bottom: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    line-height: 1.8;
}

.card-news-wrap {
    display: flex;
}

.card-news-client {
    margin-top: 2px;
    margin-right: 16px;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: var(--color-orange-50);
    overflow: hidden;
}

.card-news-info {
    font-size: 0.875rem;
}

.card-news-info strong {
    margin-bottom: 1px;
    display: block;
}

.card-news-info ul {
    display: flex;
    list-style: none;
}

.card-news-info li {
    color: var(--color-black-300);
}

.card-news-info li:after {
    margin: -3px 10px 0;
    width: 4px;
    height: 4px;
    border-radius: 5px;
    display: inline-block;
    vertical-align: middle;
    background-color: var(--color-black-300);
    content: '';
}

.card-news-info li:last-of-type:after {
    display: none;
}

.card-news:focus .on-hover,
.card-news:hover .on-hover {
    transform: translateX(9px);
    @media (width < 768px) {
        transform: translateX(-50px);
    }
}

.card-news:focus .without-hover,
.card-news:hover .without-hover {
    transform: translateX(50px);
    @media (width < 768px) {
        transform: translateX(-9px);
    }
}

.card-news:focus .card-news-picture picture img,
.card-news:hover .card-news-picture picture img {
    transform: scale(1);
}

/* ### footer ### */
.footer {
    padding-top: 48px;
    overflow: hidden;
    width: 100%;
}

.footer-upper {
    margin-bottom: 64px;
}

.footer-logo {
    margin-bottom: 41px;
}

.footer-logo img {
    max-width: 158px;
}

.footer-column {
    margin-bottom: 16px;
    border: 1px solid var(--color-blue-50);
    border-radius: 10px;
}

.footer-title {
    padding: 12px 15px;
    position: relative;
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-blue-default);
}

.footer-title:after {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 24px;
    height: 24px;
    background: url('../images/angle-down.svg') no-repeat center right;
    transform: translateY(-50%);
    transition: var(--duration);
    content: '';
    pointer-events: none;
}

.footer-title.active:after {
    transform: translateY(-50%) rotate(-180deg);
}

.footer-hidden {
    display: none;
    height: 100%;
}

.footer address {
    color: var(--color-black-default);
    font-style: normal;
    line-height: 1.5;
    font-weight: 500;
    font-size: 0.875rem;

    + a {
        margin-top: 16px;
        color: var(--color-black-default);
        text-decoration: underline;
    }
}

.footer ul {
    padding: 0 15px 15px;
    list-style: none;
}

.footer li {
    margin-bottom: 3px;
}

.footer li:last-of-type {
    margin-bottom: 0;
}

.footer li a {
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: var(--color-black-default);
    text-decoration: none;
}

.footer li a:focus,
.footer li a:hover {
    color: var(--color-blue-200);
}

.footer-info {
    padding: 0 15px 15px;
    @media (width > 767px) {
        display: flex;
        flex-direction: column;
    }
}

.footer .email {
    margin-top: 4px;
    margin-bottom: 10px;
}

.footer .email,
.footer .tel {
    min-width: 148px;
}

.footer-bottom {
    padding: 31px 0 26px;
    position: relative;
}

.footer-bottom:after {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    border-radius: 20px 20px 0 0;
    background-color: var(--color-blue-50);
    content: '';
    pointer-events: none;
}

.footer-item {
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.footer-item:nth-child(3) {
    display: flex;
    flex-wrap: wrap;
}

.footer-item-title {
    margin-bottom: 14px;
    width: 100%;
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    color: rgba(0, 64, 110, 0.3);
    text-transform: uppercase;
}

.footer-item p {
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
    max-width: 146px;
}

.footer-partners {
    display: flex;
    flex-wrap: wrap;
    border-radius: 8px;
    background-color: var(--color-white-default);
}

.footer-partners .logo {
    padding: 0 10px;
    border-right: 1px solid rgba(0, 64, 110, 0.08);
    border-bottom: 1px solid rgba(0, 64, 110, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 83px;
    width: 50%;
}

.footer-partners .logo:last-of-type {
    border-right: 0;
    border-bottom: 0;
}

.footer-partners .logo:nth-last-child(2) {
    border-bottom: 0;
}

.footer-map {
    margin-top: -15px;
    margin-left: auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 192px;
    height: 227px;
    flex: 0 0 auto
}

.footer-map img {
    width: 100%;
}

.footer-map a {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--color-blue-default);
    animation: pulse-animation 2s infinite;
}

.footer-copyright {
    padding-top: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
    font-size: 0.75rem;
    color: rgba(0, 64, 110, 0.3);
    text-align: center;
    width: 100%;
}

.footer-copyright .links {
    margin-bottom: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.footer-copyright span {
    display: inline-block;
    width: 100%;
}

.footer-copyright a {
    margin-right: 24px;
    display: inline-flex;
    color: rgba(0, 64, 110, 0.3);
    text-decoration: none;
    transition: var(--duration);
}

.footer-copyright a:last-of-type {
    margin-right: 0;
}

.footer-copyright a:focus,
.footer-copyright a:hover {
    color: var(--color-blue-default);
}

.footer-copyright .horse-icn {
    margin-right: 0;
    position: absolute;
    bottom: 1px;
    left: 0;
    opacity: 0.15;
    transition: var(--duration);
}

.footer-copyright .horse-icn:focus,
.footer-copyright .horse-icn:hover {
    opacity: 1;
}

/* ### swiper ### */
.swiper-pagination-bullet {
    width: 22px;
    height: 10px;
    opacity: 1;
    border-radius: 5px;
    background-color: var(--color-orange-100);
    transition: var(--duration);
}

.swiper-pagination-bullet-active {
    width: 10px;
    background-color: var(--color-orange-500);
}

.swiper-button-prev,
.swiper-button-next {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: unset;
    width: 88px;
    height: 68px;
    border: 0;
    background: url('../images/slider-arrow-prev.svg') no-repeat transparent;
    overflow: hidden;

    @media (width < 768px) {
        scale: .8;
    }
}

.swiper-button-prev {
    transform: translateX(10px);
}

.swiper-button-next {
    margin-left: 20px;
    background: url('../images/slider-arrow-next.svg') no-repeat transparent;
    transform: translateX(-10px);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    display: none;
}

.swiper-button-prev img,
.swiper-button-next img {
    transition: var(--duration);
}

.swiper-button-prev .on-hover {
    transform: translateX(50px);
}

.swiper-button-next .on-hover {
    transform: translateX(-50px);
}

.swiper-button-prev .without-hover {
    transform: translateX(15px);
}

.swiper-button-next .without-hover {
    transform: translateX(-16px);
}

.swiper-button-prev:hover .on-hover {
    transform: translateX(-16px);
}

.swiper-button-prev:hover .without-hover {
    transform: translateX(-50px);
}

.swiper-button-next:hover .on-hover {
    transform: translateX(15px);
}

.swiper-button-next:hover .without-hover {
    transform: translateX(50px);
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 64, 110, 0.70);
    }

    100% {
        box-shadow: 0 0 0 5px rgba(0, 64, 110, 0);
    }
}

@keyframes pulse-animation-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(240, 120, 31, 0.44);
    }

    100% {
        box-shadow: 0 0 0 5px rgba(240, 120, 31, 0.44);
    }
}

/* #Media Queries
================================================== */
@media only screen and (min-width: 768px) {
    :root {
        --font-size-h1: 3rem;
        --font-size-h2: 2.5rem;
        --font-size-h3: 2rem;
        --font-size-h4: 1.75rem;
        --font-size-h5: 1.5rem;
        --font-size-h6: 1.25rem;
    }

    .centered-fluid,
    .centered {
        padding-right: var(--space-right);
        padding-left: var(--space-left);
    }

    .button-link i.on-hover {
        margin-right: 14px;
        margin-left: -34px;
    }

    .button-link i.without-hover {
        margin-left: 14px;
        opacity: 1;
        visibility: visible;
    }

    .button-link:focus i.on-hover,
    .button-link:hover i.on-hover {
        margin-left: 0;
    }

    .button-link:focus i.without-hover,
    .button-link:hover i.without-hover {
        opacity: 0;
        visibility: hidden;
    }

    .usps {
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 1rem;
    }

    .usps-block {
        line-height: var(--line-height-base);
    }

    .usps p strong {
        font-size: 1.125rem;
        display: inline-block;
    }

    .hero {
        padding-top: 167px;
        padding-bottom: 90px;
        min-height: 620px;
    }

    .hero:after {
        display: none;
    }

    .hero h1 {
        margin-bottom: 48px;
    }

    .hero-intro {
        max-width: 370px;
        text-align: start;
        margin-bottom: 0;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 4px;
    }

    .hero-photo {
        display: block;
    }

    .hero-list {
        display: none;
    }

    .hero-shape-bottom {
        display: block;
    }

    .choose {
        padding-bottom: 60px;
    }

    .choose-left,
    .choose-intro {
        display: block;
    }

    .choose-list {
        display: none;
    }

    .about {
        padding-top: 70px;
        padding-bottom: 103px;
    }

    .about h2 {
        margin-bottom: 31px;
    }

    .about p {
        margin-bottom: 41px;
        font-size: 1.125rem;
        line-height: 1.6;
    }

    .about-holder {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .about-left {
        margin-bottom: 0;
        padding-right: 20px;
        width: 50%;
    }

    .about-right {
        padding-left: 10px;
        width: 50%;
    }

    .about-plus {
        width: 100px;
        top: 40px;
        left: -29px;
    }

    .about-plus.medium {
        width: 63px;
    }

    .about-plus.small {
        width: 42px;
    }

    .about-shape {
        width: 501px;
        top: -103px;
        right: -193px;
    }

    .news {
        padding-top: 59px;
        padding-bottom: 23px;
    }

    .news h2 {
        margin-bottom: 50px;
        text-align: left;
    }

    .news-holder {
        position: relative;
    }

    .news .swiper {
        overflow: hidden;
    }

    .news-view-more {
        position: absolute;
        top: 2px;
        right: 0;
    }

    .news-pagination {
        margin-bottom: 0;
    }

    .faq {
        padding-top: 115px;
        padding-bottom: 103px;
    }

    .faq h2 {
        margin-bottom: 34px;
    }

    .faq:after {
        position: absolute;
        top: 10px;
        left: 0;
        width: 579px;
        height: 783px;
        display: none;
        opacity: 0.2;
        clip-path: ellipse(25% 40% at 50% 50%);
        background: linear-gradient(0deg, rgba(250, 171, 84, 1) 0%, rgba(250, 171, 84, 0.01) 100%);
        content: '';
    }

    .faq-holder {
        display: flex;
        flex-wrap: wrap;
    }

    .faq-left {
        padding-right: 20px;
        width: 50.5%;
    }

    .faq-right {
        padding-top: 34px;
        padding-left: 2px;
        width: 49.5%;
    }

    .faq-left .picture {
        max-width: 527px;
        display: block;
    }

    .faq-shape {
        width: 510px;
        margin-left: -433px;
        display: block;
    }

    .accordion-item.is-hidden {
        display: none;
    }

    .accordion-title {
        line-height: var(--line-height-base);
    }

    .accordion-title:after {
        right: 3px;
    }

    .cta {
        padding-top: 42px;
    }

    .cta:after {
        height: 35px;
    }

    .cta-holder {
        display: flex;
        flex-wrap: wrap;
    }

    .cta-left {
        padding: 40px;
        width: 57.8%;
    }

    .cta-left h2 {
        margin-bottom: 3px;
    }

    .cta-left p {
        margin-bottom: 22px;
    }

    .cta-right {
        width: 42.2%;
    }

    .cta-right img {
        object-position: top left;
    }

    .cta-right img.is-phone {
        display: none;
    }

    .cta-right img.is-desktop {
        display: block;
    }

    .banner {
        padding-top: 125px;
    }

    .banner h1 {
        margin-bottom: 31px;
    }

    .banner-intro {
        width: 48%;
        font-size: 1.125rem;
        padding-bottom: 30px;
        max-width: 581px;
    }

    .banner-right {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: var(--height);
        margin: 0;
        overflow: hidden;
    }

    .banner-photo {
        width: var(--width);
        height: var(--height);
        clip-path: ellipse(678px 845px at 686.9px 49%);
        display: block;
    }

    .banner-photo img {
        width: var(--width);
        height: var(--height);
        object-fit: cover;
    }

    .banner-mobile {
        display: none;
    }

    .banner-shape {
        display: block;
    }

    .result-left {
        width: 45%;
        margin-right: 30px;
        margin-bottom: 0;
    }

    .result-right {
        padding-left: 20px;
        padding-bottom: 39px;
        border-left: solid 1px var(--color-black-50);
    }

    .result-column {
        width: auto;
        min-width: 40%;
    }

    .testimonial {
        padding-top: 69px;
        padding-bottom: 95px;
    }

    .testimonial h2 {
        margin-bottom: 66px;
    }

    .testimonial .swiper-slide {
        width: 525px;
        height: unset;
    }

    .testimonial-arrows {
        padding-top: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -40%);
        width: 665px;
        height: 68px;
        justify-content: space-between;
    }

    .register {
        margin-bottom: 0;
        padding-top: 80px;
    }

    .register h2 {
        margin-bottom: 56px;
    }

    .register-holder {
        padding-bottom: 63px;
        display: flex;
        flex-wrap: wrap;
        border-bottom: 1px solid var(--color-blue-50);
    }

    .register-left {
        margin-bottom: 0;
        padding-top: 4px;
        padding-right: 4px;
        width: 59%;
    }

    .register-left .button.no-button {
        margin-top: 20px;
    }

    .register-right {
        padding-left: 25px;
        width: 41%;
    }

    .register-right .card-help {
        margin-left: auto;
        max-width: 339px;
        position: sticky;
        top: 150px;
    }

    .register-text {
        display: none;
    }

    .intro {
        margin-bottom: 120px;
        grid-column-gap: 40px;
        display: grid;
        grid-template-columns: repeat(2, 2fr);
    }

    .blessing {
        margin-top: 33px;
        padding-top: 0;
        padding-bottom: 103px;
    }

    .blessing-holder {
        display: flex;
        flex-wrap: wrap;
    }

    .blessing-left {
        padding-top: 117px;
        padding-right: 8px;
        width: 50%;
    }

    .blessing-right {
        margin-top: -33px;
        padding-left: 11px;
        width: 50%;
    }

    .blessing-text {
        margin-bottom: 50px;
        max-width: 528px;
    }

    .blessing-text h2 {
        margin-bottom: 40px;
        line-height: 1.2;
    }

    .blessing-faq {
        margin-bottom: 0;
    }

    .blessing-faq h3 {
        margin-bottom: 53px;
        padding-left: 75px;
    }

    .blessing-faq h3 span img {
        width: 16px;
        height: 26px;
    }

    .blessing-shape {
        top: 33px;
        right: -358px;
        width: 823px;
    }

    .blessing-plus {
        top: auto;
        right: 4%;
        bottom: 7px;
        left: auto;
        width: 80px;
        height: 80px;

        &.top-left {
            bottom: unset;
            top: 21%;
            left: -30px;
        }
    }

    .blessing-plus.medium {
        top: auto;
        right: 35%;
        bottom: 13px;
        left: auto;
        width: 65px;
        height: 65px;
    }

    .blessing-plus.small {
        top: auto;
        right: 29%;
        bottom: -58px;
        left: auto;
        width: 43px;
        height: 43px;
    }

    .card-register {
        margin-bottom: 28px;
        padding-bottom: 27px;
        display: flex;
    }

    .card-register-photo {
        margin-top: 4px;
        margin-bottom: 0;
        flex: 0 0 auto;
        align-self: baseline;
    }

    .card-register-photo img.d-desktop {
        display: block;
    }

    .card-register-photo img.d-phone {
        display: none;
    }

    .card-register-text {
        margin-left: 20px;
    }

    .card-register-title {
        margin-bottom: 31px;
        font-size: 1.5rem;

        @media (width < 768px) {
            font-size: 1.25rem;
        }
    }

    .card-testimonial {
        padding: 39px 42px 30px 40px;
    }

    .card-testimonial-title {
        margin-bottom: 9px;
        font-size: 1.25rem;
        line-height: 1.5;

        @media (width < 768px) {
            font-size: 1rem;
        }
    }

    .card-testimonial-quote {
        width: 134px;
        height: 93px;
        bottom: -34px;
        right: -14px;
    }

    .card-news-title {
        margin-bottom: 9px;
        font-size: 1.25rem;
        line-height: 1.5;

        @media (width < 768px) {
            font-size: 1rem;
        }
    }

    .card-news-picture picture img {
        min-height: auto;
    }

    .card-news-tag {
        top: 16px;
        left: 16px;
    }

    .card-news p {
        margin-bottom: 22px;
    }

    .card-help {
        padding: 38px 48px 48px 48px;
    }

    .card-help-photo:after {
        opacity: 0.1;
    }

    .footer {
        padding-top: 86px;
    }

    .footer-upper {
        margin-bottom: 45px;
    }

    .footer-logo img {
        max-width: var(--width);
    }

    .footer-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-column {
        padding-right: 10px;
        border: 0;
    }

    .footer-column:last-of-type {
        padding-right: 0;
    }

    .footer-title {
        margin-bottom: 10px;
        padding: 0;
        font-size: 0.875rem;
        text-transform: uppercase;
    }

    .footer-title:after {
        display: none;
    }

    .footer-hidden {
        display: block !important;
        height: auto !important;
        overflow: inherit;
    }

    .footer-info,
    .footer ul {
        padding: 0;
    }

    .footer-bottom {
        padding: 42px 0 22px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-partners {
        flex-wrap: inherit;
    }

    .footer-partners .logo {
        width: auto;
        border-bottom: 0;
        flex: 1 auto;
    }

    .footer-item {
        margin-bottom: 31px;
    }

    .footer-item:nth-child(1) {
        width: 35%;
    }

    .footer-item:nth-child(2) {
        width: 60%;
    }

    .footer-item:nth-child(3) {
        width: 100%;
    }

    .footer-item p {
        max-width: 100%;
    }

    .footer-map {
        width: 175px;
        height: 207px;
    }

    .footer-map a {
        width: 6px;
        height: 6px;
    }

    .footer-copyright {
        padding-top: 0;
        justify-content: flex-start;
    }

    .footer-copyright .horse-icn {
        top: 2px;
        bottom: auto;
        left: -35px;
    }

    .footer-copyright span {
        order: 1;
        width: auto;
    }

    .footer-copyright span:after {
        margin: 0 15px 0 17px;
        display: inline-block;
        vertical-align: middle;
        width: 1px;
        height: 12px;
        background-color: rgba(0, 64, 110, 0.1);
        content: '';
    }

    .footer-copyright .links {
        margin-bottom: 0;
        order: 2;
        width: auto;
    }
}

@media only screen and (min-width: 1025px) {
    :root {
        --space-left: 3rem;
        --space-right: 3rem;
    }

    .header-logo {
        width: 132px;
    }

    .header-result {
        margin-bottom: -45px;
        border-radius: 75px;
    }

    .header-result-left {
        display: block;
    }

    .header-result-link {
        display: flex;
        @media (width < 1200px) {
            padding-right: 8px;
        }

    }

    .header-result-select, .mobile-header-result {
        display: none;
    }

    .header-menu li .header-menu-sub {
        padding: 31px 31px 28px 31px;
    }

    .header-hamburger {
        right: 48px;
    }

    .hero {
        margin-top: -88px;
        min-height: 751px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero-intro {
        max-width: 524px;
        padding-top: 45px;
    }

    .hero-plus {
        bottom: 36px;
        width: 96px;
    }

    .hero-plus.medium {
        right: -64px;
    }

    .hero-shape {
        top: -224px;
    }

    .choose-left {
        width: 74.6%;
        margin-bottom: 0;
    }

    .choose-intro {
        width: 23%;
    }

    .choose-title {
        margin-bottom: 36px;
    }

    .cta-left {
        padding: 47px 64px 40px;
    }

    .result-left {
        width: 29.99%;
    }

    .result-right {
        flex-wrap: nowrap;
    }

    .about h2 {
        font-size: var(--font-size-h1);
    }

    .about-left {
        padding-top: 57px;
        width: 42%;
    }

    .about-plus {
        width: 151px;
        top: 92px;
    }

    .banner-intro .breadcrumb {
        margin-bottom: 59px;
    }

    .banner-shape {
    //right: -137px;
    }

    .news-pagination {
        padding-top: 0;
    }

    .faq-shape {
        width: 579px;
        margin-left: -633px;
    }

    .intro {
        margin-bottom: 180px;
        grid-column-gap: 64px;
    }

    .blessing-text {
        margin-bottom: 120px;
    }

    .blessing-faq h3 {
        padding-left: 95px;
    }

    .blessing-faq h3 span {
        top: 4px;
        left: -1px;
        width: 72px;
        height: 72px;
    }

    .blessing-plus {
        bottom: -4px;
        width: 100px;
        height: 100px;

        &.top-left {
            bottom: unset;
            top: 21%;
            left: -30px;
        }
    }

    .register-left {
        padding-right: 15px;
    }

    .card-news {
        padding: 15px;
    }

    .card-register-text {
        margin-left: 48px;
    }

    .card-help {
        padding-top: 38px;
    }

    .footer-upper {
        display: flex;
        flex-wrap: wrap;
    }

    .footer-logo {
        margin-bottom: 0;
        margin-top: 1px;
        padding-right: 20px;
        width: 26%;
    }

    .footer-nav {
        padding-left: 3px;
        width: 74%;
    }

    .footer-map {
        margin-top: 0;
        position: absolute;
        top: -20px;
        right: 0;
    }

    .footer-item:nth-child(1) {
        width: 22%;
    }

    .footer-item:nth-child(2) {
        width: 45%;
    }

    .footer-item:nth-child(3) {
        padding-right: 175px;
        width: 30%;
    }
}

@media only screen and (min-width: 1200px) {
    .header {
        border-radius: 0 0 16px 16px;
    }

    .header:after {
        height: calc(100% + 6px);
        background-color: rgba(255, 255, 255, .30);
        border-radius: 0 0 16px 16px;
        display: block;
    }

    .header-right {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 0;
        position: relative;
        top: unset;
        left: unset;
        width: auto;
        height: auto;
        overflow-y: unset;
        background-color: transparent;
        z-index: unset;
        flex-direction: unset;
        opacity: 1;
        visibility: visible;
        transition: unset;
    }

    .header-right .card-search {
        display: none;
    }

    .header-button {
        padding: 0;
        justify-content: unset;
        width: auto;
        margin-top: unset;
    }

    .header-button .button-portal {
        margin-right: -5px;
    }

    .header-button:after {
        display: none;
    }

    .header.inner .header-wrap {
        margin-bottom: 23px;
    }

    .header-menu {
        width: auto;
    }

    .header-menu ul {
        display: flex;
        flex-wrap: wrap;
    }

    .header-menu li {
        padding: 0;
        font-size: 0.938rem;
        border-bottom: none;
    }

    .header-menu li a {
        padding: 11px 10px;
        display: inline-flex;
    }

    .header-menu li a svg.caret-arrow {
        display: inline-block;
    }

    .header-menu li:focus a,
    .header-menu li:hover a,
    .header-menu li a:focus,
    .header-menu li a:hover {
        color: var(--color-orange-500);
    }

    .header-menu li:hover li:focus a,
    .header-menu li:hover li a {
        color: var(--color-black-default);
    }

    .header-menu li a.button-role {
        padding: 11px 16px;
        font-size: 0.938rem;
        color: var(--color-white-default);
        display: inline-flex;
        align-items: center;
        border: 0;
        background-color: var(--color-blue-default);
        border-radius: 8px;
        font-weight: var(--font-weight-semibold);
    }

    .header-menu li a.button-role svg {
        margin: 0;
        display: inline-block;
    }

    .header-menu li a.button-role span {
        margin: 0 12px 0 13px;
        display: inline-block;
    }

    .header-menu li .header-menu-dropdown {
        padding-top: 52px;
        position: absolute;
        top: 0;
        left: -85px;
        opacity: 0;
        visibility: hidden;
        transition: var(--duration);
        display: block;
        margin-top: 0;
        width: fit-content;
    }

    .header-menu li .header-menu-dropdown.parent {
        left: -95px;
    }

    .header-menu li .header-menu-dropdown.parent .header-menu-sub {
        padding: 15px 23px 15px 15px;
        border-radius: 15px;
        border: solid 1px var(--color-sl-blue-400);
    }

    .header-menu li:hover .header-menu-dropdown {
        opacity: 1;
        visibility: visible;
        top: 100%;
    }

    .header-menu li:hover .header-menu-dropdown.parent {
        top: 64%;
    }

    .header-menu li:has(.header-menu-dropdown + .li:hover):not(:hover) .header-menu-dropdown {
        transition-duration: 0s;
    }

    .header-menu li:hover + li:not(:hover) .header-menu-dropdown {
        transition-duration: 0s;
    }

    .header-menu li a.card-agency {
        padding: 0;
        display: flex;
    }

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

    .header.inner .header-menu li a.button-role {
        padding: 11px 8px;
    }

    .header.inner .header-menu li a.button-role span {
        margin: 0 8px;
    }

    .header.inner .button-portal {
        padding-right: 20px;
    }

    .header-result {
        padding-right: 48px;
    }

    .header-result-left {
        max-width: 320px;
    }

    .header-result-link li:not(:last-child) {
        margin-right: 21px;
    }

    .header-result-link li:first-child {
        padding-right: 19px;
    }

    .header-hamburger {
        display: none;
    }

    .header-search {
        display: inline-block;
    }

    .hero-photo {
        width: 40.9%;
        margin-right: 108px;
    }

    .choose-column {
        padding: 16px 32px 44px 32px;
    }

    .choose-intro {
        width: 20.8%;
    }

    .choose-title {
        padding-right: 10%;
    }

    .result-left {
        margin-right: 49px;
    }

    .result-right {
        padding-left: 50px;
    }

    .intro {
        margin-bottom: 157px;
    }

    .blessing-plus {
        bottom: -15px;
        width: 151px;
        height: 151px;
    }

    .card-event-photo {
        margin-right: 24px;
    }

    .card-post-photo {
        margin-right: 24px;
    }

    .card-agency-info {
        line-height: 1.2;
        font-size: 1rem;
        padding-bottom: 7px;
    }

    .card-agency-info strong {
        font-size: 1rem;
        font-family: var(--font-family-base);
    }

    .card-news {
        padding: 32px;
    }

    .footer-item:nth-child(1) {
        width: 21.6%;
    }

    .footer-item:nth-child(2) {
        width: 43.5%;
    }

    .footer-item:nth-child(3) {
        padding-left: 12px;
        width: 27.5%;
    }
}

@media only screen and (min-width: 1440px) {
    :root {
        --space-left: 5rem;
        --space-right: 5rem;
    }

    .centered-fluid {
        padding-right: var(--space-right);
        padding-left: var(--space-left);
    }

    .centered {
        padding-right: calc((100% - var(--width-base)) / 2);
        padding-left: calc((100% - var(--width-base)) / 2);
    }

    .header-search {
        margin-left: 23px;
        padding-left: 25px;
    }

    .header-button {
        margin-left: 29px;
    }

    .header.inner .header-menu li a.button-role {
        padding: 11px 16px;
    }

    .header.inner .header-menu li a.button-role span {
        margin: 0 12px 0 13px;
    }

    .header.inner .button-portal {
        padding-right: 29px;
    }

    .header-menu li a {
        padding: 11px 12px;
    }

    .header-menu li a svg {
        margin-right: 10px;
    }

    .header-menu li a.button-role {
        margin-right: 14px;
    }

    .header-menu li a.card-agency {
        padding: 0;
    }

    .choose-column {
        padding: 16px 50px 44px 32px;
        gap: 65px;
    }

    .choose-column-items:not(:last-child):after {
        right: -33px;
    }

    .result-right {
        padding-left: 66px;
        gap: 107px;
    }

    .card-choose-info strong {
        font-size: 2rem;

    }

    .footer-upper {
        padding-right: 43px;
    }

    .footer-map {
        right: 25px;
    }

    .footer-copyright .horse-icn {
        left: -64px;
    }
}

@media only screen and (min-width: 1500px) {
    .centered-fluid {
        padding-right: calc((100% - var(--width-fluid)) / 2);
        padding-left: calc((100% - var(--width-fluid)) / 2);
    }
}

main {
    padding-top: 88px;
}

body:has(.header-result) {
    main {
        padding-top: 129px;
    }
}

.template-ouder-verzorger {
    .banner {
        @media (min-width: 768px) {
            padding-top: 100px;
            min-height: 500px;
        }

        .banner-intro {
            max-width: 490px;
        }
    }
}

.template-vraagstukken {
    .register-holder {
        border-bottom: unset;
    }

    .breadcrumb li a, .breadcrumb li span {
        background-color: var(--color-blue-600);
    }

    .banner {
        @media (width > 1025px) {
            padding-top: 100px;
            min-height: 500px;
        }
    }

    .banner-intro .breadcrumb {
        @media (width > 1025px) {
            margin-bottom: 47px;
        }
    }
}

#filter-dialog {
    max-width: 431px;
    border-radius: 15px;
    box-shadow: 0 0 14px 10px rgba(0, 0, 0, 0.03);
    inset: 24px 24px 20px auto;
    max-height: unset;
    border: unset;
    font-family: var(--font-family-base);
    width: 100%;
    height: calc(100% - 48px);
    flex-direction: column;

    @media (width < 480px) {
        inset: 24px;
        width: calc(100% - 48px);
    }

    &[open] {
        display: flex;
    }

    &::backdrop {
        background-color: rgba(0, 0, 0, 0.08);
    }

    header {
        height: 63px;
        box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.05);
        padding-inline: 24px;
        padding-block: 11px 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky;
        top: 0;

        h2 {
            color: var(--color-black-default);
            font-size: 1rem;
            font-style: normal;
            font-weight: 600;
            line-height: 120%; /* 1.2rem */
            margin-bottom: 0;
            font-family: var(--font-family-base);
        }

        button {
            border-radius: 6px;
            background-color: var(--color-orange-500);
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: unset;
            padding: unset;
            /*margin-left: 12px;*/
            cursor: pointer;
            transition: var(--duration);
        }
    }

    footer {
        box-shadow: 0 -3px 11px 0 rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 22px 24px 22px 22px;
        height: 63px;
        position: sticky;
        bottom: 0;

        button {
            appearance: none;
            background-color: unset;
            border: unset;
            color: var(--color-black-default);
            font-size: 1rem;
            font-weight: 600;
            font-family: var(--font-family-base);
            cursor: pointer;

            &:hover, &:focus {
                color: var(--color-orange-500);
            }
        }

        .filter-options-selected {
            color: var(--color-black-400);
            font-size: 0.875rem;
            font-weight: 400;
            line-height: 1.2;
            opacity: 0.4;
            text-align: right;
        }
    }

    fieldset {
        margin: 0;
        border: unset;
        padding: 0;

        &:has(+ fieldset) {
            padding-bottom: 32px;
            border-bottom: 1px solid #E8E8E8;
        }

        + fieldset {
            margin-top: 32px;
        }

        legend {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 19px;

            span {
                font-family: var(--font-family-plume);
                font-size: 1.125rem;
                font-style: normal;
                font-weight: 700;
                line-height: 120%; /* 1.35rem */
                letter-spacing: -0.0625rem;
                color: var(--color-blue-default);
            }

            button {
                appearance: none;
                background-color: unset;
                border: unset;
                color: var(--color-black-200);
                font-family: var(--font-family-base);
                text-align: right;
                font-size: 0.875rem;
                font-style: normal;
                font-weight: 400;
                line-height: 120%; /* 1.05rem */
                cursor: pointer;

                &:hover, &:focus {
                    color: var(--color-black-default);
                }
            }
        }
    }

    label {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;

        &:not(:last-child) {
            margin-bottom: 6px;
        }

        span {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
            color: var(--color-black-default);
            text-overflow: ellipsis;
            line-height: 1.6;
        }

        input {
            width: 21px;
            height: 21px;
            appearance: none;
            position: relative;
            padding: 0;
            min-height: unset;
            border: 0;
            display: flex;
            align-items: center;
            justify-content: center;

            &:before {
                width: 21px;
                height: 21px;
                border: 1px solid var(--color-white-600);
                display: block;
                border-radius: 5px;
                content: '';
                transition: var(--duration);
                box-sizing: border-box;
            }

            &:after {
                width: 11px;
                height: 10px;
                background-image: url('../images/icon-check-white.svg');
                display: block;
                background-repeat: no-repeat;
                background-size: contain;
                content: '';
                opacity: 0;
                transition: var(--duration);
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

            &:checked:before {
                background-color: var(--color-orange-500);
                border-color: var(--color-orange-500);
            }

            &:checked:after {
                opacity: 1;
            }
        }
    }

    form {
        padding: 32px 24px;
        flex: 1;
        overflow-y: auto;
    }
}

.content {
    padding-block: 80px;

    @media (width < 768px) {
        padding-block: 40px;
    }

    &:has(.news-detail-info) {

    }

    .news-detail-info {
        border-bottom: 1px solid var(--color-blue-50);
        margin-bottom: 48px;

        .card-help-photo {
            width: 69px;
            margin-right: 13px;

            img {
                margin-left: 0;
            }
        }

        .card-help-client {
            align-items: center;
        }

        .card-help-text {
            font-size: 0.875rem;
            font-style: normal;
            font-weight: 400;
            line-height: 150%; /* 1.3125rem */
            color: var(--color-black-300);

            span {
                font-size: 0.875rem;
                font-style: normal;
                font-weight: 600;
                line-height: 150%; /* 1.3125rem */
                color: var(--color-black-default);
            }
        }
    }

    .content-holder {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 20px;
    }

    .content-left {
        max-width: 784px;
        min-width: 300px;
        width: 100%;
        flex: 1 1;

        .rte {
            padding-bottom: 32px;

            &.text-only {
                p:first-child {
                    font-size: 1.25rem;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 150%; /* 1.875rem */
                    margin-bottom: 49px;
                }

                h2, h3, h4 {
                    font-family: var(--font-family-base);
                    font-size: 1.125rem;
                    font-style: normal;
                    font-weight: 600;
                    line-height: 120%; /* 1.35rem */
                    color: var(--color-black-default);
                    margin-bottom: 8px;
                }

                p {
                    margin-bottom: 36px;
                }

                .button {
                    color: var(--color-white-default);
                    text-decoration: none;
                    margin-top: 9px;
                }
            }
        }

        figure {
            padding-top: 48px;
            padding-bottom: 65px;

            @media (width < 768px) {
                padding-top: 0;
                padding-bottom: 32px;
            }

            figcaption {
                text-align: center;
                padding-top: 10px;
                color: var(--color-black-200);
                font-size: 0.875rem;
                font-weight: 500;
                line-height: 1.5;
            }
        }

        .centered-quote {
            padding-inline: 0;

            .centered-quote-holder {
                flex-wrap: nowrap;

                @media (width < 1024px) {
                    flex-direction: column-reverse;
                    align-items: center;
                }
            }

            .centered-quote-left {
                .centered-quote-photo {
                    @media (width > 768px) {
                        position: static;
                    }

                    img {
                        max-width: 264px;
                    }
                }
            }

            .centered-quote-right {
                margin-right: 40px;
                padding-left: 20px;

                @media (width < 1024px) {
                    margin-right: 0;
                    padding-left: 0;
                    padding-block: 20px 0;
                }
            }
        }
    }

    .content-right {
        max-width: 340px;
        width: 100%;
        min-width: 0;

        .card-help {
            position: sticky;
            top: 150px;
        }
    }
}

.holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.contact-form {
    background: var(--color-light-blue-50);
    padding-block: 100px 82px;
    /*overflow: hidden;*/
    position: relative;

    @media (width < 768px) {
        padding-block: 50px 50px;
    }

    &:after {
        content: '';
        position: absolute;
        top: -15px;
        right: 0;
        width: 544px;
        height: 1057px;
        background: url('../images/contact-form-shape-whole.svg') no-repeat;
        display: block;
        z-index: 1;
    }

    &:has( + .cta ) {
        & + .cta {
            background: var(--color-light-blue-50);
        }
    }

    &.small-form {
        padding-block: 77px 89px;

        @media (width < 768px) {
            padding-block: 40px;
        }

        &::after {
            display: none;
        }

        .holder {
            max-width: 850px;
            margin: 0 auto;
            column-gap: 15px;
            row-gap: 20px;
        }

        .contact-title {
            flex: 1 1 100%;

            h2 {
                font-size: 2.5rem;
                font-style: normal;
                font-weight: 700;
                line-height: 120%; /* 3rem */
                letter-spacing: -0.0625rem;

                @media (width < 768px) {
                    font-size: 2rem;
                }
            }
        }

        .contact-info {
            max-width: 310px;
            padding-top: 0;
        }

        .card-help {
            padding-top: 7px;

            .card-help-buttons {
                flex-direction: column;
                align-items: baseline;

                .button-flip {
                    margin-bottom: 0;
                }
            }
        }

        .contact-form-form {
            margin-top: 30px;
            padding: 48px 40px 48px 40px;

            @media (width < 767px) {
                padding: 28px 20px;
            }
        }
    }

    .contact-info {
        max-width: 556px;
        padding-top: 86px;
        width: 100%;
        min-width: 200px;
        flex: 1 1;

        @media (width < 768px) {
            padding-top: 0;
        }

        h2 {
            font-size: 3rem;
            line-height: 110%; /* 3.3rem */
            letter-spacing: -0.125rem;

            @media (width < 768px) {
                font-size: 2rem;
            }
        }
    }

    .card-help {
        background: none;
        padding: 0;
        padding-top: 66px;

        @media (width < 768px) {
            padding-top: 25px;
        }
    }

    .card-help-buttons {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
    }

    .contact-form-form {
        max-width: 633px;
        width: 100%;
        background: var(--color-white-default);
        border-radius: 20px;
        padding: 48px;
        position: relative;
        z-index: 2;
        min-width: 300px;
        flex: 1 1;

        @media (width < 768px) {
            padding: 25px;
        }

        form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            column-gap: 20px;

            @media (width < 768px) {
                grid-template-columns: 1fr;
            }

            &:invalid {
                .form-buttons {
                    button {
                        opacity: 0.4;
                        pointer-events: none;
                    }
                }
            }

            .form-group {
                &:not(.width-50) {
                    grid-column: 1/2 span;
                    @media (width < 768px) {
                        grid-column: unset;
                    }
                }

                &.has-error {
                    border-color: var(--color-dark-orange);
                }
            }

            .form-buttons {
                grid-column: 1/2 span;
                @media (width < 768px) {
                    grid-column: unset;
                }

                button {
                    border: unset;
                    background-color: unset&:not(.checkbox, .radio) ;
                }
            }
        }
    }
}

.form-buttons {
    margin-top: 7px;
    display: flex;
    justify-content: flex-end;

    .button {
        &.no-button {
            i {
                margin-right: 0;
                margin-left: 16px;
            }

            &:hover, &:focus {
                span {
                    transform: translateX(5px);
                }
            }
        }
    }
}

.form-group {
    border-radius: 10px;
    border: 1px solid var(--color-blue-50);
    padding: 8px 16px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;

    &.has-value {
        border: 1px solid #00406E;
    }

    .error {
        color: rgb(255, 0, 0);
    }

    label {
        font-size: 1rem;
        color: var(--color-grey-dark);
        transition: var(--duration);
    }

    &.checkbox {
        border: unset;
        padding: 0;
        border-radius: 0;

        label {
            font-size: 0.875rem;
            display: flex;
            align-items: center;
            gap: 16px;
            cursor: pointer;
            transition: var(--duration);

            a {
                color: var(--color-black-default)
            }
        }

        input {
            width: 21px;
            height: 21px;
            appearance: none;
            position: relative;
            padding: 0;
            min-height: unset;
            border: 0;
            display: flex;
            align-items: center;
            justify-content: center;

            &:before {
                width: 21px;
                height: 21px;
                border: 1px solid var(--color-white-600);
                display: block;
                border-radius: 5px;
                content: '';
                transition: var(--duration);
                box-sizing: border-box;
            }

            &:after {
                width: 11px;
                height: 10px;
                background-image: url('../images/icon-check-white.svg');
                display: block;
                background-repeat: no-repeat;
                background-size: contain;
                content: '';
                opacity: 0;
                transition: var(--duration);
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
            }

            &:checked:before {
                background-color: var(--color-orange-500);
                border-color: var(--color-orange-500);
            }

            &:checked:after {
                opacity: 1;
            }
        }
    }

    &.select {
        &::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 21px;
            transform: translateY(-50%);
            width: 9px;
            height: 6px;
            background-image: url('../images/icon-caret-down-light-blue.svg');
            background-repeat: no-repeat;
            background-size: contain;
        }

        select {
            appearance: none;
        }
    }

    input[type="text"], input[type="email"], input[type="tel"], input[type="password"], textarea, select {
        color: var(--color-black-default);
        font-weight: 600;
        border: unset;
        padding: unset;
        background: unset;
        box-shadow: unset;
        font-size: 1rem;
        padding-top: 10px;
    }

    input[type="password"] {
        &::-ms-reveal {
            display: none;
        }
    }

    .reveal-password {
        width: 40px;
        height: 40px;
        border: none;
        background-color: unset;
        box-shadow: unset;
        font-size: 0;
        position: absolute;
        top: 8px;
        right: 10px;

        &:before {
            content: '';
            /*position: absolute;*/
            width: 25px;
            height: 25px;
            display: block;
            background-image: url('../images/icon-eye.svg');
        }
    }

    &:has(.reveal-password) {
        .reveal-password {
            display: none;
        }
    }

    &:has(input[type="password"]:valid, input[type="text"] + .reveal-password) {
        .reveal-password {
            display: block;
        }
    }

    input[type="text"] + .reveal-password {
        &:before {
            background-image: url('../images/icon-eye-slash.svg');
        }
    }


    textarea {
        padding-top: 15px;
    }


    &:not(.checkbox, .radio) {
        label {
            position: absolute;
            top: 15px;
        }

        &:has(input:focus, textarea:focus), &.has-value {
            /*overflow: visible;*/
            label {
                font-size: 0.75rem;
                font-weight: 500;
                top: 0;
                background: white;
                padding-inline: 5px;
                margin-inline-start: -5px;
            }
        }
    }

    &.file {
        min-height: 128px;
        padding: 0;
        border: unset;

        &.has-value {
            label {
                top: unset;
            }
        }

        label {
            position: relative;
            top: unset;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 32px 20px 19px;
            border: 1px dashed var(--color-blue-50);
            border-radius: 10px;
            cursor: pointer;


        }

        input {
            appearance: none;
            width: 0;
            height: 0;
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            padding: 0;
        }


        p {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            font-size: 1rem;
            font-style: normal;
            font-weight: 600;
            line-height: 180%; /* 1.8rem */
            color: var(--color-blue-default);

            span {
                font-size: 1rem;
                font-style: normal;
                font-weight: 400;
                line-height: 160%; /* 1.6rem */
                color: var(--color-grey-dark);
            }
        }

        .file-upload-list {
            list-style: unset;
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;

            li {
                display: flex;
                gap: 10px;
                border-radius: 10px;
                border: 1px solid var(--color-blue-50);
                padding: 12px 17px 13px 15px;
                align-items: center;

                .file-upload-icon {
                    margin-right: 3px;
                }

                .file-upload-name {
                    display: flex;
                    flex-direction: column;
                    flex: 1;

                    span {
                        &:first-child {
                            font-size: 0.875rem;
                            font-style: normal;
                            font-weight: 600;
                            line-height: 1;
                            font-family: var(--font-family-base);
                            color: var(--color-black-default);
                        }

                        &:last-child {
                            font-size: 0.75rem;
                            font-style: normal;
                            font-weight: 500;
                            line-height: 1;
                            font-family: var(--font-family-base);
                            color: var(--color-black-300);
                            margin-top: 6px;
                        }
                    }
                }

                .file-upload-remove {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    appearance: none;
                    border: 0;
                    background-color: unset;
                    cursor: pointer;
                }
            }
        }
    }
}

.template-events {
    .banner {
        @media (width > 768px) {
            padding-top: 141px;
            min-height: 541px;
        }
    }
}

.events-overview {
    background-color: var(--color-light-blue-50);
    padding-block: 78px 82px;

    @media (width < 1024px) {
        padding-block: 50px 50px;
    }

    &:has(+ .cta) {
        & + .cta {
            background-color: var(--color-light-blue-50);
        }
    }

    .events-overview-title-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 63px;

        @media (width < 1024px) {
            margin-bottom: 30px;
        }

        h2 {
            text-transform: uppercase;
            font-weight: 700;
            font-family: var(--font-family-base);
            margin-bottom: 0;
        }

        button {
            appearance: none;
            background-color: unset;
            border: unset;
            display: flex;
            align-items: center;

            &:hover {
                .icon {
                    img {
                        transform: rotate(23deg);
                    }
                }

                span:not(.icon) {
                    padding-right: 12px;
                }
            }

            span:not(.icon) {
                font-family: var(--font-family-base);
                font-size: 0.9375rem;
                font-weight: 500;
                line-height: 1.2;
                padding-right: 16px;
                transition: var(--duration);
            }

            .icon {
                width: 41px;
                height: 41px;
                background-color: var(--color-blue-default);
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;

                &[data-count] {
                    position: relative;

                    &:after {
                        position: absolute;
                        top: -9px;
                        right: -7px;
                        width: 20px;
                        height: 20px;
                        background-color: var(--color-white-default);
                        border-radius: 50%;
                        content: attr(data-count);
                        font-size: 0.75rem;
                        color: var(--color-blue-default);
                        font-weight: 700;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                    }
                }


                img {
                    transition: var(--duration);
                    transform-origin: center center;
                }
            }
        }
    }

    .events-overview-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
        margin-bottom: 63px;

        @media (width < 1024px) {
            margin-bottom: 30px;
            grid-template-columns: 1fr 1fr;
        }

        @media (width < 480px) {
            grid-template-columns: 1fr;
        }
    }
}

.card-event {
    background: var(--color-white-default);
    border-radius: 20px;
    position: relative;
    max-width: 405px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    &:hover, &:focus {
        .button-link i.on-hover {
            margin-left: -34px;
        }

        .button-link i.without-hover {
            opacity: 1;
            visibility: visible;
        }

        .button-link i.on-hover,
        .button-link i.on-hover {
            margin-left: 0;
        }

        .button-link i.without-hover,
        .button-link i.without-hover {
            opacity: 0;
            visibility: hidden;
        }

        picture {
            img {
                scale: 1;
            }
        }
    }

    .card-event-image {
        position: relative;
        padding: 24px;
        padding-bottom: 0;

        @media (width < 767px) {
            padding: 12px;
        }

        .date {
            display: flex;
            flex-direction: column;
            padding: 8px 12px;
            border-radius: 5px;
            background-color: var(--color-blue-default);
            position: absolute;
            top: 36px;
            left: 36px;
            z-index: 2;

            span {
                &:first-child {
                    color: var(--color-white-default);
                    text-align: center;
                    font-size: 1.3125rem;
                    font-style: normal;
                    font-weight: 600;
                    line-height: 120%; /* 1.575rem */
                }

                &:last-child {
                    color: var(--color-white-default);
                    text-align: center;
                    font-size: 0.875rem;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 120%; /* 1.575rem */
                }
            }
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            position: absolute;
            bottom: 10px;
            left: 36px;
            z-index: 2;
            list-style: none;

            li {
                background-color: var(--color-white-default);
                color: var(--color-blue-default);
                font-family: Roboto, sans-serif;
                font-weight: 600;
                padding: 6px 12px;
                border-radius: 8px;

                &:has(img) {
                    padding: 6px 8px;
                    display: flex;
                    gap: 4px;
                }

            }
        }
    }

    picture {
        display: block;
        overflow: hidden;
        border-radius: 15px;
        position: relative;
        line-height: 0;

        &:before {
            content: '';
            width: 100%;
            height: 100%;
            inset: 0;
            position: absolute;
            border-radius: 15px;
            background: linear-gradient(122deg, rgba(0, 64, 110, 0.00) 20.27%, #00406E 148.44%) -136px -8px / 176.119% 107.273% no-repeat;
        }

        img {
            scale: 1.1;
            transition: var(--duration);
        }
    }

    .card-event-content {
        padding-inline: 36px;
        padding-bottom: 22px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.10);;

        @media (width < 767px) {
            padding-inline: 24px;
            padding-bottom: 11px;
        }

        h3 {
            padding-top: 24px;
            padding-block-end: 12px;
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.0625rem;
            margin-bottom: 0;

            @media (width < 768px) {
                font-size: 1.25rem;
            }
        }

        ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;

            li {
                display: flex;
                gap: 8px;
                font-size: 0.875rem;
                font-style: normal;
                font-weight: 400;
                line-height: 150%; /* 1.3125rem */
            }
        }
    }

    ul {
        list-style: none;
        padding: 0;
        margin: 0;

    }

    .buttons {
        padding-block: 22px 20px;
        padding-inline: 36px;

        @media (width < 767px) {
            padding: 11px 24px 12px;
        }
    }
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    flex-wrap: wrap;

    li {
        a, span {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 14px;
            border-radius: 8px;
            border: 1px solid var(--color-blue-50);
            background-color: var(--color-white-default);
            color: var(--color-black-default);
            font-weight: 500;
            font-size: 1rem;
            text-decoration: none;
            width: 46px;
            height: 46px;
            line-height: 1;

            @media (width < 768px) {
                width: 40px;
                height: 40px;
                padding: 11px;
            }
        }

        &:first-child {
        / / margin-right: 8 px;

            a, span {
                width: auto;
                height: auto;
            }
        }

        &:last-child {
        / / margin-left: 8 px;

            a, span {
                width: auto;
                height: auto;
            }
        }

        &.disabled, &:has(a:disabled) {
            a, span {
                color: var(--color-black-200);
                cursor: not-allowed;
                pointer-events: none;
            }

            &:hover a {
                background-color: var(--color-white-default);
                color: var(--color-black-200);
            }
        }

        &:hover, &:focus, &.active {
            a, span {
                background-color: var(--color-orange-500);
                color: var(--color-white-default);
            }
        }
    }
}

.related-events {
    background-color: var(--color-light-blue-50);
    padding-block: 48px 109px;

    @media (width < 768px) {
        padding-block: 50px 50px;
    }

    .related-events-title-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 63px;

        h2 {
            margin-bottom: 0;
            letter-spacing: -0.0625rem;
        }
    }

    .related-events-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;

        @media (width < 768px) {
            gap: 20px;
            grid-template-columns: 1fr 1fr;
        }

        @media (width < 600px) {
            grid-template-columns: 1fr;
        }
    }

    &:has(+ .cta) {
        & + .cta {
            background-color: var(--color-light-blue-50);
        }
    }
}

.template-event-detail {
    .content {
        .content-left {
            p {
                &:first-child {
                    font-size: 1.125rem;
                    font-style: normal;
                    font-weight: 600;
                    line-height: 160%; /* 1.8rem */
                    margin-bottom: 25px;
                }
            }

            a.button {
                margin-top: 61px;
                margin-bottom: 10px;

                @media (width < 768px) {
                    margin-top: 10px;
                    margin-bottom: 0;
                }
            }
        }
    }

    .contact-form {
        &:after {
            display: none;
        }
    }
}

.faq-overview {
    background-color: var(--color-light-blue-50);
    padding-block: 78px 14px;

    @media (width < 1024px) {
        padding-block: 50px 20px;
    }

    .faq-overview-container {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
        background-color: var(--color-white-default);
        border-radius: 20px;
        padding: 64px 64px 69px 64px;
        margin-bottom: 48px;

        &:last-child {
            margin-bottom: 0;
        }

        @media (width < 768px) {
            padding: 20px;
        }

        .title {
            display: flex;
            gap: 16px;
            align-items: center;
            position: sticky;
            top: 150px;

            .icon {
                width: 50px;
                height: 50px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 8px;
                background-color: var(--color-blue-default);

                @media (width < 767px) {
                    width: 40px;
                    height: 40px;
                }
            }

            h2 {
                margin-bottom: 0;
                font-family: var(--font-family-base);
                font-size: 1.5rem;
                font-style: normal;
                font-weight: 700;
                line-height: 150%; /* 2.25rem */
                color: var(--color-blue-900);

                @media (width < 768px) {
                    font-size: 1.25rem;
                }
            }
        }

        .faq-overview-container-right {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            min-width: 400px;

            @media (width < 768px) {
                min-width: 300px;
            }
        }

        .faq-overview-item {
            max-width: 632px;
            width: 100%;
            appearance: none;
            display: block;
            padding-block: 16px 16px;
            border-bottom: 1px solid rgba(0, 64, 110, 0.20);

            &:first-child {
                padding-block-start: 3px;
            }


            button {
                appearance: none;
                background-color: unset;
                border: unset;
                box-shadow: unset;
                font-size: 1rem;
                font-style: normal;
                font-weight: 600;
                line-height: 180%; /* 1.8rem */
                color: var(--color-black-default);
                position: relative;
                /*margin-bottom: 10px;*/
                width: 100%;
                text-align: left;
                cursor: pointer;
                padding-right: 20px;

                &:after {
                    content: '';
                    position: absolute;
                    top: 14px;
                    right: 0;
                    transform: translateY(-50%);
                    width: 16px;
                    height: 13px;
                    background-image: url('../images/icon-caret-down-blue.svg');
                    background-repeat: no-repeat;
                    transition: var(--duration);
                }
            }

            &.active button:after {
                transform: translateY(-50%) rotate(180deg);
            }

            .faq-overview-content {
                overflow: hidden;
                will-change: height;
                height: 0;
                padding-top: 10px;

                p:last-child {
                    margin-bottom: 0;
                }
            }

        }
    }

    &:has(+ .cta) {
        & + .cta {
            background-color: var(--color-light-blue-50);
        }
    }
}

.contact {
    background-color: var(--color-light-blue-50);
    padding-block: 116px 90px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;

    @media (width < 768px) {
        padding-block: 40px;
    }

    &:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 405px;
        height: 971px;
        background: url("../images/contact-path.svg");
        z-index: 0;
    }

    .contact-left {
        max-width: 500px;
        width: 100%;

        @media (width > 1200px) {
            max-width: 632px;
        }
    }


    .breadcrumb {
        li {
            a, span {
                background-color: rgba(0, 45, 78, 0.05);
                color: var(--color-blue-default);

                svg {
                    path {
                        fill: var(--color-blue-default);
                    }
                }
            }
        }
    }

    h1 {
        padding-block: 34px 2px;
        text-wrap: balance;
        line-height: 110%; /* 3.3rem */
        letter-spacing: -0.125rem;

        @media (width < 768px) {
            padding-block: 0;
        }
    }

    .rte {
        max-width: 525px;
    }

    .card-help-buttons {
        padding-block: 13px 32px;
        display: flex;
        gap: 16px;
        flex-wrap: wrap;

        @media (width < 768px) {
            gap: 0 10px;
        }
    }

    .vestigingen {
        display: flex;

        h2 {
            font-family: var(--font-family-base);
            font-size: 1.125rem;
            font-style: normal;
            font-weight: 700;
            line-height: 160%; /* 1.8rem */
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .buttons {
            display: inline-flex;
            flex-direction: column;
            gap: 8px;
            align-items: baseline;

            button {
                appearance: none;
                width: max-content;
                border: 0;
                background-color: var(--color-white-default);
                padding: 8px 10px;
                border-radius: 6px;
                gap: 6px;
                display: inline-flex;
                align-items: center;
                color: var(--color-black-default);
                font-size: 0.875rem;
                font-style: normal;
                font-weight: 400;
                font-family: var(--font-family-base);

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

                &:hover, &:focus, &.active {
                    background-color: var(--color-blue-default);
                    color: var(--color-white-default);

                    svg path {
                        fill: var(--color-blue-200);
                    }
                }
            }
        }

        .map {
            position: relative;
            top: -15px;
            left: -16px;

            @media (width < 767px) {
                display: none;
            }

            .marker {
                display: block;
                width: 12px;
                height: 12px;
                border-radius: 50%;
                background-color: var(--color-blue-default);
                animation: pulse-animation 2s infinite;
                position: absolute;
                top: 0;
                left: 0;
                border: unset;
                cursor: pointer;

                &.active {
                    background-color: var(--color-orange-500);
                    animation: pulse-animation-orange 2s infinite;

                    .location-card {
                        opacity: 1;
                        pointer-events: auto;
                        z-index: 3;

                        img {
                            border-radius: 10px;
                            overflow: hidden;
                        }
                    }
                }
            }

            .location-card {
                max-width: 223px;
                width: 100vw;
                background-color: var(--color-white-default);
                padding: 24px;
                border-radius: 15px;
                position: absolute;
                top: -50%;
                left: 18px;
                transform: translateY(-50%);
                /*display: none;*/
                opacity: 0;
                pointer-events: none;
                transition: var(--duration);

                h3 {
                    display: flex;
                    align-items: baseline;
                    gap: 10px;
                    margin-top: 24px;
                    font-size: 1.25rem;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 150%; /* 1.875rem */
                    color: var(--color-black-default);
                    margin-bottom: 4px;

                    @media (width < 768px) {
                        font-size: 1rem;
                    }

                    .icon {
                        line-height: 1;
                        flex: 0 0 auto;
                    }
                }

                address {
                    font-size: 1rem;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 160%; /* 1.6rem */
                    color: var(--color-black-default);
                }

            }
        }
    }

    .contact-right {
        flex: 1;

        .contact-form {
            padding-block: 0;

            .contact-form-form {
                padding: 34px 49px 48px 45px;

                @media (width < 768px) {
                    padding: 20px;
                }
            }

            &::after {
                display: none;
            }

            .info-bar {
                display: flex;
                gap: 12px;

                .icon {
                    flex: 0 0 auto;
                }

                p {
                    font-size: 0.875rem;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 150%; /* 1.3125rem */
                    margin-bottom: 23px;

                    a {
                        color: inherit;
                    }
                }
            }
        }
    }
}

.services-overview {
    background-color: var(--color-orange-50);
    padding-block: 79px 184px;

    @media (width < 768px) {
        padding-block: 50px;
    }

    .services-overview-title-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 53px;

        &.small-title {
            h2 {
                font-size: 1.25rem;
                font-style: normal;
                font-weight: 700;
                line-height: 160%; /* 2rem */
                text-transform: uppercase;
                font-family: var(--font-family-base);
                letter-spacing: unset;

                @media (width < 768px) {
                    font-size: 1rem;
                }
            }
        }

        h2 {
            color: var(--color-orange-500);
            font-style: normal;
            font-weight: 700;
            line-height: 120%; /* 3rem */
            letter-spacing: -0.0625rem;
            margin-bottom: 0;
        }
    }

    .services-overview-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px 32px;

        @media (width < 768px) {
            grid-template-columns: 1fr;
        }
    }

    .card-register {
        background-color: var(--color-white-default);
        border-radius: 20px;
        padding: 20px;
        margin-bottom: 0;
        border: 0;
        /*opacity: 0;*/

        @starting-style {
            /*opacity: 0;*/
        }

        h3 {
            margin-bottom: 7px;
        }

        p {
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        ul {
            margin-bottom: 8px;

            li {
                border-radius: 8px;
                background: rgba(0, 64, 110, 0.10);
                padding: 6px;
                color: var(--color-blue-default);
                font-size: 0.625rem;
                margin-right: 9px;
            }
        }

        .card-register-text {
            padding-bottom: 20px;
            flex: 1;
            @media (width > 1025px) {
                margin-left: 32px;
            }
        }
    }

    + .blessing {
        margin-top: 0;
    }
}

.template-onderwijs {
    .banner {
        min-height: 500px;
        padding-top: 100px;
    }

    @media (width > 768px) {
        .register-holder {
            padding-bottom: 76px;
        }
    }

    .services-overview {
        @media (width > 768px) {
            padding-block: 97px 152px;
        }
    }
}

.template-onderwijs-vraagstukken-detail {
    .services-overview {
        background-color: var(--color-light-blue-50);

        h2 {
            color: var(--color-blue-default);
        }
    }

    .banner {
        min-height: 538px;
        padding-top: 142px;

        .banner-intro {
            .breadcrumb {
                @media (width > 1025px) {
                    margin-bottom: 46px;
                }
            }
        }
    }

    .services-overview {
        @media (width > 768px) {
            padding-bottom: 36px;
            padding-block-start: 102px;
        }
    }
}

.template-bijbels-onderwijzen {
    .banner {
        min-height: 538px;
        padding-top: 142px;
    }

    .intro {
        position: relative;

        &:after {
            height: 1px;
            width: auto;
            background-color: var(--color-blue-50);
            content: '';
            display: block;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            margin-right: calc((100% - var(--width-base)) / 2);
            margin-left: calc((100% - var(--width-base)) / 2);
        }

        @media (width > 768px) {
            padding-block: 82px 80px;
            margin-bottom: 0;
        }

        .button {
            margin-top: 4px;
        }
    }

    .register {
        @media (width > 768px) {
            padding-top: 65px;
        }

        .register-holder {
            border: 0;
        }
    }

    .blessing {
        overflow: clip;
        @media (width > 768px) {
            margin-top: 38px;
        }

        .blessing-picture {
            img {
                width: unset;
                position: relative;
                left: 65px;
                top: 57px;
                mask-image: unset;

                @media (width < 768px) {
                    position: unset;
                }
            }
        }

        .blessing-text {
            @media (width > 1025px) {
                margin-bottom: 125px;
            }

            .button {
                margin-top: 17px;
            }
        }
    }
}


.template-bijbels-onderwijs-diensten {
    .banner {
        &:has(.banner-intro.center, .faq-nav) {
            min-height: auto;
            padding-top: 100px;
        }

        p {
            max-width: 631px;

        }

        .banner-intro {
            padding-bottom: 46px;
        }
    }

    .register.services {
        background-color: var(--color-white-default);

        h2 {
            color: var(--color-blue-200);
        }

        .card-register {
            border-radius: 0;
            padding: 0 0 27px;

            @media (width > 1025px) {
                .card-register-text {
                    margin-left: 49px;
                }

                margin-bottom: 31px;
            }

            h3 {
                margin-bottom: 22px;
            }

            ul {
                margin-bottom: 18px;

                li {
                    font-size: 0.75rem;
                    padding: 3px 9px;
                }
            }
        }

        .register-holder {
            border: 0;
        }
    }

    .blessing {
        overflow: clip;
        @media (width > 768px) {
            margin-top: 10px;
        }

        .blessing-picture {
            img {
                width: unset;
                position: relative;
                left: 65px;
                top: 57px;
                mask-image: unset;

                @media (width < 768px) {
                    position: unset;
                }
            }
        }

        .blessing-text {
            @media (width > 1025px) {
                margin-bottom: 125px;
            }

            .button {
                margin-top: 17px;
            }
        }
    }
}


.vacancies-overview {
    padding-block: 110px 143px;

    @media (width < 768px) {
        padding-block: 50px;
    }

    .vacancies-overview-title {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 45px;

        @media (width < 768px) {
            margin-bottom: 0;
        }

        h2 {
            font-size: 1.25rem;
            font-style: normal;
            font-weight: 700;
            line-height: 160%; /* 2rem */
            text-transform: uppercase;
            font-family: var(--font-family-base);
            color: var(--color-blue-200);

            @media (width < 768px) {
                font-size: 1rem;
            }

        }

    }

    .vacancies-overview-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;

        @media (width < 768px) {
            grid-template-columns: 1fr;
        }
    }

    .vacancies-overview-item {
        border-radius: 20px;
        border: 1px solid var(--color-light-blue-50);
        text-decoration: unset;

        &.internship {
            background-color: var(--color-light-blue-50);
            background-image: url('../images/internship-path.png');
            background-repeat: no-repeat;
            background-position: right top;

            .vacancy-info {
                .tags li {
                    background-color: var(--color-blue-default);
                    color: var(--color-white-default);
                }
            }
        }

        &:hover, &:focus {
            .button-link i.on-hover {
                margin-left: -34px;
            }

            .button-link i.without-hover {
                opacity: 1;
                visibility: visible;
            }

            .button-link i.on-hover,
            .button-link i.on-hover {
                margin-left: 0;
            }

            .button-link i.without-hover,
            .button-link i.without-hover {
                opacity: 0;
                visibility: hidden;
            }
        }

        .vacancy-info {
            padding: 32px 32px 28px 32px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);

            @media (width < 768px) {
                padding: 20px;
            }

            .tags {
                list-style: none;
                display: flex;
                flex-wrap: wrap;
                gap: 10px;
                margin-bottom: 11px;

                li {
                    display: flex;
                    gap: 4px;
                    align-items: center;
                    border-radius: 8px;
                    background-color: var(--color-light-blue-50);
                    padding: 6px 10px;
                    font-size: 0.75rem;
                    font-style: normal;
                    font-weight: 600;
                    color: var(--color-blue-default)
                }
            }

            h3 {
                font-size: 1.5rem;
                font-style: normal;
                font-weight: 700;
                line-height: 110%; /* 1.65rem */
                letter-spacing: -0.0625rem;
                margin-bottom: 0;

                @media (width < 768px) {
                    font-size: 1.25rem;
                }
            }
        }

        .link {
            padding: 16px 32px 19px;
        }
    }
}

.template-werken-bij {
    .blessing {
        @media (width > 768px) {
            margin-top: 38px;
        }

        .blessing-text {
            max-width: 523px;
            margin-bottom: 114px;

            @media (width < 768px) {
                margin-bottom: 50px;
            }

            h2 {
                font-size: 3rem;
                font-style: normal;
                font-weight: 700;
                line-height: 110%; /* 3.3rem */
                letter-spacing: -0.0625rem;
                margin-bottom: 30px;

                @media (width < 768px) {
                    font-size: 2.25rem;
                }
            }

            p {
                margin-bottom: 43px;
            }
        }

        .blessing-right {
            @media (width > 768px) {
                margin-top: 74px;
                padding-left: 8px;
            }
        }
    }
}

.image-slider {
    width: 100%;

    &.testimonial {
        background: unset;

        @media (width < 768px) {
            padding-top: 0;
        }

        @media (width > 768px) {
            padding-top: 26px;
        }

        .swiper-slide {
            width: auto;


            img {
                width: 100%;
                transform: scale(0.9);
                transition: var(--duration);
                border-radius: 20px;
                overflow: hidden;

                @media (width < 768px) {
                    max-width: 75vw;
                }
            }

            &.swiper-slide-active {
                img {
                    transform: scale(1);
                }
            }
        }

    }

    .testimonial-arrows {
        @media (width > 768px) {
            max-width: 788px;
            width: 100%;
            transform: translate(-50%, -50%);
        }
    }

    &:has(+ .centered-content) {
        padding-bottom: 68px;

        @media (width < 768px) {
            padding-bottom: 30px;
        }
    }

    + .centered-content {
        padding-block-start: 24px;
    }
}

.centered-content {
    padding-block: 81px 50px;

    @media (width < 768px) {
        padding-block: 30px;
    }

    .centered-content-holder {
        max-width: 847px;
        margin: 0 auto;

        h2 {
            font-size: 2rem;
            font-style: normal;
            font-weight: 700;
            line-height: 120%; /* 2.4rem */
            letter-spacing: -0.0625rem;
            margin-bottom: 24px;

            @media (width < 768px) {
                font-size: 1.75rem;
            }
        }

        h3 {
            color: var(--color-black-default);
            font-size: 1.125rem;
            font-style: normal;
            font-weight: 600;
            line-height: 120%; /* 1.35rem */
            font-family: var(--font-family-base);
            margin-top: 55px;
            margin-bottom: 14px;
        }

        ul {
            max-width: 781px;
            padding-top: 28px;
        }

        p {
            strong {
                font-size: 1.25rem;
                font-style: normal;
                font-weight: 700;
                line-height: 150%; /* 1.875rem */
                display: inline-block;
                margin-bottom: 25px;
            }

            font-size: 1rem;
            font-style: normal;
            font-weight: 400;
            line-height: 160%; /* 1.6rem */
            margin-bottom: 25px;

            &:has(+ ul) {
                margin-bottom: 5px;
            }

            + ul {
                padding-top: 0;
            }
        }
    }
}

.centered-quote {
    padding-block: 27px 50px;

    @media (width < 768px) {
        padding-block: 30px;
    }

    &.large-quote {
        .centered-quote-holder {
            max-width: 1064px;
            background-image: url("../images/quote-bg-large.svg");

            h2 {
                font-size: 2rem;
                font-style: normal;
                font-weight: 700;
                line-height: 110%; /* 2.2rem */
                letter-spacing: -0.125rem;
                color: var(--color-white-default);
                margin-bottom: 27px;

                @media (width < 768px) {
                    font-size: 1.75rem;
                }
            }

            p {
                margin-bottom: 27px;

                &:last-child {
                    margin-bottom: 0;
                }
            }
        }

        .centered-quote-right {
            padding-block: 47px;
            max-width: 509px;
            margin-right: 85px;

            @media (width < 768px) {
                margin-right: 0;
            }
        }
    }

    .centered-quote-holder {
        max-width: 847px;
        margin: 0 auto;
        background-color: var(--color-orange-500);
        background-image: url("../images/quote-bg.svg");
        background-repeat: no-repeat;
        background-position: left bottom;
        border-radius: 15px;
        display: flex;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;

        @media (width < 1024px) {
            padding-inline: 20px;
        }

        @media (width < 768px) {
            flex-direction: column-reverse;
        }
    }

    .centered-quote-left {
        padding-left: 15px;
        flex: 0 0 auto;
        display: flex;
        align-items: end;

        @media (width < 768px) {
            padding-left: 0;
            flex: 1 1 auto;
        }

        .centered-quote-photo {
            position: relative;

            img {
                width: 100%;
                max-width: 200px;
            }

            @media (width > 768px) {
                left: 147px;
            }
        }
    }

    .centered-quote-right {
        padding-block: 45px;
        max-width: 420px;
        margin-right: 97px;

        @media (width < 1024px) {
            margin-right: 0;
        }

        @media (width < 767px) {
            padding-block-end: 0;
        }

    }

    p {
        font-size: 1rem;
        font-style: normal;
        font-weight: 400;
        line-height: 160%; /* 1.6rem */
        color: var(--color-white-default);
        margin-bottom: 33px;

        &.name {
            font-size: 1rem;
            font-style: normal;
            font-weight: 600;
            line-height: 120%; /* 1.2rem */
            margin-bottom: -4px;
        }

        &:last-child {
            margin-bottom: 0;
        }
    }

    span {
        font-size: 0.875rem;
        font-style: normal;
        font-weight: 400;
        color: var(--color-orange-800);
    }


    + .centered-content {
        padding-block-start: 29px;

        @media (width < 768px) {
            padding-block-start: 10px;
        }
    }
}

.werken-bij-benefits {
    background-color: var(--color-light-blue-50);
    margin-top: 14px;
    padding-block: 80px 50px;

    @media (width < 768px) {
        padding-block: 40px;
    }

    .werken-bij-benefits-holder {
        max-width: 847px;
        margin: 0 auto;
    }

    h2 {
        font-size: 2rem;
        font-style: normal;
        font-weight: 700;
        line-height: 120%; /* 2.4rem */
        letter-spacing: -0.0625rem;

        @media (width < 768px) {
            font-size: 1.75rem;
        }
    }

    .werken-bij-benefits-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        margin-top: 64px;

        @media (width < 1024px) {
            gap: 24px;
        }

        @media (width < 768px) {
            grid-template-columns: 1fr;
            margin-top: 40px;
        }
    }

    .benefit {
        border-radius: 10px;
        background-color: var(--color-white-default);
        padding: 32px 32px 36px 32px;

        @media (width < 768px) {
            padding: 20px;
        }

        h3 {
            font-size: 1.25rem;
            font-style: normal;
            font-weight: 700;
            font-family: var(--font-family-base);
            line-height: 110%; /* 1.375rem */
            display: flex;
            /*align-items: center;*/
            gap: 11px;
            margin-bottom: 16px;

            @media (width < 768px) {
                font-size: 1rem;
            }
        }

        p {
            font-size: 1rem;
            font-style: normal;
            font-weight: 400;
            line-height: 150%; /* 1.5rem */
            font-family: Roboto, sans-serif;
            margin-bottom: 0;
        }
    }
}

.scroll-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: var(--color-white-default);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    box-shadow: 0 -4px 14px 5px rgba(0, 0, 0, 0.03);
    opacity: 0;
    transform: translateY(100%);
    transition: var(--duration);

    @media (width < 768px) {
        display: none;
    }

    &.active {
        opacity: 1;
        transform: translateY(0);
    }

    .holder {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: space-between;

        .scroll-bar-left {
            display: flex;
            align-items: center;

        }

        .text {
            margin-left: 25px;

            h2 {
                font-family: "Plus Jakarta Sans", sans§;
                font-size: 1.25rem;
                font-style: normal;
                font-weight: 700;
                /*line-height: 140%; !* 1.75rem *!*/
                margin-bottom: 0;

                @media (width < 768px) {
                    font-size: 1rem;
                }
            }

            span {
                font-size: 1rem;
                font-style: normal;
                font-weight: 500;
            }
        }

        .card-help-buttons {
            margin-left: 45px;
            gap: 15px;
            display: flex;
            flex-wrap: wrap;

            a, button {
                border: 1px solid var(--color-blue-50);
                margin: 0;
            }
        }
    }

    .scrollbar-right {
        display: flex;
        align-items: center;
    }
}


.template-medewerkers, .template-content {
    .banner {
        min-height: 538px;
        padding-top: 142px;

        p {
            max-width: 515px;
            font-size: 1rem;
            margin-bottom: 8px;
        }
    }
}

.template-medewerkers {
    .banner {
        &:has(.banner-intro.center, .faq-nav) {
            padding-top: 75px;
        }
    }
}

.search-bar {

    form {
        padding: 13px 50px 13px 18px;
        border-radius: 50px;
        background: #FFF;
        display: flex;
        position: relative;
        min-width: 320px;

        input {
            height: auto;
            border: unset;
            color: var(--color-black-default);
            font-family: "Plus Jakarta Sans";
            font-size: 0.875rem;
            font-style: italic;
            font-weight: 500;
            line-height: 1;
            /*line-height: 150%; !* 1.3125rem *!*/
            padding: 0;
            min-height: unset;

            &::placeholder {
                color: var(--color-black-default);
                /*opacity: 0.5;*/
            }
        }

        button {
            position: absolute;
            right: 4px;
            top: 50%;
            transform: translateY(-50%);
        }
    }
}

.employee-overview {
    background-color: var(--color-light-blue-50);
    padding-block: 80px 50px;

    @media (width < 768px) {
        padding-block: 40px;
    }

    &:last-child {
        padding-block-end: 124px;

        @media (width < 768px) {
            padding-block-end: 40px;
        }
    }

    #pdopage {
        width: 100%;
    }

    .topbar {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        width: 100%;
        flex-wrap: wrap;
        margin-bottom: 40px;

        @media (width < 768px) {
            margin-bottom: 0;
        }

        h2 {
            letter-spacing: -0.0625rem;
        }

        button {
            appearance: none;
            background-color: unset;
            border: unset;
            display: flex;
            align-items: center;

            &:hover {
                .icon {
                    img {
                        transform: rotate(23deg);
                    }
                }

                span:not(.icon) {
                    padding-right: 12px;
                }
            }

            span:not(.icon) {
                font-family: var(--font-family-base);
                font-size: 0.9375rem;
                font-weight: 500;
                line-height: 1.2;
                padding-right: 16px;
                transition: var(--duration);
            }

            .icon {
                width: 41px;
                height: 41px;
                background-color: var(--color-blue-default);
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;

                &.hidden {
                    &[data-count] {
                        &:after {
                            display: none;
                        }
                    }
                }

                &[data-count] {
                    position: relative;

                    &:after {
                        position: absolute;
                        top: -9px;
                        right: -7px;
                        width: 20px;
                        height: 20px;
                        background-color: var(--color-white-default);
                        border-radius: 50%;
                        content: attr(data-count);
                        font-size: 0.75rem;
                        color: var(--color-blue-default);
                        font-weight: 700;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                    }
                }


                img {
                    transition: var(--duration);
                    transform-origin: center center;
                }
            }
        }

        p {
            max-width: 524px;
        }
    }

    .employee-overview-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        width: 100%;

        @media (width < 768px) {
            grid-template-columns: 1fr;
        }
    }

    .employee-overview-pagination {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        width: 100%;
    }

    .employee {
        border-radius: 20px;
        background-color: var(--color-white-default);
        padding: 24px 24px 24px 24px;
        display: flex;
        gap: 32px;
        /*justify-content: space-between;*/
        /*align-items: center;*/

        @media (width < 768px) {
            padding: 20px;
            gap: 20px;
        }

        picture {
            background-color: #EEF2F6;
            border-radius: 20px;
            display: flex;
            align-items: flex-end;
            line-height: 0;
            background-image: url('../images/employee-frame.svg');
            background-repeat: no-repeat;
            background-position: center bottom;
            background-size: contain;
            flex: 0 0 auto;
            overflow: hidden;

            @media (width < 768px) {
                max-width: 80px;
                background-position: bottom;
            }
        }

        h3 {
            color: var(--color-black-default, #000);
            font-family: "Plus Jakarta Sans";
            font-size: 1rem;
            font-style: normal;
            font-weight: 700;
            margin-bottom: 7px;
        }

        p {
            font-size: 0.875rem;
            font-style: normal;
            font-weight: 400;
            color: var(--color-black-400);
        }

        .employee-info {
            display: flex;
            flex-direction: column;
            gap: 10px;
            justify-content: space-between;

            .buttons {
                display: flex;
                gap: 10px;
                flex-wrap: wrap;
            }
        }

        .button-flip {
            font-size: 0.875rem;
            padding-left: 37px;

            &::before {
                display: none;
            }
        }
    }
}

.news-overview {
    background-color: var(--color-orange-50);
    padding-block: 80px 89px;

    @media (width < 768px) {
        padding-block: 40px;
    }

    .topbar {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        width: 100%;
        flex-wrap: wrap;
        margin-bottom: 42px;

        @media (width < 768px) {
            margin-bottom: 20px;
        }

        button {
            appearance: none;
            background-color: unset;
            border: unset;
            display: flex;
            align-items: center;

            &:hover {
                .icon {
                    img {
                        transform: rotate(23deg);
                    }
                }

                span:not(.icon) {
                    padding-right: 12px;
                }
            }

            span:not(.icon) {
                font-family: var(--font-family-base);
                font-size: 0.9375rem;
                font-weight: 500;
                line-height: 1.2;
                padding-right: 16px;
                transition: var(--duration);
            }

            .icon {
                width: 41px;
                height: 41px;
                background-color: var(--color-orange-500);
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;

                &.hidden {
                    &[data-count] {
                        &:after {
                            display: none;
                        }
                    }
                }

                &[data-count] {
                    position: relative;

                    &:after {
                        position: absolute;
                        top: -9px;
                        right: -7px;
                        width: 20px;
                        height: 20px;
                        background-color: var(--color-white-default);
                        border-radius: 50%;
                        content: attr(data-count);
                        font-size: 0.75rem;
                        color: var(--color-blue-default);
                        font-weight: 700;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                    }
                }


                img {
                    transition: var(--duration);
                    transform-origin: center center;
                }
            }
        }

    }

    .news-overview-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
        width: 100%;

        @media (width < 1024px) {
            grid-template-columns: 1fr 1fr;
        }

        @media (width < 768px) {
            grid-template-columns: 1fr;
        }

        .card-news {
            opacity: 0;
            @starting-style {
                opacity: 0;
            }
        }
    }

    .news-overview-pagination {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        width: 100%;
    }

}

.centered-image {
    padding-block: 26px;

    @media (width < 768px) {
        padding-block: 10px;
    }

    .centered-image-container {
        display: flex;
        justify-content: center;
    }

    figure {

        figcaption {
            text-align: center;
            padding-top: 10px;
            color: var(--color-black-200);
            font-size: 0.875rem;
            font-weight: 500;
            line-height: 1.5;
        }
    }

    &:has(+ .centered-content) {
        + .centered-content {
            padding-block-start: 34px;
            padding-block-end: 66px;

            @media (width < 768px) {
                padding-block: 30px;
            }
        }
    }
}

.template-portal {
    background-color: var(--color-orange-50);
    background-image: url('../images/portal-login-path.svg');
    background-repeat: no-repeat;
    background-position: top right;
    min-height: 100vh;
    width: 100vw;

    main {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        padding-top: 0;

        &:has(.portal-downloads) {
            display: block;
            padding-top: 157px;

            @media (width < 768px) {
                padding-top: 120px;
            }
        }

        &:has(.portal-login) {
            @media (width < 768px) {
                padding-inline: 20px;
            }
        }
    }

    header {
        @media (min-width: 1440px) {
            --space-left: 3rem;
            --space-right: 3rem;
        }

        .header-wrap {
            width: 100%;
            margin-bottom: 0 !important;
        }

        .button-portal {
            background-color: var(--color-orange-500);
            color: var(--color-white-default);

            &:before {
                border-color: var(--color-orange-600);
            }

            span {
                svg {
                    flex: 0 0 auto;

                    &:last-child {
                        transform: translateX(-200%);
                        opacity: 0;
                    }

                    &:first-child {
                        transform: translateX(0);
                        opacity: 1;
                    }
                }
            }

            &:hover, &:focus {
                svg {
                    &:last-child {
                        transform: translateX(0);
                        opacity: 1;
                    }

                    &:first-child {
                        transform: translateX(200%);
                        opacity: 0;
                    }
                }
            }
        }

    }
}

.portal-login {
    max-width: 634px;
    width: 100%;
    background-color: var(--color-white-default);
    border-radius: 20px;
    padding: 53px 43px 48px 53px;
    display: flex;
    flex-direction: column;
    gap: 20px;

    @media (width < 768px) {
        padding: 20px;
    }

    .portal-title {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 7px;
        flex-wrap: wrap;

        h1 {
            font-size: 2.5rem;
            font-style: normal;
            font-weight: 700;
            line-height: 110%; /* 2.75rem */
            letter-spacing: -0.125rem;
            margin-bottom: 0;

            @media (width < 768px) {
                font-size: 2rem;
            }
        }
    }

    form {
        border: 0;
    }

    .form-buttons {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-top: 30px;

        @media (width < 768px) {
            margin-top: 0;
            flex-direction: column;
            gap: 20px;
        }

        a {
            font-size: 0.9375rem;
            font-style: normal;
            font-weight: 500;
            color: var(--color-black-400);
        }

        button {
            border: unset;
            background-color: unset;
        }
    }
}

.portal-downloads {
    width: 100%;

    h1 {
        color: var(--color-orange-500);
        margin-bottom: 9px;
        font-size: 2.5rem;
        font-style: normal;
        font-weight: 700;
        line-height: 120%; /* 3rem */
        letter-spacing: -0.0625rem;

        @media (width < 768px) {
            font-size: 2rem;
        }
    }

    h2 {
        font-size: 1.25rem;
        font-style: normal;
        font-weight: 700;
        color: var(--color-orange-500);
        margin-bottom: 23px;

        @media (width < 768px) {
            font-size: 1rem;
        }
    }

    .portal-downloads-container {
        margin-top: 86px;
        display: flex;
        justify-content: space-between;
        gap: 30px;

        @media (width < 768px) {
            flex-wrap: wrap;
            margin-top: 30px;
        }
    }

    .portal-downloads-overview {
        display: grid;
        /*grid-template-columns: 1fr 1fr 1fr;*/
        grid-template-columns: repeat(auto-fit, minmax(150px, 263px));
        gap: 33px;
        width: 100%;
        /*max-width: 850px;*/

        @media (width < 768px) {
            grid-template-columns: 1fr 1fr;
        }

        @media (width < 480px) {
            grid-template-columns: 1fr;
            max-width: 100%;
        }
    }

    .portal-download {
        background-color: var(--color-white-default);
        border-radius: 8px;
        padding: 27px 24px 24px 24px;
        display: flex;
        flex-direction: column;
        max-width: 261px;

        @media (width < 480px) {
            max-width: calc(100vw - 2rem);
            width: 100%;
        }

        h3 {
            font-size: 1rem;
            font-style: normal;
            font-weight: 700;
            line-height: 1.1;
            font-family: var(--font-family-base);
            color: var(--color-black-default);
            margin-bottom: 8px;
        }

        h3 + span {
            font-size: 0.75rem;
            font-style: italic;
            font-weight: 500;
            line-height: 110%; /* 0.825rem */
            display: block;
            margin-bottom: 24px;
        }

        .button.no-button {
            svg {
                &.without-hover {
                    transform: translateX(-10px);
                }

                &.is-hover {
                    transform: translateX(-50px);
                }
            }

            &:hover, &:focus {
                svg {
                    &.without-hover {
                        transform: translateX(50px);
                    }

                    &.is-hover {
                        transform: translateX(10px);
                    }
                }
            }
        }
    }

    .portal-downloads-left {
        flex: 1;
        /**/
        @media (width < 480px) {
            /*flex: unset;*/
        }
    }

    .portal-downloads-right {
        max-width: 339px;
        width: 100%;
        position: relative;
        top: -6px;

        @media (768px < width < 1200px) {
            max-width: 276px;
        }

        @media (width < 480px) {
            max-width: unset;
        }

        .card-help {
            background-color: var(--color-white-default);
            padding-bottom: 25px;

            h3 {
                color: var(--color-orange-500);
            }

            .card-help-tell {
                color: var(--color-orange-500);
                border: 1px solid var(--color-orange-50);
                margin-bottom: 31px;
            }

            .card-help-photo {
                &:after {
                    background-color: var(--color-orange-50);
                    opacity: 1;
                }
            }

            .card-help-text {
                color: var(--color-orange-500);
            }

            .card-help-buttons .button-flip {
                border: 1px solid var(--color-blue-50);
            }
        }
    }
}

.product-overview {
    padding-block: 101px 124px;

    @media (width < 1200px) {
        padding-block: 50px;
    }

    @media (width < 768px) {
        padding-block: 40px;
    }

    .product-overview-holder {
        display: flex;
        justify-content: space-between;
        gap: 32px;
        width: 100%;
        flex-wrap: wrap;
    }

    .product-overview-container {
        min-width: 350px;
        flex: 1;
    }

    .product-row {
        display: flex;
        gap: 48px;
        max-width: 840px;
        width: 100%;
        padding-bottom: 32px;
        margin-bottom: 32px;
        border-bottom: 1px solid var(--color-blue-50);

        @media (width < 768px) {
            gap: 20px;
        }

        picture {
            flex: 0 0 auto;
            border-radius: 14px;
            overflow: hidden;

            @media (width < 768px) {
                img {
                    max-width: 90px;
                }
            }
        }

        .product-info {
            display: flex;
            flex-direction: column;
            gap: 10px;
            justify-content: space-between;
        }

        .product-text {
            h3 {
                font-size: 1.5rem;
                font-style: normal;
                font-weight: 700;
                line-height: 110%; /* 1.65rem */
                letter-spacing: -0.0625rem;
                margin-bottom: 14px;

                @media (width < 768px) {
                    font-size: 1.25rem;
                }
            }

            a {
                text-decoration: none;

                h3 {
                    color: var(--color-blue-default);
                }

                p {
                    color: var(--color-black-default);
                }
            }

        }

        .product-tags {
            margin-bottom: 14px;


            ul {
                list-style: none;
                display: flex;
                gap: 16px;

                li {
                    color: var(--color-blue-default);
                    border-radius: 8px;
                    background: rgba(0, 64, 110, 0.10);
                    padding: 6px 10px;
                    font-size: 0.75rem;
                    font-style: normal;
                    font-weight: 700;
                    font-family: var(--font-family-base);
                }
            }
        }

        .product-price {
            display: flex;
            gap: 16px;

            .price {
                display: inline-block;
                border-radius: 8px;
                background-color: var(--color-orange-500);
                padding: 10px 16px;
                color: var(--color-white-default);
                font-size: 1rem;
                font-style: normal;
                font-weight: 600;
            }
        }
    }

    .product-overview-sidebar {
        max-width: 396px;
        width: 100%;
        position: relative;
        top: 6px;
    }

    .product-overview-pagination {
        .pagination {
            width: 100%;
            margin-top: 50px;

            li {
                &:first-child {
                    margin-right: auto;
                }

                &:last-child {
                    margin-left: auto;
                }
            }
        }
    }
}

.product-basket {
    border-radius: 10px;
    border: 1px solid var(--color-blue-50);
    padding: 30px 32px 32px 32px;
    position: sticky;
    top: 100px;
    background-color: var(--color-white-default);
    overflow: hidden;

    @media (width < 768px) {
        padding: 20px;
    }

    &.loading {
        &:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--color-black-default);
            opacity: 0.5;
            z-index: 1;
            pointer-events: none;
        }
    }

    &:has(.product-small) {
        .no-products {
            display: none;
        }

        .basket-price {
            a {
                pointer-events: auto;
                cursor: pointer;
                opacity: 1;
            }
        }
    }


    h2 {
        font-family: var(--font-family-base);
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 10px;

        @media (width < 768px) {
            font-size: 1.25rem;
        }
    }

    p {
        font-size: 0.875rem;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 1.3125rem */
    }

    ul {
        margin-top: 37px;
        list-style: none;
        padding-bottom: 29px;
        border-bottom: 1px solid var(--color-blue-50);
    }

    .product-small {
        display: flex;
        justify-content: space-between;
        margin-bottom: 16px;
        align-items: center;

        picture {
            border-radius: 6px;
            overflow: hidden;
            flex: 0 0 auto;
            margin-right: 14px;
        }

        .product-text {
            flex: 1 1 100%;
            width: 100%;
            min-width: 0;

            h3 {
                overflow: hidden;
                color: var(--color-black-default);
                text-overflow: ellipsis;
                white-space: nowrap;
                font-family: var(--font-family-base);
                font-size: 0.875rem;
                font-style: normal;
                font-weight: 700;
                margin-bottom: 0;
            }
        }

        .product-controls {
            flex: 0 0 auto;
            margin-left: 16px;
            padding: 1px 3px 1px 2px;
        }
    }


    .basket-price {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 24px;
        gap: 20px;
        flex-wrap: wrap;

        h3 {
            font-size: 0.875rem;
            font-style: normal;
            font-weight: 700;
            color: var(--color-blue-100);
            font-family: var(--font-family-base);
            margin-bottom: 0;
            line-height: 1;
        }

        .total-price {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            text-align: end;
        }

        .price {
            color: var(--color-blue-default);
            font-size: 1.5rem;
            font-style: normal;
            font-weight: 700;
            line-height: 1;

            @media (width < 768px) {
                font-size: 1.25rem;
            }
        }

        a {
            opacity: 0.3;
            pointer-events: none;
            cursor: not-allowed;
        }
    }
}

.product-controls {
    display: flex;
    max-width: 107px;
    align-items: center;
    padding: 10px 8px 8px 8px;
    border-radius: 8px;
    border: 1px solid var(--color-blue-50);

    button {
        appearance: none;
        background-color: unset;
        border: 0;
        width: 25px;
        height: 25px;
        cursor: pointer;
        display: block;
        flex: 0 0 auto;
    }

    input {
        height: auto;
        /*width: unset;*/
        border: 0;
        padding: 0;
        min-height: unset;
        text-align: center;
        font-size: 1rem;
        font-style: normal;
        font-weight: 600;
        color: var(--color-black-default);
        appearance: none;
        flex: 1 1 auto;
        line-height: 1;

        &::-webkit-outer-spin-button,
        &::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
    }
}

.product-form {
    background-color: var(--color-light-blue-50);
    padding-block: 101px 117px;

    @media (width < 768px) {
        padding-block: 50px;
    }

    .holder {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        width: 100%;
        flex-wrap: wrap;
        align-items: flex-start;

        @media (width < 768px) {
            display: block;
        }
    }

    .product-form-overview {
        max-width: 524px;

        @media (width < 768px) {
            margin-bottom: 20px;
        }

        h2 {
            font-size: 3rem;
            font-style: normal;
            font-weight: 700;
            letter-spacing: -0.125rem;

            @media (width < 768px) {
                font-size: 2.25rem;
            }
        }

        p {
            margin-bottom: 45px;
        }

        .product-basket {
            ul {
                margin-top: 0;
            }
        }

        .basket-price {
            align-items: unset;
            margin-top: 32px;

            .total-price {
                flex-direction: row;
                width: 100%;
                justify-content: space-between;
                align-items: center;

                h3 {
                    font-size: 1.125rem;
                    font-style: normal;
                    font-weight: 700;
                }
            }
        }
    }

    .product-form-steps {
        border-radius: 20px;
        background: var(--color-white-default);
        padding: 48px 48px 48px 48px;
        max-width: 633px;
        width: 100%;

        @media (width < 768px) {
            padding: 20px;
        }

        .steps {
            display: flex;
            gap: 14px;
            margin-bottom: 39px;
            overflow: auto;

            a, span {
                font-size: 1rem;
                font-style: normal;
                font-weight: 600;
                font-family: var(--font-family-base);
                line-height: 1;
                padding: 12px 32px 13px 32px;
                border: 1px solid var(--color-blue-50);
                border-radius: 30px;
                color: var(--color-blue-100);
                text-decoration: none;
                line-height: 1.8;

                @media (width < 768px) {
                    padding: 12px 20px;
                    line-height: 1;
                }

                &.active {
                    border-color: var(--color-blue-default);
                    background-color: var(--color-blue-default);
                    color: var(--color-white-default);
                }

                &:has(+ .step.active) {
                    opacity: 0.8;
                }
            }
        }

        .step-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            column-gap: 20px;

            &:not(.active) {
                display: none;
            }

            &:has(+ .active) {
                display: none;
            }

            @media (width < 768px) {
                grid-template-columns: 1fr;
            }

            &:invalid {
                .form-buttons {
                    button {
                        opacity: 0.4;
                        pointer-events: none;
                    }
                }
            }

            .form-group {
                &:not(.width-50) {
                    grid-column: 1/2 span;
                    @media (width < 768px) {
                        grid-column: unset;
                    }
                }

                &.has-error {
                    border-color: var(--color-dark-orange);
                }
            }

            .form-buttons {
                grid-column: 1/2 span;
                @media (width < 768px) {
                    grid-column: unset;
                }

                &:has(button + button),
                &:has(.button + .button) {
                    display: flex;
                    justify-content: space-between;
                    gap: 10px;
                }

                button,
                .button {
                    border: unset;
                    background-color: unset;

                    &:disabled {
                        opacity: 0.4;
                        pointer-events: none;
                    }

                    &.prev {
                        i {
                            margin-right: 16px;
                            margin-left: 0;
                        }

                        svg {
                            &.is-hover {
                                transform: translateX(50px);
                            }
                        }

                        &:hover, &:focus {
                            span {
                                transform: translateX(-5px);
                            }

                            svg {
                                &.without-hover {
                                    transform: translateX(-50px);
                                }

                                &.is-hover {
                                    transform: translateX(4px);
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

.template-webshop, .template-aanmelden {
    .banner {
        &:has(.banner-intro.center, .faq-nav) {
            padding-top: 78px;
        }

        p {
            font-size: 1rem;
            max-width: 515px;
        }

        h1 {
            @media (width > 768px) {
                margin-bottom: 33px;
            }
        }

        .banner-intro {
            padding-bottom: 60px;

            @media (width < 1024px) {
                padding-bottom: 30px;
            }
        }
    }

    .register-title-container {
        margin-bottom: 59px;

    }

    .register-right {
        padding-left: 0;

        h3 {
            font-size: 1.375rem;
            font-style: normal;
            font-weight: 700;
            line-height: 180%; /* 2.475rem */
            margin-bottom: 10px;

            @media (width < 768px) {
                font-size: 1.125rem;;
            }
        }

        p {
            margin-bottom: 38px;
        }
    }

    .blessing {
        @media (width > 768px) {
            margin-top: 67px;
            padding-bottom: 153px;
            .blessing-left {
                padding-top: 64px;
            }
        }
    }
}

.template-content, .template-actueel {
    .banner {
        &:has(.banner-intro.center, .faq-nav) {
            padding-top: 78px;
        }

        p {
            font-size: 1rem;
            max-width: 515px;
            margin-inline: auto;
        }

        h1 {
            @media (width > 768px) {
                margin-bottom: 33px;
            }
        }

        .banner-intro {
            padding-bottom: 60px;

            @media (width < 1024px) {
                padding-bottom: 30px;
            }
        }
    }
}

.template-actueel-detail {
    .banner {
        padding-top: 78px;
        min-height: 511px;

        .breadcrumb {
            @media (width > 1025px) {
                margin-bottom: 49px;
            }
        }
    }

    .news {
        @media (width > 768px) {
            padding-top: 80px;
            padding-bottom: 81px;
        }
    }
}

.template-gemeente {
    .banner {
        padding-top: 78px;
        min-height: 498px;

        .breadcrumb {
            @media (width > 1025px) {
                margin-bottom: 39px;
            }
        }
    }

    .card-register {
        ul {
            padding-top: 8px;

            li {
                font-size: 0.75rem;
                font-style: normal;
                font-weight: 700;
                line-height: 120%; /* 0.9rem */
                padding: 6px 10px;
            }
        }
    }

    .blessing {
        @media (width > 768px) {
            padding-bottom: 153px;
            .blessing-left {
                padding-top: 64px;
            }
        }
    }
}

.template-werken-bij-detail {
    .centered-content:first-child {
        padding-block: 100px 40px;

        .centered-content-holder {
            h2 {
                margin-bottom: 30px;
            }
        }
    }

    .centered-quote {
        padding-block: 39px 51px;

        .centered-quote-photo {
            position: unset;
        }
    }


}

.header {
    .button-portal {
        span {
            svg {
                path {
                    &:last-child {
                        transform: translateY(2px);
                        transition: var(--duration);
                    }
                }
            }
        }

        &:hover, &:focus {
            span {
                svg {
                    path {
                        &:last-child {
                            transform: translateY(0px);
                        }
                    }
                }
            }
        }
    }
}

.grecaptcha-badge {
    visibility: hidden;
    opacity: 0;
}

.add-product-bar {
    padding-block: 20px 20px;
    background-color: var(--color-light-orange-50);


    @media (width < 768px) {
        position: static;
        gap: 21px;
        display: flex;
        flex-wrap: wrap;
        border-radius: 0;
        box-shadow: unset;
    }

    .scrollbar-right {
        @media (width < 768px) {
            width: 100%;
            justify-content: space-between;
            gap: 20px;
        }

        button {
            border: unset;
        }

        .button {
            line-height: 1.2;
        }

        .product-controls {
            border-color: var(--color-light-orange-100);
            margin-right: 22px;

            @media (width < 768px) {
                margin-right: 0;
            }

            input {
                background-color: transparent;
            }

        }
    }

    .holder {
        .text {
            h2 {
                color: var(--color-black-default);
                font-size: 1.125rem;
                font-family: var(--font-family-plume);
                letter-spacing: -1px;
            }

            span {
                font-size: 0.875rem;
                font-weight: 400;
            }
        }
    }
}

.template-webshop {
    .banner-intro, .product-row, .product-basket {
        @starting-style {
            opacity: 0;
        }
    }
}

.news-holder {
    .swiper-slide {
        height: auto;

        .card-news {
            height: 100%;
        }
    }
}

.template-zoeken {
    .register-holder {
        justify-content: center;
    }

    .card-register {
        margin-left: 0;

        .card-register-text {
            width: 100%;
            margin-left: 0;
        }
    }
}

#vraagstukken {
    .register-title-container {
        align-items: normal;
        flex-direction: column;
        margin-bottom: 39px;
        @media (max-width: 773px) {
            margin-bottom: 45px;
            flex-direction: row;
            align-items: center;
        }

        #filter-button {
            display: none;
            @media (max-width: 773px) {
                display: flex;
            }
        }

        .filters {
            margin-top: 31px;
            display: flex;
            flex-direction: column;

            @media (max-width: 773px) {
                display: none;
            }

            p {
                color: var(--color-black-default);
                font-family: var(--font-family-base);
                font-size: 1rem;
                font-style: normal;
                font-weight: 600;
                line-height: 1.20;
                margin-bottom: 10px;
            }

            .filter-items {
                display: flex;
                flex-wrap: wrap;
                gap: 10px;

                .filter-item {
                    display: flex;
                    align-items: center;
                    gap: 14px;
                    background-color: #B0C4D230;
                    padding: 12px 16px 12px 12px;
                    border-radius: 6px;

                    input {
                        width: 20px;
                        height: 20px;
                        min-height: 20px;
                        display: none;
                    }

                    label {
                        padding-left: 34px;
                        overflow: hidden;
                        color: var(--color-black-default);
                        text-overflow: ellipsis;
                        font-family: var(--font-family-base);
                        font-size: 1rem;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 1.60;
                        position: relative;

                        &:before {
                            position: absolute;
                            left: 0;
                            top: 50%;
                            transform: translateY(-50%);
                            content: '';
                            width: 18px;
                            height: 18px;
                            background-color: #fff;
                            border: 1px solid var(--color-blue-default);
                            border-radius: 5px;
                        }
                    }

                    input:checked + label:before {
                        background-color: var(--color-blue-default);
                    }

                    input:checked + label:after {
                        content: "";
                        position: absolute;
                        background: url("/assets/templates/images/checkbox.svg") no-repeat center;
                        width: 20px;
                        height: 20px;
                        left: 1px;
                        top: calc(50% + 1px);
                        transform: translateY(-50%);
                        font-size: 14px;
                        color: #fff;
                    }
                }
            }
        }
    }
}


.template-home {
    .hero-intro, .hero-plus, .choose-intro, .choose-column-items, .hero-photo img {
        opacity: 0;

        @starting-style {
            opacity: 0;
        }
    }
}


#pdopage.filter-active .card-news {
    opacity: 1;
}

p a {
    color: var(--color-orange-500);
}

/* KOC-236 */

.form-control--wrapper {
    display: flex;
    flex-direction: column;

    label:has(input[type="radio"]) {
        &:first-of-type {
            margin-top: 16px;
        }
        display: flex;
        align-items: center;
        gap: 16px;
        position: relative;

        span {
            font-size: 1rem;
            font-weight: 400;
        }

        input {
            width: 21px;
            position: relative;
            border: none;
            
            &::before {
                display: none;
                position: absolute;
                border-radius: 50%;
                content: '';
                width: 15px;
                height: 15px;
                background-color: var(--color-orange-500);
                left: 3px;
                top: 50%;
                transform: translateY(-50%);
            }
            
            &::after {
                display: block;
                position: absolute;
                border-radius: 50%;
                content: '';
                width: 19px;
                height: 19px;
                background-color: transparant;
                border: 1px solid black;
                left: 0px;
                top: 50%;
                transform: translateY(-50%);
            }
        }
        
        input:checked {
            &::before {
                display: block;
            }
        }
    }
}
