/* ----------------------------------------------------------- general */
:root {
    --color-000: #FFF;
    --color-100: #F6F6F6;
    --color-200: #EBEBEB;
    --color-300: #d9d9d9;
    --color-400: #D0D0D0;
    --color-500: #B2B2B2;
    --color-600: #878787;
    --color-700: #666666;
    --color-800: #3D3D3D;
    --color-900: #2B2B2B;

    --fs-h1: 3.025rem;
    --fs-h2: 1.953rem;
    --fs-h3: 1.563rem;
    --fs-lead: 1.4rem;
    --fs-body: 1rem;
    --fs-small: 0.8rem;

    --lh-h1: 1.2em;
    --lh-h2: 1.3em;
    --lh-h3: 1.3em;
    --lh-lead: 1.4em;
    --lh-body: 1.7em;
    --lh-small: 1.7em;
}


/* ----------------------------------------------------------- general */
html, body {
    font-family: "Inria Sans", sans-serif !important;
    font-size: 16px !important;
    color: var(--color-600) !important;
    background-color: var(--color-100) !important;
    box-sizing: border-box !important;
}

@media screen and (min-width: 768px) {
    /* Size M */
    html, body {
        /* font-size: clamp(18px, 2.3vw, 20px); */
        font-size: 18px !important;
    }
}

@media screen and (min-width: 1400px) {
    /* Size L */
    html, body {
        /* font-size: clamp(20px, 1.4vw, 22px); */
        font-size: 20px !important;
    }
}

@media screen and (min-width: 1800px) {
    /* Size XL */
    html, body {
        font-size: 22px !important;
    }
}


.h1{
    font-size: var(--fs-h1) !important;
    line-height: var(--lh-h1) !important;
}
.h2{
    font-size: var(--fs-h2) !important;
    line-height: var(--lh-h2) !important;
}
.h3{
    font-size: var(--fs-h3) !important;
    line-height: var(--lh-h3) !important;
}
.h4{
    font-size:  1.4rem !important;
    line-height:  1em !important;
}
.h5{
    font-size:   1.3rem !important;
    line-height: 1em !important;
}
.h6{
    font-size:   1.2rem !important;
    line-height: 1em !important;
}

.container {
    max-width: 1800px !important;
    margin: 0 auto !important;
}
.content-container {
    margin: 0 !important;
}

.wrapper-body {
    margin-top: unset !important;
}

html {
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}
body {
    max-width: 2560px;
    width: 100%;
}


.button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--color-000);
    color: var(--color-600);
    border-radius: 4px;
    padding: 12px 32px;
    width: fit-content;
    text-transform: uppercase;
    text-decoration: none !important;
    font-size: var(--fs-small);
    line-height: var(--lh-small);
    letter-spacing: 0.1em;
    font-weight: 400;
    z-index: 1;
    transition: background-color 250ms ease-in-out;
}
.button svg path {
    stroke: var(--color-600);
}
.button:hover {
    background-color: var(--color-400);
}

.desktop {
    display: block !important;
}


section.header .header-swiper .swiper-wrapper .swiper-slide .headlines .hero-lead p {
    font-family: unset !important;
    font-size: unset !important;
    font-weight: unset !important;
    line-height: unset !important;
    font-style: unset !important;
    letter-spacing: unset !important;
    text-transform: unset !important;
    text-align: unset !important;
}
section h1 {
    color: unset !important;
}

input, textarea {
    font-family: 'Inria Sans', sans-serif !important;
    background-color: var(--color-000) !important;
    font-size: var(--fs-body) !important;
    font-weight: 400 !important;
    line-height: var(--lh-body) !important;
}
input::placeholder {
    color: var(--color-900) !important;
}
/* ----------------------------------------------------------------------- */
.container{
    padding-left: 32px !important;
    padding-right: 32px !important;
}
@media screen and (min-width: 576px) {
    .container{
        padding-left: 32px !important;
        padding-right: 32px !important;
    }
}
@media screen and (min-width: 992px) {
    .container{
        padding-left: 96px !important;
        padding-right: 96px !important;
    }
}
@media screen and (min-width: 1400px) {
    .benefits {
        padding-left: 320px !important;
        padding-right: 320px !important;
    }    
}


/* ------------------------------------------------------ btn */
.btn {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.1px;
    line-height: 30px;
    position: relative;
    font-weight: 400;
    width: fit-content;
}

@media (min-width: 1024px) {
    .btn {
        font-size: 14px;
    }
}

.btn.primary,
.btn.secondary {
    position: relative;
    transform: skew(352deg, 0deg);
}

.btn.primary a,
.btn.secondary a {
    /* Replace with actual color values */
    color: #FFFFFF;
}

.btn.primary a span,
.btn.secondary a span {
    overflow: hidden;
    display: block;
    padding: 10px 15px;
    line-height: 1;
}

@media (min-width: 1024px) {
    .btn.primary a span,
    .btn.secondary a span {
        padding: 20px 25px;
    }
}

.btn.primary a span svg,
.btn.secondary a span svg {
    margin-left: 10px;
    position: relative;
}

.btn.primary.hover-state a span svg,
.btn.secondary.hover-state a span svg {
    left: 50px;
    animation: btnPrimaryAnim 0.3s ease-in;
}

.btn.primary.dark a,
.btn.secondary.dark a {
    /* Replace with actual color value */
    color: #E4002B;;
}

.btn.primary.dark a span,
.btn.secondary.dark a span {
    padding: 17px 30px;
}

.btn.primary.dark a span svg,
.btn.secondary.dark a span svg {
    transform: rotate(180deg);
}

.btn.primary.dark.link a span svg,
.btn.secondary.dark.link a span svg {
    transform: unset;
}

.btn.primary.dark.hover-state a span svg,
.btn.secondary.dark.hover-state a span svg {
    left: -50px;
    animation: btnPrimaryBackAnim 0.3s ease-in;
}

.btn.primary.hover-state {
    background-color: #FFFFFF;
}

.btn.primary.hover-state a {
    color: #FF0000 !important;
}

.btn.primary.hover-state a span {
    border: 2px solid #FFFFFF;
}

.btn.primary.hover-state a span svg path {
    stroke: #000000;
}

.btn.primary a span {
    border: 2px solid #FF0000;
}

.btn.primary.white.hover-state {
    background-color: #808080;
}

.btn.secondary.hover-state {
    background-color: #8B0000;
}

.btn.secondary.hover-state a span {
    border: 2px solid #8B0000;
}

.btn.secondary a {
    color: #FFFFFF;
}

