@font-face {
    font-family: "Ubuntu-Light";
    font-weight: 300;
    font-style: normal;
    src: local("Ubuntu-Light"),
        url("/fonts/Ubuntu-Light.woff2");
    font-display: swap;
}

@font-face {
    font-family: "Ubuntu-Regular";
    font-weight: 400;
    font-style: normal;
    src: local("Ubuntu-Regular"),
        url("/fonts/Ubuntu-Regular.woff2");
    font-display: swap;
}

@font-face {
    font-family: "Ubuntu-Medium";
    font-weight: 500;
    font-style: normal;
    src: local("Ubuntu-Medium"),
        url("/fonts/Ubuntu-Medium.woff2");
    font-display: swap;
}

:root {
    --color-dark: #282828;
    --color-dark-darkest: #1d1d1d;
    --color-light: #ffffff;
    --color-grey: #797979;
    --color-cta: #DB2929;
    --color-red-dark: #c22323;
    --border: 1px solid #404040;
    --border-radius: 1rem;
    --box-shadow: 0 20px 20px rgba(88, 87, 124, 0.25);
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    line-height: 1;
}

body {
    font-family: 'Ubuntu-Regular', sans-serif;
    font-size: calc(20px + 4 * ((100vw - 320px)/ 1920));
    color: var(--color-dark);
    background-color: var(--color-light);
    overflow-x: hidden;
    height: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

aside,
nav,
footer,
header,
section {
    display: block;
}

a {
    text-decoration: none;
    color: var(--color-cta);
}

a.column_text,
a:hover {
    color: var(--color-dark);
}

a.active {
    color: var(--color-cta);
}

ul,
ol,
li {
    list-style: none;
    text-decoration: none;
}

img {
    vertical-align: top;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    margin: 0;
    padding: 0;
}

div,
p,
input,
button,
form,
span,
a,
ul,
li {
    box-sizing: border-box;
}

.container {
    width: 96%;
    margin: 0 auto;
}

.section {
    padding: 90px 0;
}

.section_top {
    padding: 130px 0 70px 0;
}

.section_color {
    color: var(--color-light);
    background-color: var(--color-dark);
    position: relative;
}

/* 
.section_color img {
    position: absolute;
    top: 6%;
    right: 2%;
    width: 50px;
    height: auto;
} */

.section_brands {
    position: relative;
}


/*Header*/

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
    transition: all .3s ease;
}

.header.out {
    transform: translateY(-100%);
}

.header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.header_body {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 57px;
}

nav {
    background-color: var(--color-light);
    box-shadow: var(--box-shadow);
    border-radius: 0 0 10px 10px;
}

.header_logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    gap: 5px;
    padding: 6px;
    z-index: 3;
    color: var(--color-dark);
    background-color: var(--color-light);
    box-shadow: var(--box-shadow);
    border-radius: 0 0 10px 10px;
}

.logo__name {
    font-family: 'Ubuntu-regular', sans-serif;
    text-transform: none;
    color: var(--color-dark);
    background-color: var(--color-light);
}

.logo__name span {
    font-family: 'Ubuntu-Medium', sans-serif;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-light);
    background-color: var(--color-cta);
    border-radius: 6px;
    padding: 1px 7px;
    margin-right: 4px;
}

.logo__name:hover span {
    background-color: var(--color-dark);
}

.logo_text {
    font-size: calc(12px + 4 * ((100vw - 320px)/ 1920));
    letter-spacing: 10px;
}

.logo_text span {
    font-family: "Ubuntu-Medium", sans-serif;
    letter-spacing: 1px;
    padding: 0 10px;
    color: var(--color-cta);
}

.header_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.header_list span {
    color: var(--color-dark);
    padding-right: 10px;
}

.menu__item {
    display: flex;
    justify-content: space-between;
    line-height: 1.5;
}

.header_link {
    font-size: calc(14px + 4 * ((100vw - 320px)/ 1920));
    line-height: 2;
    padding: 12px 1vw;
    color: var(--color-dark);
}

.header_link:hover {
    color: var(--color-light);
    background-color: var(--color-cta);
    border-radius: 0 0 10px 10px;
}

.header__contact {
    z-index: 5;
}

.header_burger {
    display: none;
}

.header__contact_mobile {
    display: none;
}


/*Main*/

