@import url('./style.css');



/* ----- Test ----- */

/* Phone (0px - 575px) */


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {}

/* Desktops (992px+) */

@media screen and (min-width: 992px) {}

/* --------- */




/* ---- Navbar ---- */

/* Phone (0px - 575px) */

nav {
    width: 100%;
    height: 64px;
    padding: 0px 4px 0px 16px;
    display: flex;
    justify-content: center;
    background: rgba(250, 250, 250, 0.75);
    border-bottom: 1px solid rgba(243, 245, 248, 0.75);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    position: fixed;
    top: 0;
    z-index: 999;
}

.nav-container {
    width: 100%;
    max-width: 1340px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    color: var(--primary-blue);
}

.nav-mobile-btn {
    all: unset;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
}

.nav-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-desk-navigation {
    display: none;
}

.nav-right-block {
    display: none;
}

.nav-desk-menu {
    display: none;
}

.nav-mobile-menu {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    background-color: var(--primary-white);
    display: none;
    flex-direction: column;
    overflow-y: auto;
    animation: fade-in 0.3s ease;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.nav-mobile-menu-wrapper {
    width: 100%;
    height: 100%;
}

.nav-mobile-menu-top-bar {
    width: 100%;
    height: 63px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 4px 0px 16px;
}

.nav-mobile-menu-top-bar-right {
    width: fit-content;
    height: 48px;
    display: flex;
}

.nav-mobile-menu-top-bar-right button {
    all: unset;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    margin-left: 8px;
}

.nav-mobile-menu-top-bar-right button:nth-of-type(2) {
    display: flex;
}

.nav-mobile-menu-top-bar-right button:nth-of-type(1) {
    display: none;
    animation: fade-in 0.3s ease;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.nav-mobile-menu-top-bar-right button img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.nav-mobile-menu-container {
    width: 100%;
    height: fit-content;
    padding: 128px 16px 64px 16px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 64px;
}

.nav-mobile-menu-container-active {
    display: flex;
}

.nav-mobile-menu-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.nav-mobile-menu-block button,
.nav-mobile-menu-block a {
    all: unset;
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    color: var(--primary-black);
    transition: scale 0.3s ease;
    animation: fade-up 0.3s ease forwards;
    opacity: 0;
}

#nav-mobile-menu-container-1 .nav-mobile-menu-block:nth-child(1) button:nth-child(1) {
    animation-delay: 300ms;
}

#nav-mobile-menu-container-1 .nav-mobile-menu-block:nth-child(1) a:nth-child(2) {
    animation-delay: 350ms;
}

#nav-mobile-menu-container-1 .nav-mobile-menu-block:nth-child(1) a:nth-child(3) {
    animation-delay: 400ms;
}

#nav-mobile-menu-container-1 .nav-mobile-menu-block:nth-child(2) a:nth-child(1) {
    animation-delay: 450ms;
}

#nav-mobile-menu-container-1 .nav-mobile-menu-block:nth-child(2) a:nth-child(2) {
    animation-delay: 500ms;
}

#nav-mobile-menu-container-2 a:nth-child(1) {
    animation-delay: 200ms;
}

#nav-mobile-menu-container-2 a:nth-child(2) {
    animation-delay: 250ms;
}

#nav-mobile-menu-container-2 a:nth-child(3) {
    animation-delay: 300ms;
}

#nav-mobile-menu-container-2 a:nth-child(4) {
    animation-delay: 350ms;
}