.btn.secondary a span {
    border: 2px solid #000000;
}


/* ----------------------------------------------------------- nav */
.navigation-container {
    background-color: var(--color-600) !important;
    /* position: sticky !important; */
    position: fixed !important;
    top: 0;
    animation: none !important;
    z-index: 11 !important;
}

.navigation-container .wrapper.flex.space-between {
    max-width: 1800px;
    padding: 8px 32px;
}
@media screen and (min-width: 1024px) {
    .navigation-container .wrapper.flex.space-between {
        padding: 24px 120px;
    }
}

/* .hav-logo {
    width: 183px;
    margin-left: 20px;
    min-width: 182px;
    position: absolute;
    top: 17px;

    img {
        @include respond-to('xmedium') {
            margin-top: auto;
            height: 55px;
            margin-bottom: 46px;
        }
    }

} */

.hav-logo {
    height: 120% !important;
    width: unset !important;
    position: relative !important;
    margin-left: 0px !important;
    min-width: unset !important;
    top: -2px !important;  
}
@media screen and (min-width: 1024px) {
    .hav-logo {
        height: 100% !important;
    }
    .hav-logo img {
        height: 100% !important;
    }
}
.hav-logo img {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    width: auto !important;
    aspect-ratio: 1181/766;
}
/* @media screen and (min-width: 1024px) {
    .hav-logo img {
        width: 224px !important;
        height: auto !important;    }
} */

.menu-btn svg g rect{
    fill: var(--color-000) !important;
}

.top-header {
    padding: 0;
}
.top-header .service-nav {
    align-items: center;
    gap: 48px;
}
.top-header .service-nav li a {
    color: var(--color-000) !important;
    font-size: 16px;
    font-weight: 300;
    color: var(--color-300) !important;
    transition: color 250ms ease-in-out;
}
.top-header .service-nav li a:hover {
    color: var(--color-400) !important;
}
.top-header .service-nav li a:hover::after {
    display: none;
}
.top-header .service-nav a.active {
    color: var(--color-400) !important;
}
.top-header .service-nav a.active::after {
    display: none;
}

nav.navigation .first-level .first-li {
    padding: 0;
}

.first-level {
    padding-bottom: 8px;
}

#menu-content {
    height: 100%;
    gap: 8px;
    z-index: 1;
}
@media screen and (min-width: 1024px) {
    #menu-content {
        position: relative !important;
    }
}

.service-nav li a:after {
    height: 1px !important;
    bottom: -8px !important;
}

.desktop-search {
    display: flex;
    align-items: center;
    background-color: var(--color-700);
    border-radius: 4px;
    padding: 6px 16px;
    color: var(--color-000)
}
.desktop-search::after {
    display: none;
}
.search-input::placeholder {
    color: var(--color-000);
}
.search .search-form .search-input::placeholder {
    color: var(--color-000);
}

#search-submit-desktop {
    height: 20px;
}
.first-a {
    color: var(--color-000) !important;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    transition: color 250ms ease-in-out;
}
.first-li:hover .first-a {
    color: var(--color-400) !important;
}
.first-a::after {
    display: none;
}
.first-a.active {
    color: var(--color-400) !important;
}

.sub-menu {
    background-color: transparent !important;
    padding: 32px 0 0 !important;
    /* transform: translateY(-42px); */
    top: 0px !important;
    margin-top: 0px !important;
    padding-top: 96px !important;
    background-color: var(--color-600) !important;
    z-index: 3 !important;
    gap: 0 !important;
    border-radius: 0 0 8px 8px !important;
    overflow: hidden;
}
@media screen and (min-width: 992px) {
    .sub-menu {
        z-index: 1 !important;
        padding-top: 0px !important;
    }
}
.sub-menu.active {
    top: 24px !important;
}

.back-nav-btn { 
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative !important;
    background-color: var(--color-400) !important;
}
.back-nav-btn span { 
    font-family: "Inria Sans", sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    font-style: italic !important;
    position: relative !important;
    background-color: var(--color-400) !important;
}


.act-link {
    display: block;
    text-transform: none !important;
    font-size: 20px !important;
    font-weight: 300 !important;
    border-bottom: 1px solid var(--color-500) !important;
    padding: 16px 48px 16px 56px;
    background-color: var(--color-600) !important;
    width: 100%;
    transition: color 250ms ease-in-out;
}
.act-link:hover {
    color: var(--color-400) !important;
}
.act-link.active {
    color: var(--color-400) !important;
}

@media screen and (min-width: 992px) {
    .second-level {
        margin-top: 32px;
    }
}
.second-li {
    line-height: 32px !important;
}

.second-li:last-of-type .act-link {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
}

.search-form {
    display: flex;
    align-items: center;
}
.search-input {
    background-color: transparent !important;
    border: none;
    height: fit-content;
    font-size: 16px !important;
}
.search-input::placeholder {
    color: var(--color-300) !important;
}

/*------ mobile */
#menu-content {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh !important;
    transform: translateX(0);
    background-color: var(--color-600);
}
.navigation-container .wrapper {
    height: 80px;
}
@media screen and (min-width: 1024px) {
    .navigation-container .wrapper {
        height: 156px;
    }   
}

.navigation-container .content {
    padding-top: 120px; 
    height: 100vh;
    width: 100vw;
}
@media screen and (min-width: 992px) {
    #menu-content {
        height: 100% !important;
    }
    .navigation-container .content {
        padding-top: unset !important; 
        height: unset !important;
        width: unset !important;
    }
}

.navigation-container .content.show {
    animation: openMenuX 1s
}

@keyframes openMenuX {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(0);
    }
}

.first-level {
    gap: 48px;
}

.menu-logo {
    top: 2px !important;
    height: 38px;
    width: 126px;
    z-index: 4;
}
.menu-btn.close {
    z-index: 4 !important;
}

.navigation-container .menu-btn.open {
    animation: none !important;
}
.navigation-container .menu-btn.disabled {
    animation: none !important;
    display: block !important;
    transform: translateX(0) !important;
}
/* ----------------------------------------------------------------- hero-slider */

.header {
    /* min-height: 80vh; */
    height: 80vh !important;
    /* max-height: 80vh; */
}
@media screen and (min-width: 992px) {
    .header {
        height: calc(100vh - 156px) !important;
    }
}

