@charset "UTF-8";

@font-face {
    font-family: 'din-webregular';
    src: url('../webfonts/din-webfont/dinweb-webfont.woff2') format('woff2'),
    url('../webfonts/din-webfont/dinweb-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'din-webmedium';
    src: url('../webfonts/din-webfont/dinweb-medium-webfont.woff2') format('woff2'),
    url('../webfonts/din-webfont/dinweb-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'din-webbold';
    src: url('../webfonts/din-webfont/dinweb-bold-webfont.woff2') format('woff2'),
    url('../webfonts/din-webfont/dinweb-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --mainblack: #000000;
    --maingrey: #333333;
    --lightgrey: #f1f1f1;
    --rosa: #dd6766;
    --visit: #9e4a49;
    --logogelb: #f8af00;
    /* Warhol-Popfarben  */
    --pop-pink: #E94F8A;
    --pop-cyan: #2BB3C0;
    --pop-orange: #F2622E;
    --pop-violet: #6C4FA1;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    background: #fff;
    overflow-x: hidden;
    font-size: 1.0em;
    line-height: 1.4;
    color: var(--maingrey);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    font-family: "din-webregular", Arial, Helvetica, sans-serif;
}

a, a:link {
    color: var(--rosa);
    text-decoration: none;
    outline: 0;
    transition: all .5s ease;
}

a:hover, a:focus, a:active {
    color: var(--rosa);
    text-decoration: none;
}

a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, [tabindex]:focus-visible {
    outline: 2px solid var(--rosa);
    outline-offset: 3px;
}

a.darklink {
    color: var(--maingrey);
}

a.darklink:hover {
    color: var(--rosa);
}

img {
    width: 100%;
    display: block;
}

svg {
    display: block;
}

h1, h2, h3, h4, h5 {
    color: var(--mainblack);
    font-weight: normal;
    line-height: 1.3;
}

h1 {
    font-size: 1.6em;
    font-family: "din-webbold", Arial, Helvetica, sans-serif;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.5em;
    font-family: "din-webregular", Arial, Helvetica, sans-serif;
    margin-bottom: 10px;
}

h2.bolder {
    font-family: "din-webbold", Arial, Helvetica, sans-serif;
}

h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
}

h6 {
    font-family: "din-webbold", Arial, Helvetica, sans-serif;
    margin-bottom: 0.5em;
    font-size: 1em;
}

h1.topline::before, h2.topline::before, h3.topline::before,
h1.doubleline::before, h2.doubleline::before, h3.doubleline::before {
    content: '';
    display: block;
    height: 2px;
    width: 25px;
    margin-bottom: 10px;
    background: var(--maingrey);
}

h1.bottomline::after, h2.bottomline::after, h3.bottomline::after,
h1.doubleline::after, h2.doubleline::after, h3.doubleline::after {
    content: '';
    display: block;
    height: 2px;
    width: 25px;
    margin-top: 10px;
    background: var(--maingrey);
}

p {
    margin-top: 0;
    line-height: 1.5;
    font-size: 1em;
    hyphens: auto;
}

b, strong {
    font-family: "din-webbold", Arial, Helvetica, sans-serif;
    font-weight: normal;
}

ul {
    padding: 0;
    margin: 0;
}

.binding {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.article {
    margin-bottom: 40px;
    font-size: 1.15em;
}

section {
    margin-bottom: 60px;
    margin-top: 0;
}

section a {
    color: var(--rosa);
}

section .one-column {
    width: 100%;
    margin-top: 30px;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--mainblack);
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    z-index: 90;
    min-height: 100px;
    transition: all .5s ease;
}

.header .binding {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

a.logo, .logo {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

a.logo svg, .logo svg,
a.logo img, .logo img {
    position: relative;
    width: auto;
    height: 70px;
    margin-top: 0;
}

.spacer {
    height: 100px;
    transition: all .5s ease;
    width: 100%;
    clear: both;
}

.headernav {
    margin-left: auto;
}

.headernav ul {
    list-style: none;
    display: flex;
    gap: 38px;
}

.headernav a {
    color: var(--maingrey);
    font-family: "din-webmedium", Arial, Helvetica, sans-serif;
    font-size: 1.05em;
    padding: 8px 0;
    border-bottom: 3px solid transparent;
}

.headernav a:hover {
    color: var(--rosa);
    border-bottom-color: var(--rosa);
}

.burger {
    width: 34px;
    min-width: 30px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.5s ease-in-out;
    appearance: none;
    border: none;
    background-color: transparent;
    position: relative;
    display: none;
    flex-shrink: 0;
}

.burger span {
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--mainblack);
    z-index: 110;
    left: 0;
    transition: transform 0.5s ease-in-out, top 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.burger span:nth-child(1) {
    top: 3px;
}

.burger span:nth-child(2) {
    top: 13px;
}

.burger span:nth-child(3) {
    top: 23px;
}

.burger.hidden span:nth-child(1) {
    transform: rotate(45deg);
    top: 14px;
}

.burger.hidden span:nth-child(2) {
    opacity: 0;
}

.burger.hidden span:nth-child(3) {
    transform: rotate(-45deg);
    top: 14px;
}

.nav {
    position: fixed;
    inset: 0;
    padding-top: 130px;
    background-color: #fff;
    width: 100%;
    z-index: 89;
    height: 0;
    overflow: hidden;
    transition: all .5s ease;
    opacity: 0;
    pointer-events: none;
}

.nav.openmenu {
    height: 100%;
    opacity: 1;
    overflow: auto;
    pointer-events: auto;
}

.nav ul {
    list-style: none;
}

.nav ul li a {
    display: block;
    font-family: "din-webbold", Arial, Helvetica, sans-serif;
    font-size: 1.5em;
    color: var(--maingrey);
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
}

.nav ul li a:hover {
    color: var(--rosa);
}

.btn {
    display: inline-block;
    padding: 0 16px;
    line-height: 38px;
    height: 40px;
    text-align: center;
    color: var(--maingrey);
    font-family: "din-webbold", Arial, Helvetica, sans-serif;
    font-size: .95em;
    background-color: transparent;
    border: 1px solid var(--maingrey);
    cursor: pointer;
    transition: all .3s ease;
}

.btn:hover {
    background-color: var(--lightgrey);
    color: var(--maingrey);
}

.btn.is-action {
    background-color: var(--rosa);
    border-color: var(--rosa);
    color: #fff;
}

.btn.is-action:hover {
    background-color: var(--maingrey);
    border-color: var(--maingrey);
    color: #fff;
}

.btn.on-dark {
    border-color: #fff;
    color: #fff;
}

.btn.on-dark:hover {
    background-color: #fff;
    color: var(--maingrey);
}

.smallgreykeyvisuelwrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.smallgreykeyvisuelwrapper.bortop {
    border-top: 1px solid var(--mainblack);
    padding-top: 25px;
}

a.smallgreykeyvisuel {
    background-color: var(--lightgrey);
    border-bottom: 3px solid #ffffff;
    display: flex;
    align-items: center;
    width: 100%;
    font-family: "din-webbold", Arial, Helvetica, sans-serif;
    height: 80px;
    font-size: 1.25em;
    color: var(--maingrey);
}

a.smallgreykeyvisuel svg {
    height: 36px;
    width: auto;
    margin-left: 20px;
    margin-right: 15px;
    transition: all .5s ease;
    fill: var(--maingrey);
}

a.smallgreykeyvisuel:hover {
    border-bottom: 3px solid var(--rosa);
    color: var(--rosa);
}

a.smallgreykeyvisuel:hover svg {
    fill: var(--rosa);
}

.hero {
    position: relative;
    margin-bottom: 60px;
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: var(--mainblack);
}

.hero-media picture,
.hero-media img {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-media.fit-cover img {
    object-fit: cover;
}

.hero-media.fit-contain img {
    object-fit: contain;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0) 70%);
    color: #fff;
    padding-bottom: 110px;
}

.hero-kicker {
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
    display: none;
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-family: "din-webbold", Arial, Helvetica, sans-serif;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 0;
}

.hero-claim {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin: 12px 0 24px;
}

.hero-overlay .btn {
    margin-right: 10px;
}

.hero-credit {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 92%;
    max-width: 450px;
    z-index: 4;
    color: rgba(255, 255, 255, .75);
    font-size: .68em;
    line-height: 1.35;
    text-align: right;
    pointer-events: none;
}

@media (max-width: 640px) {
    .hero-credit {
        max-width: 92%;
        left: 4%;
        right: 4%;
        text-align: left;
        bottom: 40px;
    }
}

.hero-badge {
    display: none;
    position: absolute;
    top: 20px;
    left: 10px;
    width: 180px;
    height: 135px;
    z-index: 3;
    object-fit: cover;
}

@media (max-width: 640px) {
    .hero-badge {
        display: block;
    }
}

.scroll-hint {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.4em;
    animation: bob 1.8s infinite;
    pointer-events: none;
}

@keyframes bob {
    0%, 100% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, 7px);
    }
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.split.intro-split {
    grid-template-columns: 62fr 38fr;
    gap: 25px;
}

.ph {
    background: var(--lightgrey);
    display: grid;
    place-items: center;
    color: #8a8a8a;
    font-size: 0.65em;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 12px;
    min-height: 220px;
    line-height: 1.5;
}

.ph.pop-1 {
    background: var(--maingrey);
    color: rgba(255, 255, 255, 0.85);
}

.ph.pop-2 {
    background: var(--pop-cyan);
    color: rgba(255, 255, 255, 0.85);
}

.ph.pop-3 {
    background: var(--pop-orange);
    color: rgba(255, 255, 255, 0.85);
}

.ph.pop-4 {
    background: var(--pop-violet);
    color: rgba(255, 255, 255, 0.85);
}

.alt-bg {
    background: var(--lightgrey);
    padding: 60px 0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: #fff;
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid #fff;
    transition: border-color .3s ease;
}

.card:hover {
    border-bottom-color: var(--rosa);
}

.card .ph {
    min-height: 150px;
    aspect-ratio: 4 / 3;
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    font-size: 1.05em;
    font-family: "din-webbold", Arial, Helvetica, sans-serif;
    margin-bottom: 8px;
}

.card-body p {
    font-size: 0.85em;
}

.video-shell {
    margin-top: 30px;
    aspect-ratio: 16 / 9;
    background: #1d1d1d;
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
}

.video-shell p {
    max-width: 540px;
    font-size: 0.8em;
    color: #cfcfcf;
    margin: 14px 0 20px;
}

.play-ring {
    width: 64px;
    height: 64px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto;
}

.play-ring::after {
    content: "";
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #fff;
    margin-left: 4px;
}

.gallery {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 32%;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    margin-top: 30px;
}

.gallery .ph {
    scroll-snap-align: start;
    aspect-ratio: 4 / 3;
    min-height: 0;
}

.quote-band {
    text-align: center;
    margin-bottom: 60px;
}

.quote-band blockquote {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-family: "din-webbold", Arial, Helvetica, sans-serif;
    line-height: 1.35;
    max-width: 820px;
    margin: 0 auto;
    color: inherit;
}

.quote-band cite {
    display: block;
    margin-top: 22px;
    font-style: normal;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: inherit;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
    margin-top: 30px;
}

.info-item {
    border-top: 2px solid var(--maingrey);
    padding-top: 14px;
}

.info-item h6 {
    font-size: 1em;
}

.info-item p, .info-item li {
    font-size: 0.9em;
}

.info-item ul {
    list-style: none;
}

.info-item li::before {
    content: "– ";
}

.big-cta {
    text-align: center;
    margin-top: 50px;
}

.faq {
    max-width: 800px;
    margin-top: 20px;
}

.faq details {
    border-bottom: 1px solid #ccc;
}

.faq summary {
    cursor: pointer;
    padding: 16px 36px 16px 0;
    font-family: "din-webbold", Arial, Helvetica, sans-serif;
    color: var(--mainblack);
    list-style: none;
    position: relative;
    transition: color .3s ease;
}

.faq summary:hover {
    color: var(--rosa);
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3em;
    font-family: "din-webregular", Arial, Helvetica, sans-serif;
}

.faq details[open] summary::after {
    content: "–";
}

.faq details p {
    padding: 0 0 18px;
    font-size: 0.92em;
}

.downloads {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

a.dl {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--lightgrey);
    border-bottom: 3px solid #fff;
    padding: 18px 20px;
    color: var(--maingrey);
    font-family: "din-webbold", Arial, Helvetica, sans-serif;
}

a.dl:hover {
    border-bottom-color: var(--rosa);
    color: var(--rosa);
}

a.dl svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    stroke: currentColor;
}

a.dl small {
    display: block;
    font-family: "din-webregular", Arial, Helvetica, sans-serif;
    color: #777;
    font-size: 0.75em;
}

.press-box {
    background: var(--maingrey);
    color: #fff;
    padding: 44px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.press-box h2 {
    color: #fff;
}

.press-box h2.topline::before {
    background: var(--logogelb);
}

.press-box p {
    color: #d5d5d5;
    font-size: 0.95em;
    /*max-width: 620px;*/
    margin-top: 14px;
}

.nowordbreak {
    word-break: keep-all;
}

.press-box a:not(.btn) {
    color: var(--logogelb);
}

.social-row {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.social-row a {
    width: 44px;
    height: 44px;
    background: var(--maingrey);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: "din-webbold", Arial, Helvetica, sans-serif;
    font-size: 0.85em;
}

.social-row a:hover {
    background: var(--rosa);
    color: #fff;
}

.final-cta {
    background: var(--logogelb);
    text-align: center;
    padding: 80px 4%;
    margin-bottom: 0;
}

.final-cta h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-family: "din-webbold", Arial, Helvetica, sans-serif;
    margin-bottom: 28px;
}

.final-cta .btn {
    margin: 6px;
    border-color: var(--mainblack);
}

.final-cta .btn:hover {
    background: var(--mainblack);
    color: #fff;
}

.footer {
    background-color: var(--lightgrey);
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
}

.topnav {
    position: relative;
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

.topnav ul.topnavlist {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.topnav ul.topnavlist li {
    padding: 20px 25px 20px 0;
    color: var(--maingrey);
    font-size: .9em;
}

.topnav ul.topnavlist li a {
    color: var(--maingrey);
}

.topnav ul.topnavlist li a:hover {
    color: var(--rosa);
}

.round-rosa {
    width: 50px;
    height: 50px;
    padding: 8px;
    background-color: var(--rosa);
    border-radius: 50%;
    z-index: 999;
    box-shadow: 0 0 3px 1px rgba(50, 50, 50, .4);
    border: none;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.round-rosa:hover {
    transform: scale(1.1);
    background-color: var(--maingrey);
}

.round-rosa svg {
    fill: #fff;
}

a.footer-btn-newsletter {
    bottom: 10px;
    right: 70px;
}

a.footer-btn-newsletter svg {
    width: 26px;
}

a.footer-btn-ticket {
    bottom: 10px;
    right: 10px;
}

a.footer-btn-ticket svg {
    width: 34px;
}

@media (max-width: 1000px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery {
        grid-auto-columns: 55%;
    }

    .smallgreykeyvisuelwrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .burger {
        display: block;
    }

    .headernav {
        display: none;
    }

    .header-cta {
        display: none;
    }
}

@media (max-width: 640px) {
    .split, .split.intro-split {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cards, .info-grid, .downloads, .smallgreykeyvisuelwrapper {
        grid-template-columns: 1fr;
    }

    .press-box {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .gallery {
        grid-auto-columns: 82%;
    }

    a.logo svg, .logo svg,
    a.logo img, .logo img {
        height: 56px;
    }

    .header, .header .binding {
        min-height: 84px;
    }

    .spacer {
        height: 84px;
    }

    .nav {
        padding-top: 110px;
    }
}

html.no-scroll {
    overflow-y: hidden;
}

.hero-slider {
    position: relative;
    height: calc(100vh - 100px);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.slider-btn::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    margin: 0 auto;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, .5));
    transition: border-color .3s ease;
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.prev::after {
    transform: rotate(135deg);
}

.slider-btn.next {
    right: 10px;
}

.slider-btn.next::after {
    transform: rotate(-45deg);
}

.slider-btn:hover::after {
    border-color: var(--rosa);
}

.slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}

.slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background .3s ease;
}

.slider-dots button.is-active, .slider-dots button:hover {
    background: #fff;
}

.video-nocookie {
    position: relative;
}

.video-nocookie iframe {
    display: none;
    width: 100%;
    height: 100%;
    border: none;
}

.video-nocookie.has-cookie iframe {
    display: block;
}

.video-nocookie.has-cookie .video-consent {
    display: none;
}

.video-consent a {
    color: var(--rosa);
}

.gallery > * {
    cursor: pointer;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .88);
    z-index: 1000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 70px;
}

.lightbox.is-open {
    display: flex;
}

.lightbox-stage {
    width: min(82vw, 900px);
    max-height: 75vh;
}

.lightbox-stage .ph {
    aspect-ratio: 4 / 3;
    min-height: 0;
    max-height: 75vh;
    font-size: 1em;
}

.lightbox-caption {
    color: #ddd;
    margin-top: 16px;
    font-size: .9em;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 2.2em;
    line-height: 1;
    font-family: "din-webregular", Arial, Helvetica, sans-serif;
}

.lightbox-close:hover {
    color: var(--rosa);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.lightbox-prev::after, .lightbox-next::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    margin: 0 auto;
    transition: border-color .3s ease;
}

.lightbox-prev {
    left: 12px;
}

.lightbox-prev::after {
    transform: rotate(135deg);
}

.lightbox-next {
    right: 12px;
}

.lightbox-next::after {
    transform: rotate(-45deg);
}

.lightbox-prev:hover::after, .lightbox-next:hover::after {
    border-color: var(--rosa);
}

.cookie-popup {
    opacity: 0;
    position: fixed;
    inset: 0;
    padding: 15px;
    transition: all .3s ease;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .95em;
    background-color: rgba(0, 0, 0, .6);
    z-index: 9999;
}

.cookie-popup.is-active {
    opacity: 1;
    pointer-events: auto;
}

.cookie-popup-box {
    background-color: #fff;
    max-width: 800px;
    width: 100%;
}

.cookie-popup-header {
    padding: 20px;
}

.cookie-popup-headline {
    font-size: 1.7em;
    color: var(--mainblack);
    font-family: "din-webbold", Arial, Helvetica, sans-serif;
}

.cookie-popup-content {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    padding: 0 20px;
    overflow-y: auto;
    max-height: 60vh;
}

.cookie-popup-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    padding: 20px;
}

.cookie-popup-footer .btn {
    height: auto;
    line-height: 1.4;
    padding: 10px 20px;
}

.cookie-popup-footer-end {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px;
    border-top: 1px solid #eee;
}

.cookie-popup-footer-end a {
    color: var(--maingrey);
    font-size: .9em;
}

.cookie-popup-footer-end a:hover {
    color: var(--rosa);
}

.cookie-entry {
    padding: 10px 0;
    background: #fff;
    margin-bottom: 10px;
}

.cookie-entry strong.cookieheadline {
    font-family: "din-webbold", Arial, Helvetica, sans-serif;
    color: var(--rosa);
    margin-bottom: 10px;
    font-size: 1.2em;
    display: inline-block;
}

.cookie-input-group {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.cookie-input-group .switch {
    margin-right: 15px;
}

.cookie-input-group p {
    margin: 0;
    font-size: .9em;
}

.cookie-summary-wrapper {
    display: flex;
    align-items: center;
}

.cookie-summary-wrapper strong {
    margin-left: 15px;
}

details.cookie-section summary {
    cursor: pointer;
    position: relative;
    border-top: 1px solid #eee;
    padding: 10px 0;
    display: flex;
    align-items: center;
    list-style: none;
}

details.cookie-section summary::-webkit-details-marker {
    display: none;
}

details.cookie-section summary::after {
    content: "+";
    margin-left: auto;
    transition: transform 0.2s ease;
    font-size: 30px;
    margin-top: -4px;
    color: #999;
}

details.cookie-section.is-open summary::after {
    transform: rotate(-45deg);
}

.switch {
    display: inline-flex;
    position: relative;
    padding: 0.35em;
    margin: 0.25em 0;
    vertical-align: middle;
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
}

.switch-input {
    display: none;
}

.switch-label {
    background: #e6e6e6;
    padding: 2px;
    transition: all 0.4s ease;
    display: block;
    width: 3em;
    height: 1.5em;
    position: relative;
    cursor: pointer;
    user-select: none;
    color: transparent;
    overflow: hidden;
}

.switch-label::after {
    left: 0;
    top: 0;
    position: absolute;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: #fff;
    transition: all 0.2s ease;
    border: 1px solid #ccc;
}

.switch-input:checked + .switch-label {
    background: var(--rosa);
}

.switch-input:checked + .switch-label::after {
    left: 50%;
}

.switch-input:disabled + .switch-label {
    cursor: default;
    opacity: .7;
}

@media (max-width: 640px) {
    .hero-slider {
        height: calc(100vh - 100px);
    }

    .lightbox {
        padding: 60px 8px 40px;
    }

    .lightbox-stage {
        width: 92vw;
    }

    .cookie-popup-footer {
        flex-direction: column;
    }
}

.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.faq {
    max-width: none;
}

.footer {
    padding: 30px 0;
}

.foerderer {
    padding: 10px 0 24px;
    border-bottom: 1px solid #ccc;
}

.foerderer h6 {
    color: var(--maingrey);
    margin-bottom: 16px;
}

.foerderer-logos {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.foerderer-logos img {
    width: auto;
}

.foerderer-logos img.foerderer-bkm {
    height: 76px;
}

.foerderer-logos img.foerderer-gls {
    height: 34px;
}

@media (max-width: 640px) {
    .foerderer-logos {
        gap: 30px;
    }

    .foerderer-logos img.foerderer-bkm {
        height: 60px;
    }

    .foerderer-logos img.foerderer-gls {
        height: 26px;
    }
}

.statement {
    margin-top: 40px;
    align-items: center;
}

.statement figure {
    margin: 0;
}

.statement figure img {
    width: 100%;
    height: auto;
}

.statement.is-reversed figure {
    order: 2;
}

.statement-txt blockquote {
    font-size: 1.05em;
    line-height: 1.5;
    color: var(--mainblack);
    border-left: 3px solid var(--logogelb);
    padding-left: 22px;
}

.statement-txt cite {
    display: block;
    margin-top: 16px;
    padding-left: 25px;
    font-style: normal;
    font-size: 0.8em;
    color: var(--maingrey);
}

.quote-band {
    position: relative;
    display: grid;
    color: var(--mainblack);
}

.quote-band.is-inverse {
    color: #fff;
}

.quote-slide {
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 90px 120px 110px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease, visibility .6s ease;
}

.quote-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.quote-slide.q-yellow {
    background: var(--logogelb);
    color: var(--mainblack);
}

.quote-slide.q-cyan {
    background: var(--pop-cyan);
    color: #fff;
}

.quote-slide.q-pink {
    background: var(--pop-pink);
    color: #fff;
}

.quote-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: inherit;
}

.quote-btn::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    margin: 0 auto;
    transition: transform .2s ease;
}

.quote-btn.prev {
    left: 20px;
}

.quote-btn.prev::after {
    transform: rotate(135deg);
}

.quote-btn.next {
    right: 20px;
}

.quote-btn.next::after {
    transform: rotate(-45deg);
}

.quote-btn:hover::after {
    transform: scale(1.25) rotate(135deg);
}

.quote-btn.next:hover::after {
    transform: scale(1.25) rotate(-45deg);
}

.quote-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 10px;
}

.quote-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid currentColor;
    background: transparent;
    cursor: pointer;
    padding: 0;
    color: inherit;
    transition: background .3s ease;
}