.offer {
    flex: 1 1 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 13vw 0 6vw 0;
    overflow: hidden;
}

.offer_title {
    font-family: "Ubuntu-Regular", sans-serif;
    font-size: clamp(16px, 4vw, 120px);
    text-transform: uppercase;
    line-height: 1.1;
    background-color: var(--color-light);
    max-width: 70%;
    border-radius: 30px;
    z-index: 3;
    will-change: transform, opacity;
}

.offer_title span {
    font-size: clamp(20px, 5.2vw, 90px);
    color: var(--color-light);
    background-color: var(--color-cta);
    padding: 0 1.5vw;
    border-radius: 10px;
    z-index: 3;
}

.offer .section_subtitle {
    background-color: var(--color-light);
    z-index: 3;
    max-width: 660px;
    margin-top: 1rem;
}

.offer_text {
    font-family: "Ubuntu-Light", sans-serif;
    font-size: calc(20px + 10 * ((100vw - 320px)/ 1920));
    line-height: 1.2;
    max-width: 540px;
    background-color: var(--color-light);
    z-index: 3;
}

canvas {
    display: block;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: 1;
}

/* ---- stats.js ---- */
.count-particles {
    position: absolute;
    top: 48px;
    left: 0;
    width: 80px;
    color: #404040;
    font-size: 0.8em;
    text-align: left;
    text-indent: 4px;
    line-height: 14px;
    padding-bottom: 2px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
}

.js-count-particles {
    font-size: 1.1em;
}

#stats,
.count-particles {
    margin-top: 5px;
    margin-left: 5px;
}

#stats {
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.count-particles {
    border-radius: 0 0 3px 3px;
}


/* Texts */

.section__title {
    font-family: "Ubuntu-Regular", sans-serif;
    font-size: calc(28px + 44 * ((100vw - 320px)/ 1920));
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 2vw;
}

.section__title span {
    font-size: calc(24px + 20 * ((100vw - 320px)/ 1920));
}

.section__title_close {
    margin-bottom: 0;
}

.title__center {
    text-align: center;
}

.section_subtitle {
    font-family: "Ubuntu-Light", sans-serif;
    font-size: calc(20px + 20 * ((100vw - 320px)/ 1920));
    margin-right: 1rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

#preise .section_subtitle:not(h3) {
    color: var(--color-light);
}

.column_text,
a.column_text {
    position: relative;
    font-family: "Ubuntu-Light", sans-serif;
    font-size: calc(20px + 12 * ((100vw - 320px)/ 1920));
    padding: 0 0 10px 0;
    line-height: 1.3;
}

.paragraph_text {
    position: relative;
    font-size: calc(16px + 6 * ((100vw - 320px)/ 1920));
    margin: 30px 0 10px 0;
    line-height: 1.5;
}

.paragraph_text_footer {
    margin: 5px 0 50px 0;
}

.column_text_bold {
    font-family: "Ubuntu-Regular", sans-serif;
    font-size: calc(34px + 24 * ((100vw - 320px)/ 1920));
    z-index: 3;
}

.column_text_bold span {
    font-family: "Light", sans-serif;
    font-size: calc(14px + 16 * ((100vw - 320px)/ 1920));
}

.column_text_bold .tags {
    font-size: calc(16px + 6 * ((100vw - 320px)/ 1920));
}


/* Buttons */

.button {
    display: inline-flex;
    align-items: center;
    text-align: center;
    line-height: 1.4;
    font-size: calc(20px + 6 * ((100vw - 320px)/ 1920));
    padding: 10px 30px;
    font-family: "Ubuntu-Regular", sans-serif;
    color: var(--color-light);
    background-color: var(--color-cta);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    transition: all .3s ease-in-out;
    cursor: pointer;
    z-index: 3;
}

.button__header {
    color: var(--color-light);
    background-color: var(--color-cta);
    max-width: 260px;
    font-size: 20px;
    padding: 8px 24px;
    border-radius: 50px;
}

.button__large {
    font-size: clamp(20px, 2.5vw, 4vw);
    padding: 10px 40px;
    border-radius: 50px;
    box-shadow: none;
}

.button__gap {
    margin: 3vw 0;
}