.headlines {
    top: 140px;
    bottom: unset !important;
    right: 45px !important;
    max-width: 756px;
    background-color: transparent !important;
    padding: 32px !important;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 1;
}
@media screen and (min-width: 992px) {
    .headlines {
        padding: 0;
    }
}
.swiper-slide .headlines {
    width: 100%;
    right: 112px;
    padding: 24px 24px 48px 24px !important;
}
@media screen and (min-width: 576px) {
    .swiper-slide .headlines {
        padding: 24px 40px 48px 40px !important;
    }
}
@media screen and (min-width: 992px) {
    .swiper-slide .headlines {
        padding: 24px;
    }
}
.hero-lead {
    font-family: 'Inria Sans', sans-serif !important;
    text-align: left !important;
    font-size: 40px !important;
    font-weight: 700 !important;
    line-height: var(--lh-h1) !important;
    font-style: normal !important;
    letter-spacing: 0.8px !important;
    margin: 0 !important;
}
@media screen and (min-width: 992px) {
    .hero-lead {
        font-size: var(--fs-h1) !important;
        line-height: var(--lh-h1) !important;
        letter-spacing: 1.21px !important;
    }
    
}


.hero-text p {
    font-size: 23px !important;
    font-weight: 400 !important;
    line-height: 130% !important;
    color: var(--color-000) !important;
    letter-spacing: 0.23px !important;
}
@media screen and (min-width: 992px) {
    .hero-text p {
        font-size: var(--fs-h3) !important;
        line-height: var(--lh-h3) !important;
        letter-spacing: 0.313px !important;
    }
}

.swiper-slide {
    overflow: hidden;
    justify-content: flex-end;
}
@media screen and (min-width: 992px) {
    .swiper-slide {
        justify-content: unset;
    }
    
}
.swiper-pagination-bullet::before {
    background-color: var(--color-600) !important;
}
.swiper-pagination-horizontal {
    left: 0 !important;
    text-align: left !important;
    padding: 0 120px !important;
    max-width: 1800px;
}

.hero-hexagon {
    position: absolute;
    bottom: -176px;
    left: 50%;
    transform: translateX(-50%);
    width: 124vw !important;
    mix-blend-mode: multiply;
}
@media screen and (min-width: 576px) {
    .hero-hexagon {
        bottom: -568px;
        left: unset;
        right: 0;
        transform: translateX(0%) !important;
        width: 110vw !important;
    }
}
@media screen and (min-width: 992px) {
    .hero-hexagon {
        top: -264px;
        bottom: unset;
        width: 907px !important;
    }
}
.hero-hexagon svg {
    width: 100% !important;;
    height: 100% !important;;
}

/* -------------------------- pagination */
.swiper-pagination {
    bottom: 0 !important;
    left: 0 !important;
    padding: 16px 24px !important;
    max-width: 1800px;
    margin: 0 !important;
    opacity: 1 !important;
    pointer-events: unset !important;
}
@media screen and (min-width: 576px) {
    .swiper-pagination {
        padding: 16px 40px !important;
    }
}
@media screen and (min-width: 992px) {
    .swiper-pagination {
        padding: 16px 120px !important;
    }
}
.swiper-pagination::after {
    display: none;
}
.swiper-pagination-bullet {
    height: 4px !important;
    max-width: 28px !important;

}

/* .mobile {
    display: unset !important;
} */


/* .swiper-wrapper {
    transform: translate3d(-4254px, 0px, 0px) !important;
}
.swiper-slide {
    opacity: 0;
    transition: opacity 300ms ease-in-out;
    transform: unset !important;
}
.swiper-slide-active {
    opacity: 1;
    transform: unset !important; 
} */

/* ----------------------------------------------------------------- headline-text */

.headline-text .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 32px !important;
} 
@media screen and (min-width: 576px) {
    .headline-text .container {
        padding: 0 120px !important;
    } 
}
@media screen and (min-width: 992px) {
    .headline-text .container {
        padding: 0 240px !important;
    } 
}

.headline-text .container .hero-lead {
    font-family: 'Inria Sans', sans-serif !important; 
    font-style: normal !important;
    font-size: var(--fs-h1) !important;
    font-weight: 700 !important;
    line-height: var(--lh-h1) !important;
    color: var(--color-600) !important;
    margin-bottom: 0 !important;
    text-transform: uppercase !important;
}

.headline-text .container .headline-text p{
    font-size: var(--fs-lead) !important;
    font-weight: 400 !important;
    line-height: var(--lh-lead) !important;
    color: var(--color-600) !important;   
}

.headline-text .container .content-container .lauf p{
    font-size: vaR(--fs-body) !important;
    font-weight: 400 !important;
    line-height: var(--lh-body) !important;
    color: var(--color-900) !important;
}

.text-link {
    background-color: var(--color-600) !important;
}
.text-link span {
    color: var(--color-000) !important;
    font-weight: 300 !important;
}
.text-link svg path  {
    stroke: var(--color-000) !important;
}

.headline-text .button {
    background-color: var(--color-600) !important;
}
.headline-text .button:hover {
    background-color: var(--color-400) !important;
}

.regularMT {
    margin-top: 50px;
}
@media screen and (min-width: 1024px) {
    .regularMT {
        margin-top: 100px;
    }
}
.halfMT {
    margin-top: 25px;
}
@media screen and (min-width: 1024px) {
    .halfMT {
        margin-top: 50px;
    }
}
.smallMT {
    margin-top: 25px;
}
.zeroMT {
    margin-top: 0;
}

/* ------------------------------------------------------------- portal teaser */

.editmode .setting.checkbox {
    display: flex;
    align-items: center;

    > label {
        margin-right: 20px;
        margin-bottom: 0;
        cursor: pointer;
    }

    > div {
        padding: 5px 5px 5px 0;
        margin-left: 20px;
        cursor: pointer;
    }

    input {
        cursor: pointer;
        height: 17px;
        width: 17px;
        display: block;
        margin-bottom: -3px;
    }

}

.headline-container {
    font-family: 'Inria Sans', sans-serif !important;
    font-size: var(--fs-h2) !important;
    font-weight: 500 !important;
    line-height: var(--lh-h2) !important;
    font-style: normal !important;
    text-transform: uppercase !important;
}
.portal-teaser {
    min-width: 284px;
}
.portal-teaser__title {
    font-family: 'Inria Sans', sans-serif !important;
    font-size: var(--fs-h2) !important;
    font-weight: 500 !important;
    line-height: var(--lh-h2) !important;
    font-style: normal !important;
    text-transform: uppercase !important;
    color: var(--color-600) !important;
}