@keyframes fade-up {
    from {
        transform: translateY(10px);
        opacity: 0;
        filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    to {
        transform: translateY(0);
        opacity: 1;
        filter: blur(0px);
        -webkit-backdrop-filter: blur(0px);
    }
}

.nav-mobile-menu-block-gradient a {
    background: linear-gradient(45deg, #3367FF, #00289C);
    background-clip: text;
    background: -webkit-linear-gradient(45deg, #3367FF, #00289C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (hover:hover) {
    .nav-mobile-btn:hover {
        cursor: pointer;
        outline: 2px solid var(--primary-blue);
        border-radius: 8px;
    }

    .nav-mobile-menu-top-bar-right button:hover {
        cursor: pointer;
        outline: 2px solid var(--primary-blue);
        border-radius: 8px;
    }

    .nav-mobile-menu-block button:hover,
    .nav-mobile-menu-block a:hover {
        cursor: pointer;
        scale: 1.05;
    }
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {
    nav {
        padding: 0px 20px 0px 32px;
    }

    .nav-mobile-menu-top-bar {
        padding: 0px 20px 0px 32px;
    }
}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {
    nav {
        padding: 0px 50px;
    }

    .nav-logo {
        margin-right: 80px;
    }

    .nav-mobile-menu {
        display: none;
    }

    .nav-desk-navigation {
        all: unset;
        width: fit-content;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--primary-black);
        font-size: 16px;
        font-weight: 500;
        padding: 0px 16px;
    }

    .nav-desk-navigation:hover {
        color: var(--primary-blue);
        cursor: pointer;
    }

    .nav-left-block {
        width: fit-content;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-right-block {
        width: fit-content;
        height: fit-content;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-mobile-btn {
        display: none;
    }

    .nav-desk-pri-btn {
        width: fit-content;
        height: 42px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0px 24px;
        background: var(--primary-blue);
        border-radius: 24px;
        color: var(--primary-white);
    }

    .nav-desk-pri-btn:hover {
        background-color: #5d85fc;
    }

    .nav-desk-sec-btn {
        width: fit-content;
        height: 42px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 0px 24px;
        background: var(--primary-white);
        border: 1px solid var(--secondary-white);
        border-radius: 24px;
        color: var(--primary-blue);
        margin-right: 12px;
    }

    .nav-desk-sec-btn:hover {
        border: 1px solid var(--primary-blue);
        outline: 1px solid var(--primary-blue);
    }

    .nav-desk-menu {
        width: 100%;
        height: fit-content;
        justify-content: center;
        background-color: var(--secondary-white);
        position: fixed;
        top: 64px;
        left: 0;
        z-index: 998;
        animation: scale-up 0.4s ease;
        overflow: hidden;
    }

    .nav-desk-menu:hover {
        display: flex;
    }

    @keyframes scale-up {
        from {
            max-height: 0px;
        }

        to {
            max-height: 350px;
        }
    }

    .nav-desk-menu-container {
        width: calc(100% - 100px);
        max-width: 1340px;
        height: fit-content;
        margin: 24px 50px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav-desk-menu-block {
        width: calc(25% - 62px);
        flex-grow: 1;
        background-color: var(--primary-white);
        border: 1px solid #7b7d8f50;
        padding: 24px 24px 36px 24px;
        border-radius: 24px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .nav-desk-menu-block:hover {
        border: 1px solid var(--primary-blue);
        outline: 1px solid var(--primary-blue);
        cursor: pointer;
    }

    .nav-desk-menu-icon {
        width: 52px;
        height: 52px;
        object-fit: contain;
    }

    .nav-desk-menu-block-heading {
        width: 100%;
        margin: 0;
        margin-top: 8px;
        font-size: 20px;
        font-weight: 700;
        color: var(--primary-black);
    }

    .nav-desk-menu-block-description {
        width: 100%;
        margin: 0;
        font-size: 16px;
        font-weight: 500;
        color: var(--secondary-black);
    }

    .nav-desk-hover:hover .nav-desk-menu {
        display: flex;
    }
}

/* --------- */


/* ----- Header ----- */

/* Phone (0px - 575px) */

.header {
    width: 100%;
    height: fit-content;
}

.header-text-box {
    width: calc(100% - 32px);
    height: fit-content;
    margin: 100px 16px 48px 16px;
    display: flex;
    flex-direction: column;
}

.header-text-box p {
    color: var(--primary-black);
}

.header h2 {
    all: unset;
    width: 100%;
    height: fit-content;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    overflow-wrap: break-word;
    hyphens: auto;
    color: var(--primary-black);
}

.header-content-box {
    width: 100%;
    height: 430px;
    position: relative;
    display: flex;
    justify-content: center;
}

.header-content-box a {
    width: calc(100% - 32px);
    height: 48px;
    margin: 0px 16px 48px 16px;
    position: absolute;
    bottom: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-white);
    border-radius: 24px;
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-black);
    box-shadow: 0px 76px 31px rgba(0, 0, 0, 0.01), 0px 43px 26px rgba(0, 0, 0, 0.05), 0px 19px 19px rgba(0, 0, 0, 0.09), 0px 5px 11px rgba(0, 0, 0, 0.1);
}

.header-content-bg {
    width: 100%;
    height: 330px;
    background-color: var(--primary-blue);
    position: absolute;
    bottom: 0px;
    clip-path: polygon(0px 75px, 100% 0px, 100% 100%, 0% 100%);
    z-index: 1;
}

.header-content-slider {
    width: calc(100% - 96px);
    max-width: 350px;
    height: 100%;
    margin: 0px 48px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.header-content-slider img {
    width: 100%;
}

.header-desk {
    display: none;
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {
    .header-text-box {
        width: calc(100% - 64px);
        max-width: 650px;
        margin: 100px 32px 48px 32px;
    }

    .header-content-box a {
        width: calc(100% - 64px);
        margin: 0px 32px 48px 32px;
    }
}

/* Desktops (992px+) */

@media screen and (min-width: 992px) {
    .header-mobile {
        display: none;
    }

    .header-desk {
        width: 100%;
        height: 864px;
        margin-top: 64px;
        padding: 32px 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-bottom: 1px solid var(--secondary-white);
    }

    .header-desk-container {
        width: calc(100% - 100px);
        max-width: 1340px;
        height: fit-content;
        margin: 0px 50px;
        display: flex;
        align-items: flex-start;
        position: relative;
        z-index: 3;
    }

    .header-desk-heading {
        width: 55%;
        max-width: 720px;
        height: fit-content;
    }

    .header-desk-heading h2 {
        font-size: 64px;
        font-weight: 700;
        line-height: 120%;
        margin: 0;
        margin-bottom: 24px;
        color: var(--primary-black);
        word-break: normal;
        white-space: normal;
        overflow-wrap: break-word;
        hyphens: none;
        display: inline-block;
    }

    .header-desk-heading p {
        font-size: 18px;
        font-weight: 500;
        line-height: 28px;
        margin: 0;
        margin-bottom: 40px;
        color: var(--primary-black);
    }

    .header-desk-heading-cta {
        width: fit-content;
        height: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .header-desk-heading-cta a {
        all: unset;
        width: fit-content;
        height: 48px;
        background-color: var(--primary-blue);
        border-radius: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 24px;
        color: var(--primary-white);
    }

    .header-desk-heading-cta a:hover {
        cursor: pointer;
        background-color: #5d85fc;
    }

    .header-desk-heading-cta p {
        max-width: 170px;
        margin: 0;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        color: var(--primary-black);
    }

    .header-desk-bg {
        width: 100%;
        height: 864px;
        position: absolute;
    }

    .header-desk-bg-shape {
        width: 48%;
        height: 100%;
        position: absolute;
        right: 0;
        bottom: 0;
        background-color: var(--primary-blue);
        clip-path: polygon(250px 0px, 100% 0px, 100% 100%, 0% 100%);
        z-index: 1;
    }

    .header-desk-bg-img {
        height: 100%;
        position: absolute;
        left: 57%;
        z-index: 2;
        display: block;
    }
}

@media screen and (min-width: 1300px) {
    .header-desk-heading h2 {
        font-size: 86px;
    }
}

/* --------- */


/* ----- Overview ----- */

/* Phone (0px - 575px) */

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

.overview-container {
    width: calc(100% - 32px);
    max-width: 1340px;
    margin: 48px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 24px;
}

.overview-headline {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
}

.overview-headline h1,
.overview-headline h2,
.overview-headline p {
    text-align: center;
}

.overview-headline h1 {
    color: var(--primary-blue);
}

.overview-headline h2 {
    color: var(--primary-black);
    margin-bottom: 4px;
}

.overview-headline p {
    color: var(--secondary-black);
    margin: 0;
}

.overview-blocks {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.overview-blocks-box {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-white);
    border: 1px solid var(--secondary-white);
    border-radius: 16px;
    box-shadow: 0px 24px 14px rgba(0, 0, 0, 0.01), 0px 11px 11px rgba(0, 0, 0, 0.02), 0px 3px 6px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.overview-blocks-box-heading {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overview-blocks-box-heading img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.overview-blocks-box-heading p {
    flex: 1;
    margin-left: 12px;
    color: var(--primary-black);
}

.overview-blocks-box-content {
    color: var(--secondary-black);
    box-sizing: content-box;
}

.overview-blocks-box-link {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.overview-blocks-box-link:hover {
    transform: translateX(3px);
    cursor: pointer;
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {
    .overview-container {
        width: calc(100% - 64px);
        margin: 48px 32px;
    }

    .overview-blocks-box {
        width: calc(50% - 6px);
    }
}


/* Desktops (992px+) */

@media screen and (min-width: 992px) {

    .overview-container {
        width: calc(100% - 100px);
        max-width: 1340px;
        margin: 96px 50px;
        gap: 24px;
    }


    .overview-headline {
        max-width: 880px;
        gap: 10px;
    }

    .overview-headline h1,
    .overview-headline h2,
    .overview-headline p {
        text-align: center;
    }

    .overview-headline h2 {
        margin-bottom: 6px;
    }

    .overview-headline p {
        font-size: 20px;
        max-width: 800px;
        margin-bottom: 32px;
    }

    .overview-blocks-box-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .overview-blocks-box-heading img {
        margin-bottom: 12px;
    }

    .overview-blocks-box-heading p {
        margin-left: 0px;
        font-weight: 600;
        font-size: 18px;
    }

    .overview-blocks-box-content,
    .overview-blocks-box-link {
        font-size: 14px;
        font-weight: 500;
        line-height: 140%;
    }

    .overview-blocks {
        gap: 24px;
    }

    .overview-blocks-box {
        flex-grow: 1;
        width: calc(33% - 16px);
    }
}

/* --------- */


/* ----- Streaming ----- */

/* Phone (0px - 575px) */

.streaming {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 50px;
    padding-bottom: 24px;
}

#streaming-dienste,
#streaming-watchlisten {
    scroll-margin-top: 96px;
}

.streaming-container {
    width: 100%;
    max-width: 1340px;
    height: fit-content;
    margin: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.streaming-content-block {
    width: 100%;
    height: fit-content;
    margin: 48px 0px 24px 0px;
    display: flex;
    flex-direction: column;
}

.streaming-content-block-heading {
    width: calc(100% - 32px);
    height: fit-content;
    margin: 0px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    order: 1;
}

.streaming-content-block-visual {
    margin-top: 16px;
    order: 2;
    display: block;
}

:root {
    --slide-width: 120px;
    --slide-height: 170px;
    --slide-quantity: 6;
}

.slider {
    width: 100%;
    height: var(--slide-height);
    margin-top: 8px;
    /*! 16px?*/
    overflow: hidden;
    mask-image: linear-gradient(to right,
            transparent,
            #000 10% 90%,
            transparent);
}

.slider .list {
    display: flex;
    width: 100%;
    min-width: calc(var(--slide-width) * var(--slide-quantity));
    position: relative;
}

.slider .list .item {
    width: var(--slide-width);
    height: var(--slide-height);
    position: absolute;
    left: 100%;
    animation: autoRun 15s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc((15s / var(--slide-quantity)) * (var(--position) - 1) - 15s) !important;
}

.slider .list .item img {
    width: 100%;
    border-radius: 10px;
}

@keyframes autoRun {
    from {
        left: 100%;
    }

    to {
        left: calc(var(--slide-width) * -1);
    }
}

.slider[reverse="true"] .item {
    animation: reversePlay 15s linear infinite;
}

@keyframes reversePlay {
    from {
        left: calc(var(--slide-width) * -1);
    }

    to {
        left: 100%;
    }
}

.streaming-content-block-video {
    width: calc(100% - 32px);
    height: fit-content;
    margin: 28px 16px 0px 16px;
    position: relative;
}

.streaming-content-block-video video {
    width: 100%;
    object-fit: contain;
    display: block;
    border-radius: 31px;
}

.streaming-content-block-video button {
    all: unset;
    width: 42px;
    height: 42px;
    background-color: var(--primary-white);
    border: 3px solid var(--primary-blue);
    position: absolute;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    box-shadow: 0px 2px 15px rgba(8, 14, 36, 0.1);
}

.streaming-content-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #F3F5F8 56.03%, #FFFFFF 100%);
    position: absolute;
    bottom: 0;
    clip-path: polygon(0px 50px, 100% 0px, 100% 100%, 0% 100%);
    z-index: 1;
}

.streaming-content-bg-poster-container {
    display: none;
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {

    .streaming-content-block-heading {
        width: calc(100% - 64px);
        max-width: 650px;
        margin: 0px 32px;
    }

    :root {
        --slide-width: 150px;
        --slide-height: 212px;
        --slide-quantity: 6;
    }

    .streaming-content-block-video {
        max-width: 500px;
        margin: 28px 32px 0px 32px;
    }

}

/* Desktops (992px+) */

@media screen and (min-width: 992px) {
    .streaming {
        padding-top: 75px;
    }

    .streaming-container {
        width: calc(100% - 100px);
        margin: 0px 50px;
    }

    .streaming-content-block-video {
        max-width: 560px;
        /* !!!!! */
        height: 380px;
        /* !!!!! */
        margin: 0;
        margin-right: 90px;
    }

    .streaming-content-block-video video {
        /* !!!!! */
        height: 100%;
        object-fit: fill;
        /* !!!!! */
        border-radius: 36px;
    }

    .streaming-content-block-video button {
        right: 15px;
        bottom: 15px;
    }

    .streaming-content-block-slider {
        display: none;
    }

    .streaming-content-block-visual {
        order: 1;
    }

    .streaming-content-block-heading {
        width: 100%;
        max-width: 690px;
        margin: 0;
        order: 2;
    }

    .streaming-content-block-heading h1 {
        margin-bottom: 4px;
    }

    .streaming-content-block-heading p {
        font-size: 18px;
        font-weight: 500;
    }

    .streaming-content-block {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 96px 0px;
    }

    .streaming-content-bg {
        clip-path: polygon(0px 75px, 100% 0px, 100% 100%, 0% 100%);
    }

    .streaming-content-bg-poster-container {
        width: 100%;
        height: fit-content;
        position: relative;
        display: flex;
        justify-content: center;
    }

    .streaming-content-bg-poster {
        width: 100%;
        max-width: 912px;
        margin-right: 8px;
        margin-left: 1000px;
        top: -144px;
        display: flex;
        justify-content: flex-end;
        position: absolute;
        gap: 8px;
    }

    .streaming-content-bg-poster-block {
        display: flex;
        flex-direction: column;
        gap: 8px;
        position: relative;
    }

    .streaming-content-bg-poster-block:nth-child(2),
    .streaming-content-bg-poster-block:nth-child(4) {
        top: 94px;
    }

    .streaming-content-bg-poster-block img {
        width: 162px;
        object-fit: contain;
        border-radius: 10px;
    }
}

/* --------- */


/* ----- Lexikon ----- */

/* Phone (0px - 575px) */

#synchronsprecher-erkennung {
    scroll-margin-top: 72px;
}

.lexicon-1 {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 50px;
    padding-bottom: 24px;
}

.lexicon-2 {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 24px;
    padding-bottom: 50px;
}

.lexicon-1-container {
    width: calc(100% - 32px);
    max-width: 1340px;
    height: fit-content;
    margin: 48px 16px 24px 16px;
    position: relative;
    z-index: 2;
}

.lexicon-2-container {
    width: calc(100% - 32px);
    max-width: 1340px;
    height: fit-content;
    margin: 0px 16px 48px 16px;
    position: relative;
    z-index: 2;
}

.lexicon-heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lexicon-heading h1,
.lexicon-heading h2,
.lexicon-heading p {
    color: var(--primary-white);
}

.lexicon-heading p {
    opacity: 0.75;
    margin-bottom: 28px;
}

.lexicon-menu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.lexicon-menu-btn {
    all: unset;
    width: fit-content;
    height: 40px;
    padding: 0px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-white);
    border: 1px solid var(--primary-white);
    border-radius: 20px;
}

.lexicon-menu-btn img {
    width: 32px;
    height: 32px;
    display: none;
}

.lexicon-menu-btn:hover {
    background-color: var(--primary-white);
    color: var(--primary-blue);
    cursor: pointer;
}

.lexicon-menu-active {
    background-color: var(--primary-white);
    color: var(--primary-blue);
    padding-left: 4px;
    gap: 10px;
}

.lexicon-menu-active img {
    display: block;
}

.lexicon-1-bg {
    width: 100%;
    height: 100%;
    background-color: var(--primary-blue);
    position: absolute;
    bottom: 0;
    clip-path: polygon(0px 50px, 100% 0px, 100% 100%, 0% 100%);
    z-index: 1;
}

.lexicon-2-bg {
    width: 100%;
    height: calc(100% + 1px);
    background-color: var(--primary-blue);
    position: absolute;
    bottom: 1px;
    clip-path: polygon(0px 0px, 100% 0px, 100% calc(100% - 50px), 0% 100%);
    z-index: 1;
}

.lexicon-animation {
    width: 100%;
    height: fit-content;
    position: relative;
}

.lexicon-animation video {
    width: 100%;
    object-fit: contain;
    border-radius: 31px;
    display: block;
}

.lexicon-transition {
    all: unset;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--primary-white);
    box-shadow: 0px 2px 15px rgba(8, 14, 36, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.lexicon-transition-circle {
    width: 28px;
    height: 28px;
    border: 5px solid #ffffff;
    border-radius: 50%;
    position: relative;
    transform: rotate(45deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.lexicon-transition-circle::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 4px solid #3367ff;
    animation: progress-1tucza 8s infinite linear;
}

@keyframes progress-1tucza {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
    }

    75% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
    }

    100% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
    }
}

.lexicon-transition img {
    width: 12px;
    height: 12px;
    object-fit: contain;
    transform: rotate(-45deg);
}

.lexicon-transition-2 {
    border: 3px solid var(--primary-blue);
}

.lexicon-transition-2 img {
    transform: none;
}



/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {
    .lexicon-1-container {
        width: calc(100% - 64px);
        margin-right: 32px;
        margin-left: 32px;
    }

    .lexicon-2-container {
        width: calc(100% - 64px);
        margin-right: 32px;
        margin-left: 32px;
    }

    .lexicon-heading {
        max-width: 650px;
    }

    .lexicon-animation {
        max-width: 500px;
    }
}

/* Desktops (992px+) */

@media screen and (min-width: 992px) {

    #lexikon,
    #synchronsprecher-erkennung {
        scroll-margin-top: 64px;
    }


    .lexicon-1 {
        padding: 0px;
        border-top: 1px solid var(--secondary-white);
    }

    .lexicon-2 {
        padding: 0px;
        border-bottom: 1px solid var(--secondary-white);
    }

    .lexicon-content {
        width: 100%;
        height: fit-content;
        max-width: 650px;
    }

    .lexicon-heading {
        max-width: 650px;
    }

    .lexicon-heading h1 {
        color: var(--primary-blue);
    }

    .lexicon-heading h2 {
        color: var(--primary-black);
    }

    .lexicon-heading p {
        color: var(--secondary-black);
        opacity: 1;
        font-size: 18px;
        font-weight: 500;
        margin: 0;
        margin-bottom: 28px;
    }

    .lexicon-1-container {
        width: calc(100% - 100px);
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 96px 50px;
    }

    .lexicon-2-container {
        width: calc(100% - 100px);
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 96px 50px;
    }

    .lexicon-animation {
        max-width: 600px;
        margin-left: 90px;
    }

    .lexicon-menu {
        margin-bottom: 0;
        gap: 12px;
    }

    .lexicon-menu-btn {
        height: 46px;
        padding: 0px 16px;
        color: var(--primary-black);
        border: 1px solid var(--primary-blue);
        border-radius: 23px;
        font-size: 18px;
        font-weight: 500;
    }

    .lexicon-menu-btn img {
        width: 38px;
        height: 38px;
        display: none;
    }

    .lexicon-menu-btn:hover {
        background-color: var(--primary-blue);
        color: var(--primary-white);
        cursor: pointer;
    }

    .lexicon-menu-active {
        background-color: var(--primary-blue);
        color: var(--primary-white);
        padding-left: 4px;
        gap: 10px;
    }

    .lexicon-menu-active img {
        display: block;
    }

    .lexicon-1-bg {
        width: 50%;
        position: absolute;
        right: 0;
        clip-path: polygon(200px 0px, 100% 0px, 100% 100%, 0% 100%);
    }

    .lexicon-2-bg {
        width: 50%;
        height: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
        clip-path: polygon(0px 0px, 100% 0px, calc(100% - 200px) 100%, 0% 100%);
    }

    .lexicon-2-container .lexicon-content {
        order: 2;
    }

    .lexicon-2-container .lexicon-animation {
        order: 1;
        margin-left: 0;
        margin-right: 90px;
    }
}

/* --------- */


/* ----- Kino ----- */

/* Phone (0px - 575px) */

#kino {
    scroll-margin-top: 48px;
}

.cinema {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cinema-container {
    width: calc(100% - 32px);
    max-width: 1340px;
    margin: 48px 16px;
    height: fit-content;
}

.cinema-heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cinema-heading p {
    margin-bottom: 28px;
}

.cinema-categories {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 28px;
}

.cinema-category {
    width: 100%;
    height: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.cinema-category-icon {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cinema-category-icon-small {
    height: 16px;
    object-fit: contain;
}

.cinema-category-icon-big {
    display: none;
}

.cinema-img {
    width: 100%;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--secondary-black);
    filter: drop-shadow(0px 107px 64px rgba(0, 0, 0, 0.02)) drop-shadow(0px 48px 48px rgba(0, 0, 0, 0.03)) drop-shadow(0px 12px 26px rgba(0, 0, 0, 0.03));
}

.cinema-img img {
    width: 100%;
    object-fit: contain;
    display: block;
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {
    .cinema-container {
        width: calc(100% - 64px);
        margin-left: 32px;
        margin-right: 32px;
    }

    .cinema-heading {
        max-width: 650px;
    }

    .cinema-img {
        max-width: 500px;
    }
}

/* Desktops (992px+) */

@media screen and (min-width: 992px) {
    #kino {
        scroll-margin-top: 24px;
    }

    .cinema-container {
        width: calc(100% - 100px);
        margin: 96px 50px;
        height: fit-content;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cinema-content {
        width: 100%;
        max-width: 650px;
    }

    .cinema-heading p {
        font-size: 18px;
        font-weight: 500;
        margin: 0;
        margin-bottom: 36px;
    }

    .cinema-category {
        width: 100%;
        height: 46px;
        gap: 12px;
    }

    .cinema-category p {
        font-weight: 500;
        font-size: 18px;
    }

    .cinema-category-icon {
        width: 40px;
        height: 40px;
    }

    .cinema-category-icon-small {
        display: none;
    }

    .cinema-category-icon-big {
        width: 100%;
        object-fit: contain;
        display: block;
    }

    .cinema-img {
        max-width: 600px;
        margin-left: 90px;
        border-radius: 36px;
    }
}

/* --------- */


/* ----- Social ----- */

/* Phone (0px - 575px) */

#soziale-funktionen {
    scroll-margin-top: 72px;
}

.social {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-container {
    width: calc(100% - 32px);
    max-width: 1340px;
    height: fit-content;
    margin: 24px 16px 48px 16px;
}

.social-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    z-index: 2;
}

.social-heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-select {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-select-box {
    width: 100%;
    height: fit-content;
    padding: 16px;
    /* !!! Mit oder ohne Hintergrundfarbe? */
    background-color: var(--primary-white);
    /* !!! Mit oder ohne Hintergrundfarbe? */
    border: 1px solid var(--secondary-black);
    border-radius: 16px;
    display: flex;
    gap: 8px;
}

.social-select-box button {
    all: unset;
    width: 38px;
    height: 38px;
    position: relative;
    flex-shrink: 0;
}

.social-select-box button img {
    position: absolute;
    top: 0;
    left: 0;
}

.social-select-box-icon-active {
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.social-select-box-label {
    padding: 8px 0px 5px 0px;
}

.social-select-box-text {
    display: none;
}

.social-select-box-active .social-select-box-text {
    display: block;
}

.social-select-box-active .social-select-box-icon-active {
    opacity: 1;
}

.social-select-box button:hover .social-select-box-icon-active {
    opacity: 1;
}

.social-select-box button:hover {
    cursor: pointer;
}

.social-imgs {
    margin-top: 28px;
    width: 100%;
    height: fit-content;
    position: relative;
    z-index: 1;
}

.social-imgs-container {
    width: 100%;
    height: fit-content;
    position: relative;
    display: flex;
    align-items: center;
}

.social-img-back {
    position: absolute;
    width: 53%;
    left: 0;
    z-index: 1;
    filter: drop-shadow(111px 95px 58px rgba(0, 0, 0, 0.01)) drop-shadow(63px 53px 49px rgba(0, 0, 0, 0.04)) drop-shadow(28px 24px 37px rgba(0, 0, 0, 0.07)) drop-shadow(7px 6px 20px rgba(0, 0, 0, 0.08));
}

.social-img-front {
    position: absolute;
    width: 59%;
    right: 5%;
    z-index: 2;
    filter: drop-shadow(171px 114px 82px rgba(0, 0, 0, 0.01)) drop-shadow(96px 64px 69px rgba(0, 0, 0, 0.04)) drop-shadow(43px 28px 51px rgba(0, 0, 0, 0.07)) drop-shadow(11px 7px 28px rgba(0, 0, 0, 0.08));
}

.social-img-main {
    position: absolute;
    width: 69%;
    bottom: 18%;
    right: 0;
    z-index: 3;
    filter: drop-shadow(132px 88px 64px rgba(0, 0, 0, 0.01)) drop-shadow(74px 50px 54px rgba(0, 0, 0, 0.04)) drop-shadow(33px 22px 40px rgba(0, 0, 0, 0.06)) drop-shadow(8px 6px 22px rgba(0, 0, 0, 0.07));
}

.social-img-align {
    width: 59%;
    position: relative;
    opacity: 0;
}



/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {
    .social-container {
        width: calc(100% - 64px);
        margin-left: 32px;
        margin-right: 32px;
    }

    .social-heading {
        max-width: 650px;
    }

    .social-imgs {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .social-imgs-container {
        max-width: 500px;
    }
}

/* Desktops (992px+) */

@media screen and (min-width: 992px) {
    #soziale-funktionen {
        scroll-margin-top: 24px;
    }

    .social-container {
        width: calc(100% - 100px);
        margin: 96px 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .social-content {
        width: 100%;
        max-width: 650px;
        order: 2;
    }

    .social-heading p,
    .social-select-box-label {
        font-size: 18px;
        font-weight: 500;
        margin: 0;
    }

    .social-select-box-label {
        padding: 6px 0px 4px 0px;
        font-weight: 600;
    }

    .social-select-box-text {
        font-weight: 500;
        font-size: 16px;
    }

    .social-imgs {
        width: 100%;
        max-width: 600px;
        order: 1;
        margin: 0;
        margin-right: 90px;
    }

    .social-imgs-container {
        max-width: unset;
    }
}

/* --------- */


/* ----- Unterstütze uns ----- */

/* Phone (0px - 575px) */

.support {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 50px 0px;
}

.support-container {
    width: 100%;
    max-width: 1340px;
    height: fit-content;
    margin: 48px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.support-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 0px 16px;
}

.support-heading p {
    color: var(--secondary-white);
    text-align: center;
    margin-bottom: 28px;
}

.support-heading h2 {
    text-align: center;
    background: linear-gradient(45deg, #DDE6FF, #3367FF);
    background-clip: text;
    background: -webkit-linear-gradient(45deg, #DDE6FF, #3367FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}





.support-content {
    width: 100%;
    height: fit-content;
}

.support-content-slider {
    width: 100%;
    height: fit-content;
    display: flex;
    gap: 16px;
    padding: 0px 16px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    filter: drop-shadow(0px 0px 50px rgba(255, 255, 255, 0.1));
}

.support-content-slider-slide {
    width: calc(100% - 16px);
    max-width: 345px;
    height: 450px;
    flex-shrink: 0;
    background-color: var(--primary-white);
    scroll-snap-align: center;
    border-radius: 31px;
    border: 1px solid #282A34;
    overflow: hidden;
}

.support-content-slider-slide-block {
    width: 100%;
    height: 450px;
    position: relative;
}

.support-content-slider-slide-reward {
    position: absolute;
    top: 16px;
    left: 16px;
    width: fit-content;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    border-radius: 16px;
    border: 2px solid var(--primary-blue);
    background-color: var(--primary-white);
    z-index: 2;
    box-shadow: 0px 2px 15px rgba(8, 14, 36, 0.1);
}

.support-content-slider-slide-reward p {
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 700;
}

.support-content-slider-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.support-content-slider-slide-bg img {
    width: 100%;
    object-fit: contain;
    z-index: 1;
}

.support-content-slider-slide-content {
    width: 100%;
    height: fit-content;
    background: linear-gradient(45deg, #181C2D, #080E24);
    background: -webkit-linear-gradient(45deg, #181C2D, #080E24);
    position: absolute;
    bottom: 0;
    clip-path: polygon(0px 35px, 100% 0px, 100% 100%, 0% 100%);
    z-index: 1;
    padding: 16px;
    padding-top: 51px;
}

.support-content-slider-slide-content-headline {
    color: var(--primary-white);
    margin-bottom: 8px;
}

.support-content-slider-slide-content-des {
    color: var(--primary-white);
    opacity: 0.75;
    margin-bottom: 16px;
}

.support-content-slider-slide-content a {
    all: unset;
    width: fit-content;
    height: 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-white);
    padding: 10px 24px;
    background-color: var(--primary-blue);
    border-radius: 20px;
    display: flex;
    border: 2px solid var(--primary-blue);
    transition: border 0.3s ease;
}

.support-content-slider-slide-content a:hover {
    cursor: pointer;
    border: 2px solid #88a5ff;
}





.support-content-slide-indicator {
    width: 100%;
    height: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.support-content-slide-indicator-slide {
    width: 36px;
    height: 3px;
    border-radius: 1.5px;
    background-color: var(--primary-white);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.support-content-slide-indicator-slide-active {
    opacity: 1;
}

.support-info {
    width: calc(100% - 32px);
    text-align: center;
    color: #7B7D8F;
    opacity: 0.5;
    margin: 0px 16px;
    margin-top: 28px;
}

.support-bg {
    width: 100%;
    height: 100%;
    background-color: var(--primary-black);
    position: absolute;
    bottom: 0;
    clip-path: polygon(0px 50px, 100% 0px, 100% calc(100% - 50px), 0% 100%);
    z-index: 1;
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {
    .support-heading {
        margin: 0px 32px;
    }

    .support-content-slider {
        padding: 0px 32px;
    }
}

@media screen and (min-width: 800px) {
    .support-container {
        width: calc(100% - 64px);
        margin: 48px 32px;
    }

    .support-content-slider {
        width: 100%;
        padding: 0;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }
}

/* Desktops (992px+) */

@media screen and (min-width: 992px) {
    .support {
        padding: 75px 0px;
    }

    .support-container {
        width: calc(100% - 100px);
        margin: 96px 50px;
    }

    .support-content-bg {
        clip-path: polygon(0px 75px, 100% 0px, 100% calc(100% - 75px), 0% 100%);
    }


    .support-bg {
        clip-path: polygon(0px 75px, 100% 0px, 100% calc(100% - 75px), 0% 100%);
    }



    .support-heading {
        margin: 0;
        gap: 16px;
    }

    .support-heading h2 {
        max-width: 880px;
    }

    .support-heading p {
        max-width: 800px;
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 56px;
    }

    .support-content-slider {
        gap: 48px;
    }


    .support-content-slider-slide {
        width: 50%;
        max-width: 500px;
        height: 600px;
        flex-shrink: 1;
        border-radius: 36px;
    }

    .support-content-slider-slide-block {
        width: 100%;
        height: 100%;
    }

    .support-content-slider-slide-reward {
        top: 24px;
        left: 24px;
        height: 48px;
        padding: 10px 32px;
        border-radius: 24px;
    }

    .support-content-slider-slide-reward p {
        font-size: 18px;
    }

    .support-content-slider-slide-content {
        clip-path: polygon(0px 50px, 100% 0px, 100% 100%, 0% 100%);
        padding: 24px;
        padding-top: 86px;
        display: block;
        bottom: -1px;
    }

    .support-content-slider-slide-content-headline {
        font-weight: 600;
        font-size: 24px;
        margin-bottom: 12px;
    }

    .support-content-slider-slide-content-des {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .support-content-slider-slide-content a {
        height: 44px;
        font-size: 16px;
        padding: 0px 24px;
        border-radius: 24px;
        justify-content: center;
        align-items: center;
    }


    .support-content-slide-indicator {
        display: none;
    }

    .support-info {
        width: 100%;
        max-width: 850px;
        margin: 0;
        margin-top: 56px;
        font-size: 16px;
    }
}

/* --------- */


/* ----- Blog ----- */

/* Phone (0px - 575px) */

.blog {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
    top: -50px;
    background: linear-gradient(180deg, #F3F5F8 50%, #FFFFFF 100%);
    padding-top: 50px;
}

.blog-container {
    width: 100%;
    max-width: 1440px;
    margin: 48px 0px 22px 0px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-heading {
    width: calc(100% - 32px);
    height: fit-content;
    margin: 0px 16px;
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
}

.blog-content {
    width: 100%;
    max-width: fit-content;
    height: fit-content;
    display: flex;
    gap: 16px;
    padding: 0px 16px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.blog-content-slide {
    width: calc(100% - 16px);
    max-width: 345px;
    height: fit-content;
    flex-shrink: 0;
    scroll-snap-align: center;
    overflow: hidden;
}

.blog-content-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.blog-content-slide-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0px 8px;
    margin-top: 12px;
}

.blog-content-slide-details {
    margin-bottom: 4px;
    opacity: 0.5;
}

.blog-content-slide-indicator {
    width: 100%;
    height: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.blog-content-slide-indicator-slide {
    width: 36px;
    height: 3px;
    border-radius: 1.5px;
    opacity: 0.5;
    background-color: var(--secondary-black);
    transition: background-color 0.3s ease,
        opacity 0.3s ease;
}

.blog-content-slide-indicator-slide-active {
    background-color: var(--primary-blue);
    opacity: 1;
}

.blog-cta {
    all: unset;
    width: fit-content;
    height: 48px;
    padding: 0px 24px;
    margin-top: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    background-color: var(--primary-blue);
    color: var(--primary-white);
    font-weight: 500;
    font-size: 16px;
    box-shadow: 0px 2px 15px #88a6ff00;
    transition: box-shadow 0.3s ease;
}

.blog-cta:hover {
    cursor: pointer;
    box-shadow: 0px 2px 15px #88a5ff;
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {
    .blog-heading {
        width: calc(100% - 64px);
        margin: 0px 64px;
        margin-bottom: 28px;
    }

    .blog-content {
        padding: 0px 32px;
        gap: 24px;
    }

    .blog-content-slide {
        width: calc(100% - 24px);
    }
}

/* Desktops (992px+) */

@media screen and (min-width: 992px) {
    .blog {
        top: -75px;
        padding-top: 75px;
    }

    .blog-container {
        margin: 96px 0px 117px 0px;
    }

    .blog-heading {
        width: calc(100% - 100px);
        margin: 0px 50px;
        margin-bottom: 56px;
    }

    .blog-content {
        max-width: 1440px;
        padding: 0px 50px;
    }

    .blog-content-slide {
        max-width: 430px;
    }

    .blog-content-slide-text {
        gap: 8px;
        margin: 0px 10px;
        margin-top: 12px;
    }

    .blog-content-slide-details {
        font-size: 12px;
        margin-bottom: 0px;
    }

    .blog-content-slide-heading {
        font-weight: 600;
        font-size: 24px;
    }

    .blog-content-slide-des {
        font-size: 16px;
    }

    .blog-cta {
        margin-top: 36px;
    }
}

@media screen and (min-width: 1440px) {
    .blog-content-slide-indicator {
        display: none;
    }
}

/* --------- */


/* ----- Zitat ----- */

/* Phone (0px - 575px) */

.quote {
    width: 100%;
    display: flex;
    justify-content: center;
}

.quote-container {
    width: calc(100% - 32px);
    height: fit-content;
    margin: 0px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quote-img {
    width: 100%;
    object-fit: contain;
    border-radius: 31px;
    display: block;
    margin-bottom: 28px;
}

.quote-content {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 8px 16px 24px 16px;
}

.quote-content-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.quote-content-author {
    color: var(--primary-blue);
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {
    .quote-container {
        width: calc(100% - 64px);
        margin: 0px 32px;
        max-width: 500px;
    }
}

/* Desktops (992px+) */

@media screen and (min-width: 992px) {
    .quote-container {
        width: calc(100% - 100px);
        margin: 0px 50px;
        margin-bottom: 96px;
        max-width: 1340px;
        flex-direction: row;
    }

    .quote-img {
        max-width: 500px;
        max-height: 500px;
        margin: 0;
        margin-right: 72px;
        border-radius: 36px;
    }

    .quote-content {
        gap: 20px;
        padding: 16px;
    }

    .quote-content-icon {
        width: 64px;
        height: 64px;
    }

    .quote-content-heading {
        font-size: 32px;
        font-weight: 700;
        line-height: 120%;
    }

    .quote-content-text {
        font-size: 18px;
        font-weight: 500;
        line-height: 160%;
    }

    .quote-content-author {
        font-size: 20px;
        font-weight: 700;
        line-height: 140%;
    }
}

/* --------- */


/* ----- CTA ----- */

/* Phone (0px - 575px) */

.cta {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    padding: 48px 0px;
    position: relative;
    z-index: 2;
}

.cta-container {
    width: calc(100% - 32px);
    max-width: 1340px;
    height: fit-content;
    margin: 0px 16px;
    margin-bottom: 48px;
    display: flex;
    padding: 82px 32px;
    background-color: var(--primary-blue);
    border-radius: 31px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.cta-container p {
    font-weight: 500;
    font-size: 14px;
    color: var(--primary-white);
    margin: 0;
    text-align: center;
}

.cta-container h2 {
    color: var(--primary-white);
    text-align: center;
}

.cta-container button {
    all: unset;
    width: fit-content;
    height: 48px;
    border-radius: 24px;
    padding: 0px 32px;
    background-color: var(--primary-white);
    color: var(--primary-black);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: scale 0.3s ease;
}

.cta-container button:hover {
    cursor: pointer;
    scale: 1.05;
}

/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {
    .cta-container {
        width: calc(100% - 64px);
        margin: 0px 32px;
        margin-bottom: 48px;
        padding: 64px;
        gap: 12px;
        border-radius: 36px;
    }

    .cta-container p {
        font-size: 16px;
        line-height: 24px;
    }

    .cta-container h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
}

/* Desktops (992px+) */

@media screen and (min-width: 992px) {
    .cta {
        padding-bottom: 0;
    }

    .cta-container {
        width: calc(100% - 100px);
        margin: 0px 50px;
        padding: 64px 32px;
    }

    .cta-container h2 {
        max-width: 600px;
        font-size: 40px;
        line-height: 48px;
    }
}

/* --------- */


/* ----- Footer ----- */

/* Phone (0px - 575px) */

footer {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.top-footer {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
}

.footer-container {
    width: calc(100% - 32px);
    max-width: 1340px;
    height: fit-content;
    margin: 0px 16px;
    padding: 48px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    all: unset;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.footer-logo:hover {
    cursor: pointer;
}

.footer-block {
    width: fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-block p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--primary-blue);
}

.footer-block-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-block-links a {
    all: unset;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: var(--primary-black);
    padding-left: 0px;
    transition: transform 0.3s ease;
}

.footer-block-links a:hover {
    transform: translateX(5px);
    cursor: pointer;
}

.footer-block-sideways {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-btn-up {
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 48px;
    right: 16px;
}

.footer-btn-up a {
    width: 48px;
    height: 48px;
    background-color: var(--primary-white);
    border: 2px solid var(--primary-blue);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-btn-up a img {
    width: 20px;
    object-fit: contain;
    padding-bottom: 1px;
    transition: padding 0.3s ease;
}

.footer-btn-up a:hover img {
    padding-bottom: 5px;
}

.footer-bg {
    width: 100%;
    height: calc(100% + 50px);
    background-color: var(--secondary-white);
    position: absolute;
    bottom: 0;
    z-index: 1;
    clip-path: polygon(0px 50px, 100% 0px, 100% 100%, 0% 100%);
}

.bottom-footer {
    width: 100%;
    height: fit-content;
    z-index: 3;
    display: flex;
    justify-content: center;
    background-color: var(--primary-white);
    border-top: 1px solid var(--secondary-black);
}

.bottom-footer-container {
    width: 100%;
    max-width: 1340px;
    height: fit-content;
    padding: 48px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.bottom-footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.bottom-footer-links a,
.bottom-footer-links p {
    all: unset;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--primary-black);
}

.bottom-footer-links a:hover {
    cursor: pointer;
    text-decoration: underline;
}

.bottom-footer-creation,
.bottom-footer-copyright {
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--primary-black);
}


/* Tablets (576px - 991px) */

@media screen and (min-width: 576px) {
    .footer-container {
        width: calc(100% - 64px);
        margin: 0px 32px;
        flex-direction: row;
        justify-content: space-between;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-btn-up {
        align-self: flex-end;
        position: relative;
        bottom: -12px;
        right: 0;
    }
}

/* Desktops (992px+) */

@media screen and (min-width: 992px) {
    .footer-container {
        width: calc(100% - 100px);
        margin: 144px 50px 96px 50px;
        padding: 0;
        gap: 32px;
    }

    .footer-block-sideways {
        flex-direction: row;
        gap: 32px;
    }

    .footer-btn-up {
        bottom: -24px;
    }

    .bottom-footer {
        height: 64px;
        padding: 0px;
    }

    .bottom-footer-container {
        width: calc(100% - 100px);
        height: 64px;
        padding: 0px;
        margin: 0px 50px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .bottom-footer-links {
        order: 2;
        margin: 0;
        width: 250px;
    }

    .bottom-footer-creation {
        order: 1;
        width: 250px;
    }

    .bottom-footer-copyright {
        order: 3;
        width: 250px;
        text-align: right;
    }

    .footer-bg {
        height: calc(100% + 170px);
        clip-path: polygon(0px 75px, 100% 0px, 100% 100%, 0% 100%);
    }
}

/* --------- */