.button_offer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 190px;
    min-height: 200px;
    padding: 10px;
    text-align: left;
    text-transform: uppercase;
    font-size: calc(14px + 4 * ((100vw - 320px)/ 1920));
    border-radius: 1rem;
}

.button_offer-light {
    background-color: var(--color-red-dark);
}

.button_offer span {
    position: relative;
    text-align: center;
    margin: 10px;
}

.button_offer-light span {
    font-family: "Ubuntu-Medium", sans-serif;
}

.button_offer-dark {
    background-color: var(--color-dark);
}

.button_offer img {
    max-height: 60px;
    width: 100%;
    margin-bottom: auto;
    margin-top: 1rem;
}

.link__image {
    width: 100%;
    max-width: 24px;
    margin-right: 1rem;
}

.button_offer .link__image {
    margin: 10px 0 0 0;
}

.button_offer .row__mobile {
    border-top: 1px solid var(--color-light);
}

.button_cookie {
    font-size: 18px;
    padding: 5px 15px;
    border: 1px solid var(--color-cta);
    border-radius: 30px;
}

.button:hover,
.button__large:hover,
.button_cookie:hover {
    color: var(--color-light);
    background-color: var(--color-dark);
}

.button_offer-dark:hover {
    background-color: var(--color-red-dark);
}

.button_offer:hover img {
    filter: grayscale(0);
}


/* Slider */

.glider-contain {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 100%;
}

.glider img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.glider-prev,
.glider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: var(--color-light);
    background-color: var(--color-cta);
    border: none;
    border-radius: 50%;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: background 0.2s ease;
    box-shadow: var(--box-shadow) !important;
}

.glider-prev:hover,
.glider-next:hover {
    color: var(--color-light);
    background: var(--color-dark);
}

.glider-prev {
    left: 10px;
}

.glider-next {
    right: 10px;
}


/* Columns */

.row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-flow: row wrap;
}

.row__stretch {
    align-items: stretch;
    gap: 2px;
}

.row__stretch .column_two {
    gap: 2px;
}

.row__center {
    justify-content: center;
}

.row_bottom {
    align-items: flex-end;
}

.row__large {
    width: 100%;
}

.row__gap_bottom {
    margin-bottom: 40px;
}

.row__mobile {
    display: flex;
    align-items: center;
    flex-flow: row nowrap;
}

#offer .row__mobile {
    gap: 3px;
}

.card .row__mobile {
    width: 100%;
    justify-content: space-between;
}

.divider-vertical {
    width: 1px;
    background-color: var(--color-light);
    height: 100%;
    margin: 0 20px;
    align-self: stretch;
}

.gap__top {
    margin-top: 4vw;
}

.gap__bottom {
    margin-bottom: 3vw;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.column__center {
    align-items: center;
}

.column__with__icon {
    align-items: center;
    text-align: center;
    gap: 10px;
}

.column_one {
    flex: 0 1 25%;
    padding: 20px;
}

.column__color {
    color: var(--color-light);
    background-color: var(--color-cta);
    border-radius: var(--border-radius);
}

.column__color_dark {
    background-color: var(--color-dark);
}

.column_two {
    flex: 1 1 49%;
}

.column_two_text {
    padding: 0 50px 0 0;
}

.column_one:last-child,
.column_two:last-child {
    margin: 0;
}

.column_three {
    flex: 1 1 33%;
}

.image__responsive {
    width: 100%;
    height: auto;
}

#about .image__responsive {
    padding: 40px 40px 0 0;
}

.column__icon {
    width: 100%;
    max-width: 60px;
    height: auto;
}


/* Cards */

.card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 2vw;
}

.card__full {
    gap: 5vw;
    min-height: 260px;
    color: var(--color-light);
    background-color: var(--color-cta);
    border-radius: var(--border-radius);
}

.card__full_dark {
    color: var(--color-light);
    background-color: var(--color-dark);
}

.card__full::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    background-color: var(--color-red-dark);
    border-bottom-left-radius: 100px;
    z-index: 0;
}

.card__full_dark::after {
    background-color: var(--color-dark-darkest);
}

.card .section_subtitle {
    font-family: "Ubuntu-Regular", sans-serif;
    z-index: 3;
}

.card img {
    width: 50px;
    max-width: 100%;
    margin: 0 10px;
    z-index: 3;
}

.card p {
    z-index: 3;
}