.portal-teaser-container .portal-teaser-slider .text-container .teaser-headline {
    color: var(--color-000) !important;
    font-family: 'Inria Sans', sans-serif !important;
    font-size: var(--fs-h3) !important;
    font-weight: 500 !important;
    line-height: var(--lh-h3) !important;
    text-transform: none !important;
    font-style: normal !important;
    margin-bottom: 20px !important;
}

.portal-teaser-container .portal-teaser-slider {
    background-color: var(--color-600) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    width: 100%;
}
.portal-teaser .headline-container {
   margin-bottom: 48px !important;
}

.portal-teaser .img-container {
    position: relative;
    min-height: 320px;
}
.portal-teaser .teaser-slider-image {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity 300ms ease-in-out;
}
.portal-teaser .teaser-slider-image.--active {
    opacity: 1;
}
.portal-teaser .teaser-slider-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.teaser-slider .btn svg path {
    fill: var(--color-600) !important;
}
.teaser-slider .btn:before {
    background-color: var(--color-000) !important;
}
.teaser-slider .slider-prev {
    left: 4%;
}
.teaser-slider .slider-next {
    right: 4%;
}
.teaser-slider .slider-pagination {
    left: 7%;
}


/* ---------------- background grey */
.portal-teaser-container .portal-teaser-slider.--background-grey {
    background-color: var(--color-200) !important;
}
.portal-teaser-container .portal-teaser-slider.--background-grey .teaser-headline{
    color: var(--color-900) !important;
}
.portal-teaser-container .portal-teaser-slider.--background-grey .text-container p{
    color: var(--color-900) !important;
}
.portal-teaser-container .portal-teaser-slider.--background-grey .btn span{
    color: var(--color-800) !important;
}
.portal-teaser-container .portal-teaser-slider.--background-grey .btn span svg path{
    stroke: var(--color-900) !important;
}

/* ---------------- two Cards */
.portal-teaser-container .portal-teaser-slider.--two-cards {
    display: none;
}


.portal-teaser-slider .text-container {
    padding: 48px 48px 0 48px !important;
    text-align: left !important;
    height: 100% !important;
}
.teaser-headline {
    font-family: 'Inria Sans', sans-serif !important;
    font-size: var(--fs-h3) !important;
    font-weight: 500 !important;
    line-height: var(--lh-h3) !important;
    font-style: normal !important;
    text-transform: none !important;
}
.portal-teaser-slider .text-container p {
    font-size: var(--fs-body) !important;
    font-weight: 300 !important;
    line-height: var(--lh-body) !important;
    color: var(--color-300) !important;
}
.portal-teaser .buttons-row {
    justify-content: flex-start !important;
    padding: 0 48px 48px!important;
}

.btn.secondary {
    transform: none !important;
    position: relative;
    padding: 0 10px;
    margin: 8px 0;
}
.btn.secondary span {
    position: relative;
    padding: 0 !important;
    font-size: var(--fs-small) !important;
    font-weight: 300;
    line-height: var(--lh-small) !important;
    border: none !important;
    z-index: 1;
}

.btn.secondary.hover-state {
    background-color: transparent !important;
    color: var(--color-600) !important;
}
.btn.secondary:hover {
    background-color: transparent !important;
}
.btn.secondary:hover .button-shape {
    left: calc(100% - 40px);
}
.btn.secondary.hover-state svg{
    animation: none !important;
    left: 0 !important;
}
.button-shape {
    position: absolute;
    top: -10px;
    left: -2px;
    transition: left 300ms ease-in-out;
    pointer-events: none;
}
.button-shape svg {
    height: 40px !important;
    width: 40px !important;
}
@media screen and (min-width: 992px) {
    .button-shape svg {
        height: 48px !important;
        width: 48px !important;
    }
}

/* -------------------------------------------------------- zitat */
.zitat {
    background-color: var(--color-700) !important;
    overflow: hidden;
}
.zitat::before {
    display: none;
}
.zitat .container {
    position: relative !important;
    margin-top: 0 !important;
    padding: 56px 32px !important;
}
@media screen and (min-width: 576px) {
    .zitat .container {
        padding: 56px 72px !important;
    }
}
@media screen and (min-width: 992px) {
    .zitat .container {
        padding: 135px 240px !important;
    }
}
@media screen and (min-width: 1400px) {
    .zitat .container {
        padding: 135px 240px !important;
    }
}

.zitat-headline {
    position: relative;
    font-family: 'Inria Sans', sans-serif !important;
    font-size: var(--fs-h2) !important;
    font-weight: 700 !important;
    line-height: var(--lh-h2) !important;
    font-style: normal !important;
    text-transform: none !important;
    color: var(--color-000) !important;
    margin-bottom: 48px !important;
    max-width: unset !important;
    z-index: 1;
}

.zitat-hexagon {
    position: absolute;
    transform: translate(-160px, -100px);
}
/* .hex-one {
    animation: hexOne 5s ease-in-out alternate infinite;
}
.hex-two {
    animation: hexTwo 5s ease-in-out alternate infinite;
}
.hex-three {
    animation: hexThree 5s ease-in-out alternate infinite;
}
.hex-four {
    animation: hexFour 5s ease-in-out alternate infinite;
}
.hex-five {
    animation: hexFive 5s ease-in-out alternate infinite;
} */

/* 
@keyframes hexOne {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
}
@keyframes hexTwo {
    0% {
        opacity: 0;
    }    
    10% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
}
@keyframes hexThree {
    0% {
        opacity: 0;
    } 
    30% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}
@keyframes hexFour {
    0% {
        opacity: 0;
    } 
    50% {
        opacity: 0;
    }
    70% {
        opacity: 1;
    }
}
@keyframes hexFive {
    0% {
        opacity: 0;
    } 
    70% {
        opacity: 0;
    }
    90% {
        opacity: 1;
    }
} */


/* -------------------------------------------------------- text-image image-text */

.image-text .text, .text-image .text {
    max-width: 100% !important;
    padding: 32px !important;
    background-color: var(--color-600) !important;
}
@media screen and (min-width: 992px) {
    .image-text .text, .text-image .text {
        padding: 124px 80px !important;
    }
}
.image-text .image, .text-image .image {
    max-width: 100% !important;
}
@media screen and (min-width: 992px) {
    .image-text .text, .text-image .text {
        max-width: 50% !important;
    }
    .image-text .image, .text-image .image {
        max-width: 50% !important;
    }
}
.image-text .teaser-headline, .text-image .teaser-headline {
    color: var(--color-000) !important;
    font-family: 'Inria Sans', sans-serif !important;
    font-size: var(--fs-h3) !important;
    font-weight: 500 !important;
    line-height: var(--lh-h3) !important;
    font-style: normal !important;
    text-transform: none !important;
    margin-bottom: 16px !important;
}
.image-text .text .wrapper, .text-image .text .wrapper {
    max-width: unset !important;
}
.image-text .text .wrapper p, .text-image .text .wrapper p {
    color: var(--color-300) !important;
    font-size: var(--fs-body) !important;
    line-height: var(--lh-body) !important;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
}
.image-text .text .wrapper .secondary, .text-image .text .wrapper .secondary {
    margin-top: 32px;
}
@media screen and (min-width: 992px) {
    .image-text .text .wrapper .secondary, .text-image .text .wrapper .secondary {
        margin-top: 48px;
    }
}