.quote-dots button.is-active, .quote-dots button:hover {
    background: currentColor;
}

@media (max-width: 640px) {

    .statement-txt blockquote {
        font-size: .95em;
        line-height: 1.5;
    }

    .quote-slide {
        padding: 50px 60px 70px;
    }

    .quote-btn.prev {
        left: 5px;
    }

    .quote-btn.next {
        right: 5px;
    }

    .slider-btn.prev {
        left: 5px;
    }

    .slider-btn.next {
        right: 5px;
    }

}

.header-lang-switch {
    display: flex;
    align-items: center;
    border-left: 1px solid #ccc;
    padding-left: 28px;
}

@media (max-width: 1000px) {
    .header-lang-switch {
        border-left: none;
        padding-left: 0;
        margin-left: auto;
    }
}

.header-lang-switch img {
    display: block;
    width: 30px;
    height: 18px;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .15);
    opacity: .7;
    transition: opacity .2s ease;
}

.header-lang-switch:hover img {
    opacity: 1;
}

@media (max-width: 640px) {
    .statement.is-reversed figure {
        order: 0;
    }
}


@media (min-width: 1001px) {
    .smallgreykeyvisuelwrapper.cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.socialmediawrapper {
    margin-left: auto;
    display: flex;
    flex-wrap: nowrap;
}

.socialmediawrapper a.social {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-left: 10px;
    opacity: 1;
    border-radius: 4px;
    background-color: #333333;
}

.socialmediawrapper a.social svg {
    fill: #ffffff;
}

.socialmediawrapper a.social:hover,
.socialmediawrapper a.social:focus {
    opacity: 0.5;
}

@media (max-width: 640px) {
    .topnav {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .topnav ul.topnavlist {
        justify-content: center;
        text-align: center;
    }

    .topnav ul.topnavlist li {
        padding: 8px 6px;
        font-size: .75em;
        margin-bottom: 30px;
    }

    .socialmediawrapper {
        margin-left: 0;
        margin-top: 14px;
        justify-content: center;
    }

    .socialmediawrapper a.social:first-child {
        margin-left: 0;
    }
}