.star__large {
    font-size: 8.5vw;
    color: var(--color-cta);
}


/* Acordeon */

.accordion .accordion-item {
    border-bottom: var(--border);
}

.accordion-title,
.accordion-title span {
    font-family: "Ubuntu-Regular", sans-serif;
    font-size: calc(24px + 28 * ((100vw - 320px)/ 1920));
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 40px 0;
    font-size: 1.15rem;
    font-weight: 400;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: var(--color-dark);
    border: var(--border);
}

.accordion button .accordion-title {
    padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: clamp(30px, 6vw, 60px);
    height: clamp(30px, 6vw, 60px);
    background-color: var(--color-cta);
    border-radius: 50%;
    box-shadow: var(--box-shadow);
}

.accordion button .icon::before,
.accordion button .icon::after {
    content: "";
    position: absolute;
    background: var(--color-light);
    transition: all 0.3s ease;
}

.accordion button .icon::before {
    width: 50%;
    height: 3px;
    top: 50%;
    left: 25%;
    transform: translateY(-50%);
}

.accordion button .icon::after {
    width: 3px;
    height: 50%;
    left: 50%;
    top: 25%;
    transform: translateX(-50%);
}

.accordion button .icon:hover {
    background-color: var(--color-dark);
}

.accordion button[aria-expanded="true"] .icon::after {
    height: 0;
}

.accordion button[aria-expanded=true] {
    color: var(--color-dark);
}

.accordion button[aria-expanded=true] .icon::after {
    width: 0;
}

.accordion button[aria-expanded=true]+.accordion-content {
    opacity: 1;
    max-height: 900px;
    transition: max-height 400ms ease, opacity 300ms ease;
}

.accordion-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: calc(20px + 16 * ((100vw - 320px)/ 1920));
    margin: clamp(20px, 6vw, 40px) clamp(16px, 5vw, 40px);
    max-width: 70%;
    line-height: 1.6;
}

.accordion-content img {
    width: clamp(90px, 15vw, 160px);

    height: auto;
    flex-shrink: 0;
    margin: 0 20px 30px 0;
}


/* Custom_Accordion */

.custom-accordion {
    background: var(--color-light);
    color: var(--color-dark);
}

.custom-accordion>.item {
    padding: 2vw;
    margin: 0 auto;
    max-width: 40rem;
}

.custom-accordion>.item:last-of-type {
    padding: 4rem 1rem 0 1rem;
}

.custom-accordion>.item:last-of-type img {
    max-width: 100%;
}

.custom-accordion>.item>.title {
    font-size: calc(24px + 12 * ((100vw - 320px)/ 1920));
}

@media screen and (min-width: 800px) and (min-height: 270px) {
    .custom-accordion {
        display: table;
        width: 100%;
        margin: 50px 0 0 0;
        height: 60vh;
        max-height: 1000px;
        overflow: hidden;
        padding-bottom: 0;
    }

    .custom-accordion>.item {
        display: table-cell;
        position: relative;
        height: 100%;
        padding: 2rem 1rem;
        text-align: center;
        transform-origin: 0 50%;
        transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
    }

    .custom-accordion>.item:hover:not(:last-of-type) {
        transform: scaleX(2) translateX(-1px);
        box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
        background: var(--color-light)fff;
        border-color: transparent;
    }

    .custom-accordion>.item:hover+.item {
        opacity: 0;
    }

    .custom-accordion>.item:hover+.item:last-of-type {
        opacity: 0.1;
        background: var(--color-dark);
    }

    .custom-accordion>.item:not(:last-of-type) {
        border-right: 1px solid var(--color-dark);
    }

    .custom-accordion>.item:last-of-type {
        width: 40%;
        border-radius: 0;
    }

    .custom-accordion>.item:last-of-type>.title {
        transform: rotate(0) translateX(-50%) translateY(-2.5rem);
        padding: 0;
        text-align: center;
    }

    .custom-accordion>.item:last-of-type>.content {
        opacity: 1;
        transform: translateX(-50%) translateY(-50%);
    }

    .custom-accordion>.item:hover:not(:last-of-type)>.title {
        transform: scaleX(0.5) translateX(-50%);
        color: var(--color-dark);
        background: var(--color-light)fff;
        font-size: 24px;
    }

    .custom-accordion>.item:hover:not(:last-of-type)>.title>.text {
        transform: translateX(-50%);
        left: 50%;
    }

    .custom-accordion>.item:hover:not(:last-of-type)>.content {
        opacity: 1;
    }

    .custom-accordion>.item>.title {
        position: absolute;
        bottom: 0;
        left: 50%;
        height: 1.5rem;
        width: 200%;
        text-align: left;
        transform-origin: 0 50%;
        transform: rotate(-90deg);
        transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
        font-size: 2rem;
    }

    .custom-accordion>.item>.title>.text {
        position: absolute;
        left: 2rem;
        bottom: 0;
        white-space: nowrap;
        transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
    }

    .custom-accordion>.item>.content {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 200%;
        height: auto;
        transform: translateX(-50%) translateY(-50%) scaleX(0.5);
        transition: all 0.3s cubic-bezier(0.8, 0.16, 0.42, 0.89);
        opacity: 0;
        padding: 1rem 2rem;
        pointer-events: none;
        text-align: left;
        line-height: 1.4;
    }
}