.image-text.dark .text, .text-image.dark .text{
    background-color: var(--color-600) !important;
}
.image-text.light .text, .text-image.light .text{
    background-color: var(--color-200) !important;
}
.image-text.light .teaser-headline, .text-image.light .teaser-headline{
    color: var(--color-900) !important;
}
.image-text.light .text .wrapper p, .text-image.light .text .wrapper p{
    color: var(--color-900) !important;
}
.image-text.light .btn a span, .text-image.light .btn a span{
    color: var(--color-900) !important;
}
.image-text.light a svg path, .text-image.light a svg path{
    stroke: var(--color-900) !important;
}

/* -------------------------------------------------------- benefits */
.benefits {
    padding: 56px 32px !important;
    background-color: var(--color-600) !important;
}
@media screen and (min-width: 576px) {
    .benefits {
        padding: 64px 56px !important;
    }    
}
@media screen and (min-width: 992px) {
    .benefits {
        padding: 72px 160px !important;
    }    
}
@media screen and (min-width: 1025px) {
    .benefits {
        padding: 136px 240px !important;
    }    
}
.benefits::before {
    display: none !important;
}
.benefits .container {
    padding: 0 !important;
}
.benefits .elements {
    margin-top: 40px !important;
    grid-row-gap: 40px !important;
    grid-column-gap: 40px !important;
}
@media screen and (min-width: 992px) {
    .benefits .elements {
        margin-top: 80px !important;
        grid-row-gap: 80px !important;
        grid-column-gap: 80px !important;
    }
}
.benefits .benefits-title {
    font-family: 'Inria Sans', sans-serif !important;
    font-size: var(--fs-h2) !important;
    line-height: var(--lh-h2) !important;
    font-weight: 400 !important;
    font-style: normal !important;
    color: var(--color-000) !important;
}
.benefits .container .lauf p{
    color: var(--color-000) !important;
    margin-top: 16px;
}
.benefits .teaser {
    display: flex !important;
    gap: 8px !important;
    flex-direction: column !important;
}
@media screen and (min-width: 992px) {
    .benefits .teaser {
        gap: 40px !important;
        flex-direction: row !important;
    }
}
.benefits .img-container {
    display: block !important;
    align-content: unset !important;
}
.benefits .img-container img {
    min-height: 72px !important;
    min-width: 72px !important;    
    height: 72px !important;
    width: 72px !important;
}
@media screen and (min-width: 992px) {
    .benefits .img-container img {
        min-height: 116px !important;
        min-width: 116px !important;
    }
}
.benefits .teaser .lauf h3 {
    font-family: 'Inria Sans', sans-serif !important;
    font-size: var(--fs-lead) !important;
    line-height: var(--lh-lead) !important;
    font-weight: 300 !important;
    font-style: normal !important;
    color: var(--color-000) !important;
    margin-bottom: 17px !important;
}
.benefits .teaser .lauf p {
    font-family: 'Inria Sans', sans-serif !important;
    font-size: var(--fs-small) !important;
    line-height: var(--lh-small) !important;
    font-weight: 300 !important;
    font-style: normal !important;
    color: var(--color-000) !important;
}

/* -------------------------------------------------------- cards */
.mulden-teaser .mulden-title {
    font-family: 'Inria Sans', sans-serif !important;
    font-size: var(--fs-h2) !important;
    line-height: var(--lh-h2) !important;
    font-weight: 700 !important;
    font-style: normal !important;
    color: var(--color-600) !important;
    text-transform: uppercase !important;
    margin-bottom: -0px !important;
}
@media screen and (min-width: 992px) {
    .mulden-teaser .mulden-title {
        margin-bottom: -32px !important;
    }
}

.mulden-teaser .container{
    padding: 0 32px !important;
}
@media screen and (min-width: 576px) {
    .mulden-teaser .container{
        padding: 0 120px !important;
    }
}
@media screen and (min-width: 1400px) {
    .mulden-teaser .container{
        padding: 0 240px !important;
    }
}

.mulden-teaser .content-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
}
@media screen and (min-width: 992px) {
    .mulden-teaser .content-container {
        gap: 80px !important;
    }
}

.mulden-teaser .container .content-container {
    max-width: unset !important;
}

.mulden-teaser .container .content-container .teaser {
    padding: 0px !important;
    border-bottom: none !important;
    gap: 0px !important;
}

.mulden-teaser .container .content-container .teaser .img-container {
    max-height: 360px !important;
    /* min-width: 624px !important; */
    width: 100% !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

.mulden-teaser .img-container img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

.mulden-teaser .content {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    width: calc(100% - 24px*2) !important;
    padding: 24px 24px 48px 24px;
    max-width: unset !important;
}
@media screen and (min-width: 992px) {
    .mulden-teaser .content {
        width: calc(100% - 48px*2) !important;
        padding: 48px 48px 84px 48px;
    }  
}

.mulden-teaser .content .headline p {
    font-family: 'Inria Sans', sans-serif !important;
    color: var(--color-900) !important;
    font-size: var(--fs-h3) !important;
    line-height: var(--lh-h3) !important;
    font-weight: 700 !important;
    font-style: normal !important;
    margin-bottom: 0px !important;
}
.mulden-teaser .content .text p {
    color: var(--color-900) !important;
    font-size: var(--fs-small) !important;
    line-height: var(--lh-small) !important;
    font-weight: 400 !important;
}
.mulden-teaser .content button.secondary {
    width: fit-content !important;
}
.mulden-teaser .content button.secondary a span {
    color: var(--color-800) !important;
}
.mulden-teaser .content .secondary a span svg path {
    stroke: var(--color-800) !important;
}


/* --------------------------------------------------------------------- footer */
#footer {
    background-color: var(--color-800);
    height: fit-content;
}
#footer::after {
    display: none;
}
#footer .container {
    padding: 80px 120px 40px;
    position: relative;
    z-index: 1;
}
#footer .contact p{
    font-size: var(--fs-small) !important;
    line-height: var(--lh-small) !important;
    font-weight: 300 !important;
}
#footer .center-sec {
    justify-content: space-between !important;
}
#footer .social-sec {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 32px !important;
    height: fit-content !important;
    margin-top: 0 !important;
}
#footer .social-sec a:hover svg path {
    transition: fill 250ms ease-in-out;
}
#footer .social-sec a:hover svg path {
    fill: var(--color-400) !important;
}
#footer .social-sec .socials {
    display: flex !important;
    gap: 24px !important;
}