/* Brands */

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 60px 0 40px 0;
}

.marquee-content {
    display: flex;
    width: 100%;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 10vw;
    animation: scroll-marquee 15s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track a {
    display: inline-block;
    flex-shrink: 0;
}

.marquee-track img {
    width: 220px;
    height: 40px;
    max-width: 100%;
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



/* Cookie */

.cookie-banner {
    display: flex;
    justify-content: space-between;
    position: fixed;
    bottom: 1%;
    left: 2%;
    align-items: center;
    width: 96%;
    gap: 30px;
    z-index: 1000;
    color: var(--color-dark);
    background: var(--color-light);
    padding: 0 1rem;
    font-size: calc(14px + 2 * ((100vw - 320px)/ 1920));
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.cookie-button {
    background: var(--color-cta);
    color: var(--color-light);
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50px;
    transition: 0.3s;
    margin: 10px 0;
}

.cookie-button:hover {
    color: var(--color-light);
    background-color: var(--color-dark);
}


/*Footer*/

.footer .row {
    align-items: stretch;
}

.column_footer_left,
.column_footer_right {
    flex: 1 1 50%;
    background-color: var(--color-cta);
    padding: 5vw;
}

.column_footer_right {
    background-color: var(--color-dark);
}

.column_footer_left a,
.column_footer_right a,
.footer .paragraph_text {
    color: var(--color-light);
}

.footer .paragraph_text a:hover {
    cursor: pointer;
    color: var(--color-dark);
}

.contact_flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.contact_flex .column_one {
    margin-top: 50px;
    background-color: var(--color-red-dark);
    border-radius: var(--border-radius);
}

.contact_right img {
    width: 40px;
    height: 40px;
    max-width: 100%;
    margin: 0 10px 70px 10px;
}

.footer_link {
    font-family: 'Ubuntu-Light', sans-serif;
    font-size: calc(14px + 4 * ((100vw - 320px)/ 1920));
    margin-bottom: 20px;
    color: var(--color-light);
}

.contact_flex .footer_link {
    margin-top: 50px;
}


/*Callback*/

.form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.column_footer_left .section_subtitle,
.column_footer_right .section_subtitle {
    color: var(--color-light);
}

.column_footer_left .section_subtitle {
    margin-bottom: 50px;
}

input,
textarea {
    width: 90%;
    color: var(--color-light);
    background-color: var(--color-dark);
    font-size: calc(16px + 5 * ((100vw - 320px)/ 1920));
    border: none;
    border-bottom: 1px solid var(--color-light);
    height: 50px;
    margin-bottom: 15px;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s ease;
}

textarea.input {
    resize: vertical;
    height: 70px;
}

.btn_form {
    font-size: calc(24px + 8 * ((100vw - 320px)/ 1920));
    gap: 6px;
    color: var(--color-light);
    background-color: var(--color-dark);
    margin-top: 60px;
    padding: 10px 30px;
    border-radius: 50px;
    max-width: 200px;
    box-shadow: 0 0 20px rgba(145, 145, 154, 0.25);
    outline: 1px solid var(--color-light);
}

.btn_form:hover {
    color: var(--color-cta);
}

.btn_form img {
    width: 24px;
    max-width: 100%;
    transform: rotate(-30deg);
}

.btn_form:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
    outline: 1px solid var(--color-dark);
}

.form-consent {
    margin-top: 10px;
    width: 100%;
    height: 20px;
    font-size: calc(12px + 4 * ((100vw - 320px)/ 1920));
    color: var(--color-light);
    line-height: 1.4;
}

.form-consent input[type="checkbox"] {
    width: 20px;
    margin: 0 16px 0 0;
    accent-color: var(--color-cta);
}

.form-consent .consent-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

input:hover,
textarea:hover,
input:focus,
textarea:focus {
    border-bottom: 3px solid var(--color-light);
}


/* Responsive */

@media screen and (min-width: 1920px) {

    /* 4K-Bildschirme */
    .header a {
        font-size: 32px;
    }

    nav ul li a {
        line-height: 140px;
    }

    #particles-js {
        height: 80%;
    }

}

@media screen and (max-width: 992px) {

    .section {
        padding: 50px 0;
    }

    body.lock {
        overflow: hidden;
    }

    .header:before {
        background-color: var(--color-light);
        box-shadow: var(--box-shadow);
    }

    .header_burger {
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
        z-index: 3;
    }

    .header_burger:before,
    .header_burger:after,
    .header_burger span {
        content: '';
        position: absolute;
        background-color: var(--color-dark);
        width: 100%;
        height: 2px;
        left: 0;
        transition: all 0.3s ease 0s;
    }

    .header_burger:before {
        top: 0;
    }

    .header_burger:after {
        bottom: 0;
    }

    .header_burger span {
        top: 9px;
    }

    .header_burger.active:before {
        transform: rotate(45deg);
        top: 9px;
    }

    .header_burger.active:after {
        transform: rotate(-45deg);
        bottom: 9px;
    }

    .header_burger.active span {
        transform: scale(0);
    }

    .header_menu {
        position: fixed;
        text-align: center;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 100px;
        background-color: var(--color-light);
        transition: all 0.3s ease 0s;
        overflow: auto;
    }

    .header_menu.active {
        top: 0;
    }

    .header_list,
    .menu__item {
        display: block;
        border: none;
    }

    ul.header_list {
        padding-left: 0;
    }

    .menu__item {
        margin: 26px 0;
    }

    .header_link {
        font-size: 26px;
        padding: 20px 0;
    }

    .header__contact {
        display: none;
    }

    .header__contact_mobile {
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {

    .offer {
        justify-content: center;
    }

    .offer_text {
        margin: 20px 0;
        font-size: 20px;
    }

    .button_offer {
        display: flex;
        justify-content: space-between;
        min-width: 300px;
        border-radius: 10px;
    }

    .button_offer img {
        border-radius: 10px;
    }

    .button_offer img {
        transform: rotate(0);
    }

    .subpage_subtitle {
        margin: 10px 0 15px 0;
    }

    .section_subtitle_column {
        margin: 20px 0 10px 0;
    }

    .row,
    .accordion-content,
    .contact_flex {
        flex-direction: column;
    }

    .cookie-banner {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 20px;
    }

    .contact_right {
        flex-direction: row;
        margin-top: 40px;
    }

    .column_one,
    .column_two {
        width: 100%;
    }

    .column_two_text {
        padding: 0;
    }

    .column_footer_left,
    .column_footer_right {
        width: 100%;
    }

    .column_footer_right {
        padding: 70px 0 40px 4%;
        min-height: 650px;
    }

    .custom-accordion>.item {
        max-width: 100%;
    }

    a.paragraph_text {
        padding: 0 15px 0 0;
    }

    .marquee-track {
        animation: scroll-marquee 3s linear infinite;
    }

    .input {
        width: 96%;
    }
}

@media screen and (max-width: 568px) {

    .section {
        padding: 40px 0;
    }

    .offer_title {
        margin-top: 50px;
    }

    .offer_title span {
        border-radius: 5px;
    }

    .offer .row__mobile {
        flex-direction: column;
        width: 100%;
    }

    .accordion .accordion-content p {
        max-width: 100%;
    }

    .swiper-button-next,
    .swiper-button-prev {
        color: var(--color-cta);
        background: none;
    }

    .card img {
        width: 30px;
    }

    .column_footer_left {
        width: 100%;
        padding: 50px 15px 30px 15px;
    }
}