#footer .bottom-sec {
    padding-top: 80px !important;
    gap: 24px !important;
}
#footer .bottom-sec div {
    justify-content: space-between !important;
}
@media screen and (min-width: 992px) {
    #footer .bottom-sec {
        gap: 40px !important;
    }
    #footer .bottom-sec div {
        justify-content: unset !important;
        gap: 48px !important;
    }
}
#footer .footer-logo {
    display: block;
    margin-bottom: 32px !important;
}
#footer .footer-logo svg {
    height: 63px;
    width: 115px;
}
#footer .footer-logo svg path {
    transition: fill 250ms ease-in-out;
}
#footer .footer-logo:hover svg path {
    fill: var(--color-400) !important;
}
#footer .partner {
    position: relative !important;
    font-size: var(--fs-small) !important;
    line-height: var(--lh-small) !important;
    font-weight: 300 !important; 
}
@media screen and (min-width: 992px) {
    #footer .partner {
        position: absolute !important;
        top: 80px;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}
#footer .partner-logo {
    margin-top: 16px;
    z-index: 1;
}
#footer .footer-deco-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (min-width: 992px) {
    #footer .footer-deco-logo {
        top: 70%;
    }
}

#footer .footer-partner-link img{
    height: 63px !important;
    width: 115px !important;
}

/* --------------------------------------------------------------------- downloads */
.downloads .headline {
    display: flex;
    flex-direction: column;
    font-family: 'Inria Sans', sans-serif !important;
    font-size: var(--fs-h3) !important;
    line-height: var(--lh-h3) !important;
    font-weight: 700 !important;
    text-transform: unset !important;
    color: var(--color-900) !important;
    margin-bottom: 48px !important;
    text-transform: unset !important;
}
.downloads .teaser {
    border-color: var(--color-200) !important;
}
.downloads .label {
    font-size: var(--fs-lead) !important;
    line-height: var(--lh-lead) !important;
    font-weight: 400 !important;
    color: var(--color-600) !important;
}
.downloads .images-container {
    width: 100% !important;
}
.downloads .images-container .arrow {
    margin-left: auto !important;
}

/* --------------------------------------------------------------------- cookies */
.cookies-eu-banner {
    border-color: var(--color-600) !important;
}
.cookies-eu-banner .cookies-checkboxes .cookies-checkbox button:after {
    background: var(--color-400) !important;
}

/* --------------------------------------------------------------------- media slider */
.media-slider {
    max-width: 1800px;
    margin: 0 auto;
}
.media-slider img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.slider-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
}
.media-slider .slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 32px !important;
}
@media screen and (min-width: 576px) {
    .media-slider .slider-slide {
        padding: 0 32px !important;
    }
}
@media screen and (min-width: 992px) {
    .media-slider .slider-slide {
        padding: 0 96px !important;
    }
} 
@media screen and (min-width: 1400px) {
    .media-slider .slider-slide {
        padding: 0 156px !important;
    }
}

.media-slider .slider-caption {
    font-size: var(--fs-small) !important;
    line-height: var(--lh-small) !important;    
    font-weight: 300 !important;
    color: var(--color-600) !important;
    min-height: 27px;
}

.slider-prev {
    position: absolute;
    left: calc(32px + 8px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    z-index: 1;
}
.slider-prev::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--color-600);
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    transition: opacity 250ms ease-in-out;
}
.slider-prev:hover::before {
    opacity: 1;
}
.slider-next {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    z-index: 1;
}
.slider-next svg {
    transform: rotate(180deg);
}
.slider-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--color-600);
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    transition: opacity 250ms ease-in-out;
}
.slider-next:hover::before {
    opacity: 1;
}
@media screen and (min-width: 576px) {
    .slider-prev {
        left: calc(32px + 8px);
    }    
    .slider-next {
        right: calc(32px + 8px);
    }
}
@media screen and (min-width: 992px) {
    .slider-prev {
        left: calc(96px + 16px);
    }    
    .slider-next {
        right: calc(96px + 16px);
    }
} 
@media screen and (min-width: 1400px) {
    .slider-prev {
        left: calc(156px + 32px);
    }    
    .slider-next {
        right: calc(156px + 32px);
    }
}

.slider-slide.--video {
    height: 100%;
    width: 100%;
}
.slider-slide {
    opacity: 0;
    transition: opacity 500ms ease-in-out;
}
.slider-slide.--activeStart, .slider-slide.--active{
    opacity: 1;
    z-index: 1;
}

.slider-video {
    width: 100%;
}

.slider-pagination {
    position: absolute;
    bottom: 0;
    right: 32px;
    display: flex;
    gap: 4px;
    margin: 8px 0 16px;
}
@media screen and (min-width: 576px) {
    .slider-pagination {
        right: 32px;
    }
}
@media screen and (min-width: 992px) {
    .slider-pagination {
        right: 96px;
    }
} 
@media screen and (min-width: 1400px) {
    .slider-pagination {
        right: 156px;
    }
}

.slider-pagination-item {
    position: relative;
    background-color: var(--color-200);
    height: 4px;
    width: 28px;
    z-index: 1;
    cursor: pointer;
}
.slider-pagination-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--color-600);
    opacity: 0;
    transition: opacity 250ms ease-in-out;
}
.slider-pagination-item.--active::after{
    opacity: 1;
}

.slider-video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.slider__video.--youtube {
    width: 100%;
    aspect-ratio: 16/9 !important;
}
.slider-slide {
    width: 100%;
}

/* --------------------------------------------------------------------- contact-form */
.contact-form-headline, .order-form-headline {
    font-family: 'Inria Sans', sans-serif !important;
    font-size: var(--fs-h2) !important;
    line-height: var(--lh-h2) !important;
    font-weight: 700 !important;
    font-style: normal !important;
    color: var(--color-600) !important;
    text-transform: uppercase !important;
    margin-bottom: 48px !important;
}

.contact-form .container, .order-form .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 32px !important;
} 
@media screen and (min-width: 576px) {
    .contact-form .container, .order-form .container {
        padding: 0 120px !important;
    } 
}
@media screen and (min-width: 992px) {
    .contact-form .container, .order-form .container {
        padding: 0 240px !important;
    } 
}

.contact-form button, .order-form button {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    background-color: var(--color-600) !important;
    color: var(--color-000) !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 12px 32px !important;
    width: fit-content !important;
    text-transform: uppercase !important;
    font-size: var(--fs-small) !important;
    line-height: var(--lh-small) !important;
    font-weight: 400 !important;
    z-index: 1 !important;
    margin-top: 48px !important;
    transform: skew(0) !important;
    transition: background-color 250ms ease-in-out;
}
.contact-form button:after, .order-form button:after {
    position: relative !important;
    right: unset !important;
    top: 4px !important;
    background-image: url('/assets/images/arrows/button-arrow-white.svg') !important;
}
.contact-form button:hover, .order-form button:hover {
    background-color: var(--color-400) !important;
}

.contact-form .inputs.--products {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.contact-form .form-add-product {
    margin-top: 0 !important; 
}

.contact-form .form-products-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


/* --------------------------------------------------------- contact-header */
.contact-header .info-container .text-container p {
    font-size: var(--fs-lead) !important;
    line-height: var(--lh-lead) !important;
    font-weight: 400 !important;
}
.content-header.contact-header {
    height: fit-content !important;
}
.contact-header .contact-header-container {
    height: fit-content !important;
}
.contact-header .contact-header-container .map-container iframe {
    height: 100% !important;
    width: 100% !important;
}  

@media screen and (max-width: 575px) {
    .contact-header .contact-header-container .info-container .info {
        padding: 40px 10% !important;
    }
    .contact-header .contact-header-container .info-container .info .hexagon {
        left: -16px !important;
    }    
    .contact-header .contact-header-container {
        height: fit-content !important;
    }
    .contact-header .contact-header-container .contact-map {
        height: fit-content !important;
    }
    .contact-header .contact-header-container .map-container iframe {
        width: 100% !important;
    }  
}

/* --------------------------------------------------------- checkbox */
.contact-form__checkbox, .order-form__checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 0 8px;
    margin: 32px 0;
}
.contact-form__checkbox label, .order-form__checkbox label {
    position: unset;
    transform: unset;
    margin: 0;
    color: var(--color-600);
    cursor: pointer;
}
.contact-form__checkbox input, .order-form__checkbox input {
    position: relative;
    height: 24px;
    width: 24px;
    cursor: pointer;
}
.contact-form__checkbox input::before, .order-form__checkbox input::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 6px;
    pointer-events: none;   
    z-index: 1;
}
.contact-form__checkbox input::after, .order-form__checkbox input::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    height: 90%;
    width: 90%;
    pointer-events: none;   
    z-index: 1;
    background-image: url('/assets/images/check.svg');
    background-size: contain;
    background-repeat: no-repeat;   
    opacity: 0;
    transition: opacity 150ms ease-in-out;
}
.contact-form__checkbox input.invalid, .order-form__checkbox input.invalid {
    outline: none;
}
.contact-form__checkbox input.invalid::before, .order-form__checkbox input.invalid::before {
    box-shadow: 0 0 0 2px red; /* Mimics an outline with rounded corners */
}
.contact-form__checkbox input:checked::before, .order-form__checkbox input:checked::before {
    background-color: var(--color-000);
}
.contact-form__checkbox input:checked::after, .order-form__checkbox input:checked::after {
    opacity: 1;
}

.form-add-product.--invalid {
    background-color: var(--color-300) !important;
    color: var(--color-200) !important;
    pointer-events: none;    
}

.contact-form .form-products-list {
    /* flex-direction: row-reverse !important; */
    margin-top: -16px;
}
.contact-form button.inputs-delete {
    margin-top: 0 !important;
    background-color: transparent !important;
    padding: 8px !important;
}
.contact-form button.inputs-delete svg path {
    transition: fill 250ms ease-in-out;
}
.contact-form button.inputs-delete:hover svg path {
    fill: var(--color-400) !important;
}
.contact-form button.inputs-delete.--hidden {
    display: none !important;
}
.contact-form .form-products-list > div {
    width: 100%;
}
.contact-form .form-products-list > .form-group {
    width: unset;
}
.product-item {
    display: flex;
    gap: 16px;
    align-items: center;
}
.product-item .form-group {
    width: 100%;
}


/* --------------------------------------------------------- radio */
.contact-form__radio, .order-form__radio {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 32px;
    margin-bottom: 16px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    padding: 0 8px;    
}
@media screen and (min-width: 576px) {
    .contact-form__radio, .order-form__radio {
        gap: 12px;
    }
}

.radio {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
}       
.radio label {
    position: unset;
    transform: unset;
    margin: 0;
    color: var(--color-600);
    cursor: pointer;
}
.radio input {
    appearance: none;
    position: relative;
    height: 30px;
    width: 30px;
    border: none;
    cursor: pointer;
    background-color: transparent !important;
}
.radio input::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    border-radius: 50px;
    background-color: var(--color-000);
}
.radio input::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 12px;
    width: 12px;
    outline: 1px solid var(--color-600);
    outline-offset: 4px;
    background-color: var(--color-600);
    border-radius: 50px;
    outline-offset: 4px;   
    opacity: 0;
    transition: opacity 150ms ease-in-out;
}
.radio input:checked::after {
    opacity: 1;
}
/* .radio input:focus {
    outline: none;
}
.radio input:focus::before {
    outline: 2px solid var(--color-400);
} */
.radio.invalid {
    outline: 2px solid red;
}

.form-section-label {
    display: block;
    font-size: var(--fs-lead);
    line-height: var(--lh-lead);
    font-weight: 400;
    color: var(--color-600);
    padding: 24px 0 16px;
}
.contact-form-contact-button {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px 60px; 
    width: 100%;
    max-width: 900px;
}
.contact-form-contact-button a {
    background-color: var(--color-600) !important;
    color: var(--color-000) !important;
}
.contact-form-contact-button a:hover {
    background-color: var(--color-400) !important;
}

.contact-form__radio.invalid .radio input {
    outline: 2px solid red;
    border-radius: 50%;
}
input[type='checkbox'].invalid {
    border-radius: 6px;
}



/* --------------------------------------------------------------------- hexagon animation */

.hexagon.as-hex path {
    fill: #D0D0D0;
    stroke: #D0D0D0;
}



/* --------------------------------------------------------------------- 404 */

.error-page {
    height: calc(100vh - 70px) !important;
    width: 100vw !important;
    padding-top: 0 !important;
}
@media screen and (min-width: 1024px) {
    .error-page {
        height: calc(100vh - 156px) !important;
    }
}

.error-page .bg {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.error-page .bg:after {
   background: radial-gradient(circle, rgb(255 255 255 / 60%) 1%, rgb(255 255 255 / 40%) 46%, rgb(255 255 255 / 40%) 99%) !important;
}
.error-page .container{
    display: flex;
    align-items: center;
}
.error-headline {
    font-family: 'Inria Sans', sans-serif !important;
    font-size: var(--fs-h1) !important;
    line-height: var(--lh-h1) !important;
    font-weight: 600 !important;
    font-style: normal !important;
}


/* ---------------------------------------------------------------------  contact-header */
.contact-header {
    height: calc(100vh - 156px) !important; 
}

.contact-header .bg {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 0;
}
.contact-header .contact-header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 1;
}
.contact-header .contact-map {
    height: 681px !important;
    max-width: 1088px !important;
    min-height: unset !important;
}
.contact-header .info-container {
    background-color: var(--color-600) !important;
}
.contact-header .info-container .info {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 48px !important;
    padding: 80px 120px;
    width: 100% !important;
}
.contact-header .text-container {
    position: relative;
    height: unset !important;
    margin-bottom: unset !important;
}
.contact-header .contact-container, button {
    z-index: 1;
}
.contact-header .text-container p {
    font-size: var(--fs-h3) !important;
    line-height: var(--lh-h3) !important;
    font-weight: 700 !important;
    z-index: 1;
    position: relative;
}
.contact-header .contact-container a {
    align-items: center !important;
    font-size: var(--fs-body) !important;
    line-height: var(--lh-body) !important;
    font-weight: 400 !important;
    transition: color 250ms ease-in-out;
}
.contact-header .contact-container a:hover svg path {
    transition: stroke 250ms ease-in-out, fill 250ms ease-in-out;
}
.contact-header .contact-container a:hover{
    color: var(--color-400) !important;
}
.contact-header .contact-container .contact-header__tel:hover svg path{
    stroke: var(--color-400) !important;
}
.contact-header .contact-container .contact-header__email:hover svg path {
    fill: var(--color-400) !important;
}
.contact-header .maps-link {
    margin-top: 0px !important;
}

.contact-header .hexagon {
    position: absolute;
    top: -75px;
    left: -68px;
    width: 128px;
    height: 149px;
    /* z-index: 1; */
}
.contact-header .hexagon svg {
    width: 128px;
    height: 149px;
    filter: drop-shadow(1px 1px 8px rgba(0, 0, 0, 0.2))
}
.contact-header .hexagon svg path {
    stroke-width: 2px;
}

/* ------------------------------------------------------ Contact success */
.section-title#message h2 {
    color: #878787;
}
.section-title#message svg {
    color: #878787;
}

.content-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



/* ------------------------------------------------------ search results */

.search-brick {
    max-width: 2560px;
    margin: 0 auto;
}

.search__cotainer {
    max-width: 1800px;
    margin: 0 auto;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 40px 16px;
}

.results-section {
    max-width: 1920px;
    margin: 0 auto;
}

.results {
    max-width: 1800px;
    padding: 80px 120px 60px;
    margin: 0 auto;
    display: flex;
}

.result-title-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
}

#search-submit-desktop svg {
    position: relative !important;
    left: 0 !important;
}

.search-brick {
    background-color: transparent;
}

.container-bottom {
    width: 100%;
}

.container-top {
    width: 100%;
}

#searchInput {
    border: 1px solid var(--color-300);
    border-radius: 40px;
    padding: 10px 28px 10px 65px;
    background-color: var(--color-000);
    width: 100%;

    text-align: left;
    font-size: var(--fs-h3);
    line-height: var(--lh-h3);
    font-weight: 400;
    color: var(--color-400);
}
#searchInput+svg path {
    transition: stroke 0.3s ease-out;
}
#searchInput:focus {
    border-color: var(--color-500) !important;
    outline: none;
    color: var(--color-700) !important;
}
#searchInput:focus+svg path {
    stroke: var(--color-500) !important;
}

.search-input-filledIn {
    border-color: var(--color-700) !important;
    outline: none !important;
    color: var(--color-700) !important;
}
.search-input-filledIn+svg path {
    stroke: var(--color-700) !important;
}

.search-results-text {
    font-size: var(--fs-h3);
    line-height: var(--lh-h3);
    font-weight: var(--fw-medium);
    color: var(--color-primary-800);
    margin-bottom: 40px;
    display: none;
}

.hidden {
    display: none;
}

.result-title {
    font-size: 1.2rem;
    line-height: 1.5em;
    font-weight: 400;
    color: var(--color-800);
    transition: color 0.3s ease-out;
}

.result-text-link {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 80px;
    align-items: flex-end;
}

.result-text {
    display: flex;
}
.result-text p {
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    font-weight: 400;
    color: var(--color-500);
    transition: color 0.3s ease-in-out;
}
.result-text .highlighted {
    font-weight: 600;
    color: var(--color-600);
}


.result-link {
    display: none;
}
.result-link-text {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.result-link-text p {
    font-size: var(--fs-small);
    line-height: var(--lh-small);
    font-weight: 400;
    color: var(--color-600);
    transition: color 0.3s ease-in-out;
}
.result-link-text div {
    display: block;
}
.highlighted {
    color: var(--color-500);
}

.result-output a {
    text-decoration: none;
}

.result-output {
    display: flex;
    flex-direction: column;
}

.result-item {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid var(--color-700);
    gap: 16px;

    padding: 12px 16px;
    transition: background-color 0.3s ease-in-out;

}
.result-item:hover {
    background-color: var(--color-200);
}
.result-item a {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}
.result-item a:hover .result-title {
    color: var(--color-900);
}
.result-item a:hover .result-text p {
    color: var(--color-600);
}
.result-item a:hover .result-link-text p {
    color: var(--color-800);
}

.no-search-results {
    font-size: var(--fs-h3);
    line-height: var(--lh-h3);
    font-weight: 400;
    color: var(--color-800);
}




.cookies-text .btn {
    text-decoration: underline;
    color: black;
    font-family: inherit;
    letter-spacing: unset;
    text-transform: unset;
    font-size: 12px;
}

.svg-clippaths {
    opacity: 0;
    height: 0;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
}