/* || ----------------------------- MAIN CONTENT */

#main-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--maincontainer-vertical-padding-desktop);
    width: calc(100% - var(--maincontainer-horizontal-padding-desktop) * 2);
    margin-left: auto;
    margin-right: auto;
    z-index: 0;
}

/* || ----------------------------- CONTENT BTN */

.content-navigation-btn {
    text-decoration: none;
}

/* || ----------------------------- HEADER VIDEO  + CTA */

#holder-header-video-cta {
    position: relative;
    width: calc(100% + var(--maincontainer-horizontal-padding-desktop) * 2);
    height: 85vh;
    min-height: 30rem;
    top: 0;
    left: calc(var(--maincontainer-horizontal-padding-desktop) * -1);
    border-bottom-right-radius: var(--border-radius-xxl);
    overflow: hidden;
    background-color: var(--col-bg-mediafiles);
}

@media (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) and (hover: none) and (pointer: coarse) {
    #holder-header-video-cta {
        height: 85vh;
        border-bottom-right-radius: calc(var(--border-radius-xxl) / 4);
        width: calc(100% + var(--maincontainer-horizontal-padding-desktop) * 2);
        left: calc(var(--maincontainer-horizontal-padding-desktop) * -1);
    }
}

@media (max-width: 1023px) {
    #holder-header-video-cta {
        border-bottom-right-radius: calc(var(--border-radius-xxl) / 4);
        width: calc(100% + var(--maincontainer-horizontal-padding-mobile));
        left: calc(-1 * var(--maincontainer-horizontal-padding-mobile) * 0.5);
    }
}

#header-video-cta-video {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 21 / 9;
    right: 0;
    background: var(--col-media-bg);
    margin-left: auto;
    transform-origin: top left;
}

/* Video */

#header-video-cta-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
    opacity: 0;
}

@media (max-width: 620px) and (hover: none) and (pointer: coarse) {
    #header-video-cta-video video {
        height: 100%;
    }
}

@media (max-width: 620px) and (hover: none) and (pointer: coarse) {
    #header-video-cta-video {
        width: 100%;
        aspect-ratio: 9 / 15;
    }
}

/* Poster Image */

.fsvideo-poster-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.fsvideo-poster-image img {
    display: inline-block;
    width: 100%;
    height: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
}

/* Content CTA */

#header-video-cta-content {
    position: absolute;
    width: 49rem;
    height: auto;
    bottom: var(--content-elements-padding);
    left: var(--content-elements-padding);
    z-index: 2;
    background-color: var(--col-bg-trans-white);
    border-radius: var(--border-radius-sm);
    border-bottom-right-radius: calc(var(--border-radius-xxl) / 4.5);
    color: var(--col-font-main-black);
    overflow: hidden;
}

@media (min-width: 300px) and (max-width: 767px) {
    #header-video-cta-content {
        width: calc(100% - var(--content-elements-padding));
        left: calc(var(--content-elements-padding) * 0.5);
        bottom: calc(var(--content-elements-padding) * 0.5);
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #header-video-cta-content {
        width: 65%;
        left: calc(var(--content-elements-padding) * 0.75);
        bottom: var(--content-elements-padding);
    }
}

.wrapper-video-cta-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(var(--content-elements-padding) * 0.75);
    width: auto;
    height: 100%;
    padding: var(--content-elements-padding);
}

@media (min-width: 300px) and (max-width: 767px) {
    .wrapper-video-cta-content {
        padding: calc(var(--content-elements-padding) * 0.5);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .wrapper-video-cta-content {
        padding: var(--content-elements-padding);
    }
}

/* || ----------------------------- DESCRIPTION + STATS */

.holder-description-stats {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(var(--content-elements-padding) * 2);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .holder-description-stats {
        gap: var(--content-elements-padding);
    }
}

@media (min-width: 300px) and (max-width: 767px) {
    .holder-description-stats {
        gap: var(--content-elements-padding);
    }
}

.wrapper-description-stats-text {
    position: relative;
    width: 50%;
    height: auto;
    top: 0;
    left: 0;
}

@media (min-width: 300px) and (max-width: 767px) {
    .wrapper-description-stats-text {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1280px) {
    .wrapper-description-stats-text {
        width: 65%;
    }
}

/* PROCENT CARDS */

.wrapper-description-stats-cards {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: var(--content-elements-padding);
}

@media (min-width: 300px) and (max-width: 1023px) {
    .wrapper-description-stats-cards {
        flex-direction: column;
        gap: calc(var(--content-elements-padding) * 0.5);
    }
}

.holder-procent-card {
    position: relative;
    width: calc(100% - calc(var(--content-elements-padding) * 2));
    height: auto;
    padding: var(--content-elements-padding);
    padding-top: calc(var(--content-elements-padding) * 3);
    padding-bottom: calc(var(--content-elements-padding) * 3);
    background-color: var(--col-bg-procent-card);
    border-radius: var(--border-radius-sm);
}

@media (min-width: 300px) and (max-width: 1023px) {
    .holder-procent-card {
        padding-top: var(--content-elements-padding);
        padding-bottom: var(--content-elements-padding);
    }
}

.wrapper-procent-card-text {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--content-elements-padding);
}

@media (min-width: 300px) and (max-width: 1023px) {
    .wrapper-procent-card-text {
        gap: calc(var(--content-elements-padding) * 0.75);
    }
}

.holder-procent-card-icon {
    position: absolute;
    right: var(--content-elements-padding);
    top: var(--content-elements-padding);
}

/* || ----------------------------- SLIDER INFO + VIDEO */

.slider-video-text {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(var(--content-elements-padding) * 2);
    width: 100%;
    max-height: 65rem;
    height: auto;
    overflow: hidden;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .slider-video-text {
        gap: var(--content-elements-padding);
    }
}

@media (min-width: 300px) and (max-width: 767px) {
    .slider-video-text {
        gap: var(--content-elements-padding);
    }
}

.slider-video-text__headline {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 60rem;
    text-align: center;
}

.wrapper-slider-video-text {
    position: relative;
    width: 100%;
    height: 85dvh;
    background-color: var(--col-bg-videoslider-content);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

@media (min-width: 300px) and (max-width: 1023px) and (hover: hover) and (pointer: fine) {
    .wrapper-slider-video-text {
        height: 51rem;
    }
}

@media (min-width: 300px) and (max-width: 767px) and (hover: none) and (pointer: coarse) {
    .wrapper-slider-video-text {
        height: 41rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) and (hover: none) and (pointer: coarse) {
    .wrapper-slider-video-text {
        height: 61rem;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) and (hover: none) and (pointer: coarse) {
    .wrapper-slider-video-text {
        height: 34rem;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) and (hover: hover) and (pointer: fine) {
    .wrapper-slider-video-text {
        height: 35rem;
    }
}

@media (min-width: 1280px) and (max-width: 1480px) and (hover: hover) and (pointer: fine) {
    .wrapper-slider-video-text {
        height: 43rem;
    }
}

.slider-info-video {
    position: absolute;
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    height: 100%;
    background-color: var(--col-bg-slider-card);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    opacity: 0;
}

@media (min-width: 300px) and (max-width: 767px) {
    .slider-info-video {
        height: 100%;
        gap: 0;
    }
}

@media (min-width: 767px) and (max-width: 1023px) {
    .slider-info-video {
        height: 100%;
    }
}

@media (min-width: 300px) and (max-width: 1023px) {
    .slider-info-video {
        flex-direction: column;
    }
}

/* Slider Video */

.slider-info-video-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

@media (min-width: 300px) and (max-width: 767px) {
    .slider-info-video-media {
        height: 65%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .slider-info-video-media {
        height: 66%;
    }
}

.slider-info-video-media .slider-video {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .slider-info-video-media .slider-video {
        height: 100%;
    }
}

.wrapper-slider-info-video-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-column: 2;
    grid-row: 1;
    gap: calc(var(--content-elements-padding) * 0.5);
    width: 100%;
    height: 100%;
    background-color: var(--col-bg-videoslider-content);
}

@media (min-width: 300px) and (max-width: 1023px) {
    .wrapper-slider-info-video-content {
        justify-content: unset;
        width: 100%;
        height: 100%;
        padding-top: calc(var(--content-elements-padding) * 0.5);
        grid-column: 1;
        grid-row: auto;
    }
}

.slider-info-video-content-section {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: calc(80% - var(--content-elements-padding) * 1);
    text-align: unset;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .slider-info-video-content-section {
        flex-direction: row;
        gap: calc(var(--content-elements-padding) * 0.5);
        width: calc(100% - var(--content-elements-padding) * 1);
        text-align: left;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .slider-info-video-content-section {
        width: calc(95% - var(--content-elements-padding) * 1);
    }
}

.slider-info-video-content-description {
    position: relative;
    width: calc(80% - var(--content-elements-padding) * 1);
    height: auto;
    text-align: unset;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .slider-info-video-content-description {
        width: calc(100% - var(--content-elements-padding) * 1);
        text-align: left;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .slider-info-video-content-description {
        width: calc(95% - var(--content-elements-padding) * 1);
    }
}

.slider-info-video-content-section-counter {
    position: relative;
    min-width: 3.5rem;
    max-width: 3.5rem;
    min-height: 3.5rem;
    max-height: 3.5rem;
    border-radius: var(--border-radius-xxl);
    outline: 0.125rem dashed var(--col-font-highlight);
}

.slider-info-video-content-section-counter h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wrapper-slider-info-video-navigation {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: calc(50% - var(--content-elements-padding) * 1);
    gap: calc(var(--content-elements-padding) * 0.5);
    bottom: calc(var(--content-elements-padding) * 0.5);
    left: calc(var(--content-elements-padding) * 0.5);
    z-index: 99999;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .wrapper-slider-info-video-navigation {
        left: 0;
        bottom: 0;
        gap: 0;
        right: 0;
        width: 100%;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .wrapper-slider-info-video-navigation {
        left: 0;
        bottom: 0;
        gap: 0;
        right: 0;
        width: 50%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .wrapper-slider-info-video-navigation {
        /*  top: calc(-1 * var(--content-elements-padding) - 0rem);
        justify-content: center; */
    }
}

.slider-info-video__nav {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 5rem;
    background-color: var(--col-bg-main-navigation-static);
    cursor: pointer;
}

@media (min-width: 300px) and (max-width: 767px) {
    .slider-info-video__nav {
        width: 100%;
        height: 3rem;
        font-size: var(--font-size-xs);
    }
}

/* || ----------------------------- PAGE TEASER + INFO */

.holder-page-teaser {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(var(--content-elements-padding) * 2);
    width: 100%;
    height: auto;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .holder-page-teaser {
        gap: var(--content-elements-padding);
    }
}

.page-teaser-description {
    position: relative;
    width: 50%;
    height: auto;
}

@media (min-width: 300px) and (max-width: 767px) {
    .page-teaser-description {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1280px) {
    .page-teaser-description {
        width: 65%;
    }
}

.wrapper-page-teaser-cards {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: calc(var(--content-elements-padding) * 0.5);
    width: 100%;
}

@media (min-width: 300px) and (max-width: 767px) {
    .wrapper-page-teaser-cards {
        flex-direction: column;
    }
}

@media (max-width: 1023px) {
    .wrapper-page-teaser-cards {
        gap: calc(var(--content-elements-padding) * 0.5);
    }
}

.page-teaser-cards {
    position: relative;
    width: 50%;
    height: auto;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

@media (min-width: 300px) and (max-width: 767px) {
    .page-teaser-cards {
        width: 100%;
    }
}

.page-teaser-cards .content-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.page-teaser-cards-btn-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    border-radius: var(--border-radius-sm);
    background-color: var(--col-bg-trans-white);
    background-color: unset;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .page-teaser-cards-btn-bg {
        width: calc(100% - var(--content-elements-padding) * 0.5);
        bottom: calc(var(--content-elements-padding) * 0.25);
        left: calc(var(--content-elements-padding) * 0.25);
        background-color: unset;
    }
}

.page-teaser-cards .content-navigation-btn {
    position: absolute;
    bottom: var(--content-elements-padding);
    right: var(--content-elements-padding);
    z-index: 999;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .page-teaser-cards .content-navigation-btn {
        bottom: calc(var(--content-elements-padding) * 0.25);
        right: calc(var(--content-elements-padding) * 0.25);
    }
}

/* || ----------------------------- LARGE CTA */

.holder-large-cta {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: var(--content-elements-padding);
    align-items: center;
    width: 100%;
    height: auto;
    padding-bottom: 15rem;
    padding-top: 15rem;
    border-radius: var(--border-radius-sm);
    background-color: var(--col-bg-cta-teaser-blue);
    overflow: hidden;
}

@media (min-width: 300px) and (max-width: 767px) {
    .holder-large-cta {
        flex-direction: column;
        padding-bottom: 12rem;
        padding-top: 12rem;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
    }
}

.large-cta-icon {
    position: absolute;
    left: -5%;
    bottom: -5rem;
    opacity: 0.1;
    width: 110%;
    max-width: 100%;
}

@media (min-width: 300px) and (max-width: 767px) {
    .large-cta-icon {
        bottom: -1rem;
    }
}

.large-cta-icon svg {
    display: block;
    width: 110%;
    height: auto;
}

.large-cta-icon svg path {
    fill: var(--col-font-highlight);
}

.large-cta-description {
    position: relative;
    width: 50%;
    height: auto;
    left: var(--content-elements-padding);
}

@media (min-width: 300px) and (max-width: 767px) {
    .large-cta-description {
        width: calc(100% - var(--content-elements-padding) * 2);
        height: 50%;
    }
}

.large-cta-btn {
    position: relative;
    width: 50%;
    height: auto;
    text-align: center;
}

@media (min-width: 300px) and (max-width: 767px) {
    .large-cta-btn {
        width: 100%;
    }
}

/* || ----------------------------- 2 IMAGES + TEXT */

.images-text-imagealignment-right {
    flex-direction: row-reverse;
}

.images-text-imagealignment-left {
    flex-direction: row;
}

.holder-images-text {
    position: relative;
    width: 100%;
    height: 35rem;
    aspect-ratio: 100 / 45;
}

@media (min-width: 300px) and (max-width: 767px) {
    .holder-images-text {
        height: auto;
        min-height: 30rem;
        justify-content: space-between;
    }
}

@media (min-width: 300px) and (max-width: 1023px) {
    .holder-images-text {
        flex-direction: column;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .holder-images-text {
        height: 50rem;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .holder-images-text {
        height: 40rem;
        justify-content: space-between;
    }
}

.wrapper-images-text-img {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: min-content;
}

.holder-images-text .content-image {
    position: relative;
    display: inline-block;
    width: 25%;
    height: max-content;
    border-radius: var(--border-radius-xxl);
    overflow: hidden;
}

.holder-images-text .content-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.images-text-desctiption {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.images-text-desctiption > * {
    width: 60%;
    text-align: center;
}

@media (max-width: 1279px) {
    .images-text-desctiption > * {
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .images-text-desctiption {
        width: 100%;
    }
}

/* || ----------------------------- CTA INFO FULLSCREEN */

.cta-fullscreen {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    max-height: 67rem;
    width: calc(100% + var(--maincontainer-horizontal-padding-desktop) * 2);
    left: calc(var(--maincontainer-horizontal-padding-desktop) * -1);
    background-color: var(--col-bg-mediafiles);
}

@media (min-width: 300px) and (max-width: 1023px) {
    .cta-fullscreen {
        width: calc(100% + var(--maincontainer-horizontal-padding-mobile));
        left: calc(-1 * var(--maincontainer-horizontal-padding-mobile) * 0.5);
    }
}

.cta-fullscreen__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--content-elements-padding);
    text-align: center;
    align-items: center;
    width: 40rem;
}

@media (min-width: 300px) and (max-width: 767px) {
    .cta-fullscreen__content {
        width: calc(100% - var(--maincontainer-horizontal-padding-mobile));
        left: 0;
    }
}

.cta-fullscreen .content-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* || ----------------------------- CTA INFO HALFSCREEN */

.cta-halfscreen {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 31rem;
    width: calc(100% + var(--maincontainer-horizontal-padding-desktop) * 2);
    left: calc(var(--maincontainer-horizontal-padding-desktop) * -1);
    background-color: var(--col-bg-mediafiles);
    overflow: hidden;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .cta-halfscreen {
        width: calc(100% + var(--maincontainer-horizontal-padding-mobile));
        left: calc(-1 * var(--maincontainer-horizontal-padding-mobile) * 0.5);
        height: 25rem;
    }
}

.cta-halfscreen__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--content-elements-padding);
    text-align: left;
    width: calc(100% - var(--maincontainer-horizontal-padding-desktop) * 2);
    left: var(--maincontainer-horizontal-padding-desktop);
}

@media (min-width: 300px) and (max-width: 1023px) {
    .cta-halfscreen__content {
        width: calc(100% - var(--maincontainer-horizontal-padding-mobile));
        left: calc(var(--maincontainer-horizontal-padding-mobile) * 0.5);
    }
}

.cta-halfscreen__content-headline,
.cta-halfscreen__content-cta {
    width: 50%;
}

@media (max-width: 1023px) {
    .cta-halfscreen__content-headline,
    .cta-halfscreen__content-cta {
        width: 100%;
    }
}

.cta__content {
    display: flex;
    flex-direction: column;
    gap: var(--content-elements-padding);
}

.cta-halfscreen .content-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* || ----------------------------- HEADER HEADLINE BOLD */

.header-headline-bold {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    width: 100%;
    height: 70vh;
    min-height: 30rem;
    max-height: 50rem;
}

@media (min-width: 1024px) {
    .header-headline-bold {
        margin-bottom: calc(-0.5 * var(--maincontainer-vertical-padding-desktop));
    }
}

@media (min-width: 300px) and (max-width: 1023px) {
    .header-headline-bold {
        margin-bottom: calc(-0.5 * var(--maincontainer-vertical-padding-mobile));
        flex-direction: column;
        height: 100%;
        width: 100%;
    }
}

.header-headline-bold__content {
    width: 50%;
}

.header-headline-bold__content > * {
    width: calc(100% - var(--content-elements-padding));
    opacity: 0;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .header-headline-bold__content {
        width: 100%;
        padding-top: 10rem;
        min-height: 50vh;
        padding-bottom: calc(var(--content-elements-padding) * 2);
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .header-headline-bold__content {
        padding-top: 20rem;
        min-height: 50vh;
    }
}

.header-headline-bold .lottie-animation {
    position: absolute;
    width: 60%;
    height: 65vh;
    max-height: 50rem;
    top: 5rem;
    right: 0;
    border-bottom-left-radius: var(--border-radius-md);
    overflow: hidden;
    z-index: 999999;
}

@media (min-width: 300px) and (max-width: 767px) {
    .header-headline-bold .lottie-animation {
        width: 100%;
        height: auto;
        top: unset;
        bottom: -10vh;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-headline-bold .lottie-animation {
        width: 30rem;
        height: 30rem;
        top: unset;
        bottom: -5vh;
    }
}

/* || ----------------------------- HEADER TEXT + ILLU */

.header-text-illu {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 70vh;
    min-height: 30rem;
    max-height: 50rem;
}

@media (min-width: 1024px) {
    .header-text-illu {
        margin-bottom: calc(-0.5 * var(--maincontainer-vertical-padding-desktop));
    }
}

.header-text-illu__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--content-elements-padding);
    align-items: center;
    text-align: center;
    width: calc(50rem - var(--maincontainer-horizontal-padding-desktop) / 2);
    height: auto;
    padding-top: 15rem;
    min-height: 20rem;
}

.header-text-illu__content > * {
    opacity: 0;
}

@media (min-width: 300px) and (max-width: 767px) {
    .header-text-illu__content {
        width: 100%;
        padding-top: 10rem;
        min-height: 50vh;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-text-illu__content {
        width: calc(100% - var(--maincontainer-horizontal-padding-mobile) / 2);
        padding-top: 20rem;
        min-height: 50vh;
    }
}

.header-text-illu .lottie-animation {
    position: absolute;
    width: 50rem;
    height: 50rem;
    bottom: -29rem;
}

@media (min-width: 300px) and (max-width: 767px) {
    .header-text-illu .lottie-animation {
        width: 100%;
        height: 37rem;
        bottom: -24rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-text-illu .lottie-animation {
        width: 100%;
        height: 50rem;
        bottom: -30rem;
    }
}

/* || ----------------------------- HEADER IMAGE + TEXT */

.holder-header-image {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    width: calc(100% + var(--content-elements-padding) * 0.75);
    height: 70vh;
    min-height: 30rem;
    max-height: 50rem;
}

@media (min-width: 1024px) {
    .holder-header-image {
        margin-bottom: calc(-0.5 * var(--maincontainer-vertical-padding-desktop));
    }
}

@media (min-width: 300px) and (max-width: 1023px) {
    .holder-header-image {
        margin-bottom: calc(-0.5 * var(--maincontainer-vertical-padding-mobile));
        flex-direction: column;
        height: 100%;
        width: calc(100% + var(--content-elements-padding) * 0.5);
    }
}

.header-image-content {
    position: relative;
    width: calc(50%);
    bottom: -1rem;
}

.header-image-content > * {
    width: calc(100% - var(--content-elements-padding));
    opacity: 0;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .header-image-content {
        width: 100%;
        padding-top: 10rem;
        min-height: 15rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .header-image-content {
        min-height: 18rem;
    }
}

.holder-header-image .content-image {
    position: relative;
    width: calc(50% + var(--content-elements-padding));
    height: 100%;
    border-bottom-left-radius: var(--border-radius-md);
    overflow: hidden;
}

@media (min-width: 300px) and (max-width: 767px) {
    .holder-header-image .content-image {
        width: calc(80% + var(--content-elements-padding));
    }
}

/* || ----------------------------- TEXT + ILLU */

.text-illu {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
}

.text-illu__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--content-elements-padding);
    align-items: center;
    width: calc(50rem - var(--maincontainer-horizontal-padding-desktop) / 2);
    height: auto;
    min-height: 20rem;
    text-align: center;
}

@media (min-width: 300px) and (max-width: 767px) {
    .text-illu__content {
        width: 100%;
        min-height: 15rem;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .text-illu__content {
        width: calc(100% - var(--maincontainer-horizontal-padding-mobile) / 2);
        min-height: 23rem;
    }
}

.text-illu .lottie-animation {
    position: absolute;
    width: 50rem;
    height: 50rem;
    bottom: -34rem;
}

@media (min-width: 300px) and (max-width: 767px) {
    .text-illu .lottie-animation {
        width: 100%;
        height: 30rem;
        bottom: -21rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .text-illu .lottie-animation {
        width: 100%;
        height: 50rem;
        bottom: -30rem;
    }
}

/* || ----------------------------- HEADLINE CAROUSEL */

.headline-carousel-illu {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 30rem;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .headline-carousel-illu {
        height: 55vh;
        flex-direction: column;
    }
}

.holder-headline-carousel-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.holder-headline-carousel-content > * {
    flex: 0 0 40%;
    min-width: 0;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .holder-headline-carousel-content {
        flex-direction: column;
    }

    .holder-headline-carousel-content > * {
        min-width: 0;
        min-height: 0;
        text-align: center;
    }

    .holder-headline-carousel-content > *:first-child {
        flex: 0 0 auto;
        padding-bottom: var(--content-elements-padding);
    }

    .holder-headline-carousel-content > *:last-child {
        flex: 1 1 auto;
    }
}

.headline-carousel-illu__content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.headline-carousel-illu__headlines {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    top: 0;
    align-items: center;
    text-align: center;
    font-style: italic;
}

.headline-carousel-illu__headlines h2 {
    max-width: 50rem;
    position: absolute;
    opacity: 0;
}

@media (min-width: 768px) and (max-width: 1280px) {
    .headline-carousel-illu__headlines h2 {
        max-width: 40rem;
    }
}

.headline-carousel-illu .lottie-animation {
    position: relative;
    right: 0;
    height: 100%;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .headline-carousel-illu .lottie-animation {
        right: 0;
        bottom: -5rem;
        width: 100%;
        height: 80%;
    }
}

/* || ----------------------------- HEADLINE Weze */

.headline-illu {
    position: relative;
    width: 100%;
    height: 30vh;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .headline-illu {
        height: 55vh;
    }
}

.holder-headline-illu-content {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.holder-headline-illu-content > * {
    flex: 0 0 50%;
    min-width: 0;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .holder-headline-illu-content {
        flex-direction: column;
    }

    .holder-headline-illu-content > * {
        min-width: 0;
        min-height: 0;
        text-align: center;
    }
}

.headline-illu__content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.headline-illu__headlines {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    top: 0;
    align-items: center;
    text-align: center;
    font-style: italic;
}

.headline-illu__headlines h2 {
    max-width: 50rem;
    position: absolute;
    opacity: 0;
}

@media (min-width: 768px) and (max-width: 1280px) {
    .headline-illu__headlines h2 {
        max-width: 40rem;
    }
}

.headline-illu .lottie-animation {
    position: relative;
    width: 50%;
    height: 40rem;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .headline-illu .lottie-animation {
        width: 100%;
        min-height: 80%;
    }
}

/* || ----------------------------- TEXT 2 COLUMNS */

.text-columns {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--content-elements-padding);
    width: 100%;
    height: auto;
}

@media (min-width: 300px) and (max-width: 767px) {
    .text-columns {
        padding-top: 5rem;
    }
}

@media (min-width: 300px) and (max-width: 767px) {
    .text-columns h2 {
        width: 70%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .text-columns h2 {
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .text-columns h2 {
        width: 40%;
    }
}

.text-columns p {
    column-count: 2;
    column-gap: calc(var(--content-elements-padding) * 2);
    width: 50%;
    padding-left: 50%;
}

@media (min-width: 300px) and (max-width: 767px) {
    .text-columns p {
        column-count: 1;
        padding-left: calc(4rem + var(--content-elements-padding) * 0.5);
        width: 75%;
    }
}

@media (min-width: 768px) and (max-width: 1280px) {
    .text-columns p {
        column-gap: var(--content-elements-padding);
        column-count: 2;
        padding-left: 0;
        width: 100%;
    }
}

.text-columns .lottie-animation {
    position: absolute;
    width: 15rem;
    height: 15rem;
    right: 3rem;
    top: -8rem;
}

@media (min-width: 300px) and (max-width: 767px) {
    .text-columns .lottie-animation {
        width: 8rem;
        height: 8rem;
        right: 0;
        top: -2rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .text-columns .lottie-animation {
        width: 15rem;
        height: 15rem;
        right: 3rem;
        top: -3rem;
    }
}

/* || ----------------------------- CARD GRID */

.card-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(var(--content-elements-padding) * 2);
    width: 100%;
    height: auto;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .card-grid {
        gap: var(--content-elements-padding);
    }
}

.card-grid h2 {
    width: 50%;
}

@media (min-width: 300px) and (max-width: 767px) {
    .card-grid h2 {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1280px) {
    .card-grid h2 {
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .card-grid > h2 {
        margin: 0 auto;
        text-align: center;
    }
}

.card-grid__wrapper {
    position: relative;
    display: grid;
    flex-direction: row;
    gap: var(--content-elements-padding);
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;
}

.card-grid__wrapper:has(.card--image-text:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
}

.card-grid__wrapper:has(.card--image-text:nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 300px) and (max-width: 1023px) {
    .card-grid__wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: calc(var(--content-elements-padding) * 0.5);
    }
}

@media (min-width: 768px) and (max-width: 1480px) {
    .card-grid__wrapper {
        flex-flow: wrap;
    }
}

@media (max-width: 767px) {
    .card-grid__wrapper {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: calc(var(--content-elements-padding) * 0.5);
        padding-bottom: 1rem;
    }
}

.card--image-text {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--content-elements-padding);
    flex: 1 1 calc(25% - var(--content-elements-padding));
    height: 52rem;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
    background-color: var(--col-bg-png-images);
}

@media (max-width: 767px) {
    .card--image-text {
        flex: 0 0 100%;
        scroll-snap-align: start;
        height: 33rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .card--image-text {
        flex: 0 0 100%;
        height: 41rem;
    }
}

.card--image-text .card__content {
    position: relative;
    display: flex;
    flex-direction: column;
    top: 60%;
    height: 40%;
    padding: var(--content-elements-padding);
    padding-top: 0.5rem;
    z-index: 2;
    background-color: var(--col-bg-card-text);
    border-top-left-radius: var(--border-radius-lg);
    backdrop-filter: blur(3px);
}

@media (min-width: 300px) and (max-width: 768px) {
    .card--image-text .card__content {
        top: 50%;
        height: 50%;
    }
}

@media (min-width: 1024px) and (max-width: 1480px) {
    .card--image-text .card__content {
        top: 50%;
        height: 50%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .card--image-text .content-image {
        height: 100%;
    }
}

.card--image-text .card__content .pill-tag {
    display: flex;
    align-items: center;
    height: 2.5rem;
    width: max-content;
    left: -1.5rem;
    padding-left: var(--btn-main-padding-text);
    padding-right: var(--btn-main-padding-text);
    margin-bottom: var(--content-elements-padding);
    background-color: var(--col-pilltag-neutral-bg);
}

.card--image-text .content-image {
    position: absolute;
    height: 100%;
    width: 100.5%;
    top: 0;
    z-index: 0;
}

.card--image-text .content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .card--image-text .content-image {
        height: 100%;
    }
}

@media (min-width: 1024px) and (max-width: 1480px) {
    .card--image-text .content-image {
        height: 100%;
    }
}

.card-grid__wrapper::-webkit-scrollbar {
    display: none;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: calc(var(--content-elements-padding) * 0.5);
    margin-top: calc(var(--content-elements-padding) * -1);
}

@media (min-width: 1023px) {
    .slider-dots {
        display: none;
    }
}

.slider-dot {
    width: calc(var(--content-elements-padding) * 0.75);
    height: calc(var(--content-elements-padding) * 0.75);
    border-radius: 50%;
    background: var(--col-bg-gray);
    border: none;
    cursor: pointer;
}

.slider-dot.active {
    background: var(--col-bg-main-navigation-active);
}

/* || ----------------------------- CARD PRICING */

.card-grid__wrapper-pricing {
    position: relative;
    display: grid;
    grid-auto-flow: column;
    gap: var(--content-elements-padding);
    width: 100%;
    height: auto;
    justify-items: center;
    justify-content: center;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .card-grid__wrapper-pricing {
        display: flex;
        flex-wrap: wrap;
        gap: calc(var(--content-elements-padding) * 0.5);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .card-grid__wrapper-pricing {
        grid-auto-flow: row;
    }
}

@media (max-width: 767px) {
    .card-grid__wrapper-pricing {
        display: flex;
        flex-direction: row;
        gap: calc(var(--content-elements-padding) * 0.5);
        padding-bottom: 1rem;
    }
}

.card--pricing-text {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    width: 37rem;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
    background-color: var(--col-bg-feature-listing);
}

.pricing-name {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: calc(var(--content-elements-padding) * 0.5);
    left: var(--content-elements-padding);
    top: var(--content-elements-padding);
}

.pricing-name p {
    font-size: var(--font-size-xxl);
    font-weight: 600;
}

.card--pricing-text .longcopy-p ul {
    list-style: none;
    padding-left: 0;
}

.card--pricing-text .longcopy-p ul li {
    position: relative;
    padding-left: 1.2em;
}

.card--pricing-text .longcopy-p ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
}

/* stylelint-disable-next-line no-descending-specificity */
.card--pricing-text:nth-child(2) h3 p,
.card--pricing-text:nth-child(2) .price-description p,
.card--pricing-text:nth-child(2) ul,
.card--pricing-text:nth-child(2) ol,
.card--pricing-text:nth-child(2) h3 {
    color: var(--col-bg-green-bright);
}

.card--pricing-text:nth-child(2) .pricing-name p {
    color: var(--col-bg-green-bright);
}

.card--pricing-text:nth-child(2) .pricing-footnote p {
    color: var(--col-bg-green-footnote);
}

.card--pricing-text:nth-child(2) {
    background-color: var(--col-bg-green-dark);
}

@media (max-width: 767px) {
    .card--pricing-text {
        width: 100%;
        height: auto;
    }
}

@media (min-width: 768px) and (max-width: 1280px) {
    .card--pricing-text {
        width: 100%;
        height: auto;
    }
}

.price-description {
    display: flex;
    flex-direction: column;
}

.card--pricing-text .card__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    padding: var(--content-elements-padding);
    z-index: 2;
}

@media (min-width: 300px) and (max-width: 768px) {
    /* .card--pricing-text .card__content {
        padding: calc(var(--content-elements-padding) * 0.5);
    } */
}

@media (min-width: 1024px) and (max-width: 1480px) {
    /*    .card--pricing-text .card__content {
        top: 50%;
        height: 50%;
    } */
}

@media (min-width: 768px) and (max-width: 1023px) {
    .card--pricing-text .content-image {
        height: 100%;
    }
}

.card--pricing-text .content-image {
    position: relative;
    height: auto;
    width: 100.5%;
    top: 0;
    z-index: 0;
    aspect-ratio: 16 / 9;
}

.card--pricing-text .content-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top center;
}

@media (min-width: 768px) and (max-width: 1023px) {
    /*    .card--pricing-text .content-image {
        height: 100%;
    } */
}

@media (min-width: 1024px) and (max-width: 1480px) {
    /*   .card--pricing-text .content-image {
        height: 100%;
    } */
}

@media (max-width: 1023px) {
    .pricing-cards + .holder-text-block .wrapper-text-block-content {
        margin-top: calc(var(--maincontainer-vertical-padding-mobile) * -0.5);
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .pricing-cards + .holder-text-block .wrapper-text-block-content {
        margin-top: calc(var(--maincontainer-vertical-padding-desktop) * -0.75);
        width: 76rem;
    }
}

/* || ----------------------------- FEATURE GRID */

.feature-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(var(--content-elements-padding) * 2);
    width: 100%;
    height: auto;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .feature-grid {
        gap: var(--content-elements-padding);
    }
}

.feature-grid h2 {
    width: 50%;
}

@media (min-width: 300px) and (max-width: 767px) {
    .feature-grid h2 {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1280px) {
    .feature-grid h2 {
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .feature-grid > h2 {
        margin: 0 auto;
        text-align: center;
    }
}

.feature-grid__wrapper {
    position: relative;
    display: grid;
    gap: var(--content-elements-padding);
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;
}

.feature-grid__wrapper:has(.feature--image-text:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
}

.feature-grid__wrapper:has(.feature--image-text:nth-child(4):last-child) {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(var(--content-elements-padding) * 5);
}

@media (min-width: 300px) and (max-width: 1023px) {
    .feature-grid__wrapper:has(.feature--image-text:nth-child(4):last-child) {
        gap: calc(var(--content-elements-padding) * 2);
    }
}

@media (min-width: 300px) and (max-width: 1023px) {
    .feature-grid__wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: calc(var(--content-elements-padding) * 0.5);
    }
}

@media (min-width: 768px) and (max-width: 1480px) {
    .feature-grid__wrapper {
        flex-flow: wrap;
    }
}

@media (max-width: 767px) {
    .feature-grid__wrapper {
        display: flex;
        flex-direction: row;
        gap: calc(var(--content-elements-padding) * 2);
        padding-bottom: 1rem;
    }
}

.feature--image-text {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--content-elements-padding);
    height: auto;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
}

@media (max-width: 767px) {
    .feature--image-text {
        flex-direction: row;
        flex: 0 0 100%;
        gap: calc(var(--content-elements-padding) * 0.5);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .feature--image-text {
        flex-direction: row;
        flex: 0 0 100%;
        gap: calc(var(--content-elements-padding) * 2);
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .feature--image-text {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.feature--image-text .content-image {
    position: relative;
    height: 10rem;
    width: 10rem;
    bottom: 0;
    z-index: 0;
    background-color: unset;
    aspect-ratio: 1 / 1;
}

@media (min-width: 300px) and (max-width: 767px) {
    .feature--image-text .content-image {
        height: 4rem;
        width: 4rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .feature--image-text .content-image {
        height: 15rem;
        width: 15rem;
    }
}

.feature__content {
    display: flex;
    flex-direction: column;
    gap: calc(var(--content-elements-padding) * 0.5);
    max-width: 34rem;
}

@media (max-width: 767px) {
    .feature__content {
        padding-top: 1rem;
    }
}

/* || ----------------------------- ANIMATION ILLU + TEXT */

.animation-illustration {
    position: relative;
    display: flex;
    flex-direction: row;
    height: 35rem;
    width: 100%;
    overflow-x: clip;
}

@media (min-width: 300px) and (max-width: 767px) {
    .animation-illustration {
        flex-direction: column;
        height: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .animation-illustration {
        flex-direction: column;
        height: 100%;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .animation-illustration {
        height: 40rem;
    }
}

@media (min-width: 1280px) {
    .animation-illustration {
        height: 70vh;
    }
}

.animation-illustration__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 50%;
    height: 100%;
    left: 0%;
}

@media (min-width: 300px) and (max-width: 767px) {
    .animation-illustration__content {
        width: 100%;
        align-items: center;
    }
}

@media (min-width: 300px) and (max-width: 1023px) {
    .animation-illustration__content {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) and (max-width: 1480px) {
    .animation-illustration__content {
        width: 40%;
    }
}
/* stylelint-disable-next-line no-descending-specificity */
.animation-illustration__content p {
    column-count: 2;
    column-gap: calc(var(--content-elements-padding) * 2);
    width: 100%;
}

@media (min-width: 300px) and (max-width: 767px) {
    .animation-illustration__content p {
        column-count: 1;
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .animation-illustration__content p {
        column-count: 2;
        padding-left: 0;
        width: 100%;
    }
}

@media (min-width: 1024px) and (max-width: 1480px) {
    .animation-illustration__content p {
        column-count: 1;
    }
}

.animation-illustration__layers {
    position: relative;
    display: flex;
    width: 50%;
    height: 100%;
    perspective: 150rem;
    transform-style: preserve-3d;
    align-items: center;
}

@media (min-width: 300px) and (max-width: 767px) {
    .animation-illustration__layers {
        width: 100%;
        height: 55vh;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .animation-illustration__layers {
        width: 100%;
        height: 38rem;
    }
}

@media (min-width: 1024px) and (max-width: 1480px) {
    .animation-illustration__layers {
        width: 60%;
    }
}

.animation-illustration__layer {
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--orbit-width);
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    perspective: 10000px;
    transform-style: preserve-3d;
}

.animation-illustration__layer-inner {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 10000px;
    transform-style: preserve-3d;
}

.animation-illustration__orbit {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1.5px solid;
}

.animation-illustration__orbit.focus-object {
    /* background-color: #353434; */
}

.animation-illustration__orbit-svg {
    display: block;
    width: 100%;
    height: 100%;
}

.animation-illustration__orbit-svg circle {
    stroke-width: 1;
    stroke-dasharray: 8 9;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
    stroke: var(--col-outline-gray-bright);
}

.animation-illustration__pill {
    position: absolute;
    left: 50%;
    top: 100%;
    width: max-content;
    height: auto;
    transform: translate(-50%, 30%) rotateX(-75deg) translateY(-10px) translateZ(-10px) scale(0.55);
    transform-origin: center center;
}

/* stylelint-disable-next-line no-descending-specificity */
.animation-illustration__pill .pill-tag {
    display: flex;
    align-items: center;
    width: auto;
    height: 2.5rem;
    padding-left: var(--btn-main-padding-text);
    padding-right: var(--btn-main-padding-text);
}

.animation-illustration__axis {
    position: absolute;
    left: 5%;
    top: 50%;
    width: 1.5px;
    height: 3rem;
    background-color: var(--col-outline-gray-bright);
    transform: translate(-50%, -50%) rotateX(0deg) translateZ(40px);
    transform-origin: center center;
}

.animation-illustration__axis::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    border-top: 1.5px solid var(--col-outline-gray-bright);
    border-right: 1.5px solid var(--col-outline-gray-bright);
    transform: translate(-50%, -20%) rotate(-45deg);
}

/* || ----------------------------- DESCRIPTION TUTORIALS */

.holder-description-tutorial {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(var(--content-elements-padding) * 2);
    width: 100%;
    height: auto;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .holder-description-tutorial {
        gap: var(--content-elements-padding);
    }
}

.holder-description-tutorial h2 {
    width: 50%;
}

@media (max-width: 1023px) {
    .holder-description-tutorial h2 {
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .holder-description-tutorial h2 {
        padding-left: 50%;
    }
}

.wrapper-description-tutorial-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .wrapper-description-tutorial-cards {
        gap: calc(var(--content-elements-padding) * 0.5);
    }
}

.description-tutorial-card {
    position: relative;
    display: flex;
    flex-direction: row;
    height: 35rem;
    max-height: 65rem;
    overflow: hidden;
    width: 100%;
    background-color: var(--col-bg-feature-listing);
}

@media (min-width: 1024px) {
    .description-tutorial-card:nth-child(even) {
        flex-direction: row-reverse;
    }
}

@media (min-width: 300px) and (max-width: 767px) {
    .description-tutorial-card {
        flex-direction: column;
        flex: 0 0 100%;
        scroll-snap-align: start;
        height: 38rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .description-tutorial-card {
        flex-direction: column;
        flex: 0 0 100%;
        scroll-snap-align: start;
        height: 42rem;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .description-tutorial-card {
        height: 40rem;
    }
}

@media (min-width: 1280px) {
    .description-tutorial-card {
        height: 85dvh;
    }
}

.description-tutorial-card-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: unset;
}

/* stylelint-disable-next-line no-descending-specificity */
.description-tutorial-card-content .longcopy-p ul,
/* stylelint-disable-next-line no-descending-specificity */
.longcopy-p ol {
    padding-left: 0;
}

/* stylelint-disable-next-line no-descending-specificity */
.description-tutorial-card-content .pill-tag {
    position: relative;
    display: flex;
    align-items: center;
    width: auto;
    left: 10%;
    min-height: 2.5rem;
    padding-left: var(--btn-main-padding-text);
    padding-right: var(--btn-main-padding-text);
    margin-bottom: var(--content-elements-padding);
}

@media (min-width: 300px) and (max-width: 1023px) {
    .description-tutorial-card-content .pill-tag {
        left: 2.5%;
        top: -1.25rem;
        margin-bottom: calc(var(--content-elements-padding) * 0.5);
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .description-tutorial-card-content .pill-tag {
        left: 2.5%;
    }
}

.description-tutorial-card-content .ul-content {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: calc(80% - var(--content-elements-padding) * 2);
}

@media (min-width: 300px) and (max-width: 1023px) {
    .description-tutorial-card-content .ul-content {
        width: calc(100% - var(--content-elements-padding) * 2);
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .description-tutorial-card-content .ul-content {
        width: calc(95% - var(--content-elements-padding) * 2);
    }
}

@media (min-width: 300px) and (max-width: 1023px) {
    .description-tutorial-card-content {
        left: 0;
        transform: unset;
        width: auto;
        max-width: unset;
        justify-content: flex-start;
        min-height: 10rem;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .description-tutorial-card-content {
        /*  width: 40%; */
    }
}

.wrapper-tutorial-card-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    z-index: 0;
    background-color: var(--col-bg-png-images);
    overflow: hidden;
}

@media (max-width: 1023px) {
    .wrapper-description-tutorial-cards {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: calc(var(--content-elements-padding) * 0.5);
        padding-bottom: 1rem;
    }
}

.wrapper-description-tutorial-cards::-webkit-scrollbar {
    display: none;
}

@media (min-width: 300px) and (max-width: 767px) {
    .wrapper-tutorial-card-image {
        width: 100%;
        max-height: 40%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .wrapper-tutorial-card-image {
        width: 100%;
        max-height: 55%;
    }
}

.wrapper-tutorial-card-image .content-image {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .wrapper-tutorial-card-image .content-image {
        width: 100%;
        height: 100%;
    }
}

.wrapper-tutorial-card-image .content-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
}

/* || ----------------------------- INFO CARDS */

.holder-info-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(var(--content-elements-padding) * 2);
    width: 100%;
    height: auto;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .holder-info-cards {
        gap: var(--content-elements-padding);
    }
}

@media (min-width: 1480px) {
    .holder-info-cards {
        align-items: flex-end;
    }
}

.holder-info-cards h2 {
    width: 50%;
}

@media (min-width: 300px) and (max-width: 767px) {
    .holder-info-cards h2 {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1280px) {
    .holder-info-cards h2 {
        width: 50%;
    }
}

.wrapper-info-cards-cards {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--content-elements-padding);
    width: 100%;
    height: auto;
}

@media (max-width: 1023px) {
    .wrapper-info-cards-cards {
        gap: calc(var(--content-elements-padding) * 0.5);
        margin-bottom: calc(var(--content-elements-padding) * 0.5);
    }
}

@media (min-width: 1480px) {
    .wrapper-info-cards-cards {
        width: 80%;
    }
}

.wrapper-info-card__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(var(--content-elements-padding));
}

.wrapper-info-card__content > * {
    width: 80%;
}

@media (max-width: 1280px) {
    .wrapper-info-card__content > * {
        width: 90%;
    }
}

.wrapper-info-card__content > *:nth-child(2) {
    width: calc(100% + var(--content-elements-padding) * 2);
    margin-left: calc(var(--content-elements-padding) * -1);
}

.wrapper-info-card__content > *:nth-child(3) {
    position: relative;
    left: 50%;
    width: 50%;
}

@media (max-width: 1023px) {
    .wrapper-info-card__content > *:nth-child(3) {
        left: 0;
        width: 100%;
    }
}

.info-card {
    display: inline-block;
    width: calc(100% - var(--content-elements-padding) * 2);
    height: auto;
    break-inside: avoid;
    padding: var(--content-elements-padding);
    border-radius: var(--border-radius-sm);
    background-color: var(--col-bg-card-info);
}

@media (min-width: 300px) and (max-width: 767px) {
    .info-card {
        min-height: auto;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .info-card {
        min-height: auto;
    }
}

.card-light {
    background-color: var(--col-bg-white);
}

.card-dark {
    background-color: var(--col-bg-app-dark);
}

.btn-expand-card {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--col-bg-app-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: var(--border-radius-sm);
}

/* || ----------------------------- TEXT BLOCK */

.holder-text-block {
    position: relative;
    display: flex;
    height: auto;
    width: 100%;
}

.textalignment-left {
    justify-content: flex-start;
}

.textalignment-middle {
    justify-content: center;
}

.textalignment-right {
    justify-content: flex-end;
}

.wrapper-text-block-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(var(--content-elements-padding) * 0.5);
    width: calc(50% - var(--content-elements-padding));
}

/* stylelint-disable-next-line no-descending-specificity */
.wrapper-text-block-content h2,
/* stylelint-disable-next-line no-descending-specificity */
.wrapper-text-block-content p {
    width: 85%;
}

@media (min-width: 300px) and (max-width: 767px) {
    .wrapper-text-block-content h2,
    .wrapper-text-block-content p {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .wrapper-text-block-content {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .wrapper-text-block-content {
        width: 50%;
    }
}

.wrapper-text-block-content .underline-solid {
    width: 100%;
    margin-bottom: calc(var(--content-elements-padding));
}

@media (max-width: 767px) {
    .wrapper-text-block-content .underline-solid {
        width: 50%;
    }
}

/* || ----------------------------- FS IMAGE + TEXT */

.fs-image-copy {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--content-elements-padding) * 2);
    max-height: 65rem;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
}

@media (min-width: 300px) and (max-width: 1023px) {
    .fs-image-copy {
        height: 100%;
    }
}

.fs-image-copy__content {
    position: absolute;
    width: 75%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .fs-image-copy__content {
        width: calc(100% - var(--content-elements-padding));
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .fs-image-copy__content {
        width: calc(80% - var(--content-elements-padding));
    }
}

.fs-image-copy .content-image {
    position: relative;
    display: flex;
    flex-flow: wrap;
    width: 100%;
    height: 100%;
    object-fit: cover;
    justify-content: center;
}

@media (min-width: 300px) and (max-width: 1280px) {
    .fs-image-copy .content-image {
        height: calc(100vh - var(--content-elements-padding) * 2);
        width: 100%;
    }
}

/* || ----------------------------- HEADER PAGE INFO */

.page-info {
    position: relative;
    top: -1rem;
    display: none;
    transform-origin: center left;
}

@media (max-width: 1480px) {
    .page-info {
        display: inline-block;
    }
}

.header-text-illu__content .page-info {
    margin-bottom: calc(var(--content-elements-padding) * -1);
    transform-origin: center center;
}

/* || ----------------------------- HEADER TEXT + CTA */

.holder-header-cta {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    margin-bottom: -5rem;
}

@media (min-width: 300px) and (max-width: 767px) {
    .header-cta-content {
        width: 100%;
        margin-top: -7rem;
    }
}

.header-cta-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--content-elements-padding);
    align-items: center;
    text-align: center;
    width: 100%;
    height: auto;
    padding-top: 20rem;
    min-height: 20rem;
}

.holder-cta-links {
    display: flex;
    flex-direction: row;
    gap: var(--content-elements-padding);
    width: 100%;
}

@media (min-width: 300px) and (max-width: 1023px) {
    .holder-cta-links {
        flex-direction: column;
        gap: calc(var(--content-elements-padding) * 0.5);
    }
}

@media (min-width: 300px) and (max-width: 767px) {
    .header-cta-content {
        width: 100%;
        padding-top: 15rem;
        min-height: 15rem;
    }
}

.header-cta-content .content-navigation-btn {
    position: relative;
    float: right;
}

.header-cta-content .wrapper-info-card-content {
    padding-bottom: 1rem;
    text-align: left;
}

.header-cta-content .info-card {
    margin-bottom: 0;
}

/* || ----------------------------- MAIN SETTINGS */

#main-content > *:last-child {
    margin-bottom: var(--maincontainer-vertical-padding-desktop);
}

#main-content > .cta-fullscreen:last-child,
#main-content > .cta-halfscreen:last-child {
    margin-bottom: 0;
}

@media (min-width: 300px) and (max-width: 1023px) {
    #main-content {
        width: calc(100% - var(--maincontainer-horizontal-padding-mobile));
        gap: var(--maincontainer-vertical-padding-mobile);
    }

    #main-content > *:last-child {
        margin-bottom: var(--maincontainer-vertical-padding-mobile);
    }
}

/* || ----------------------------- FILTER TABS */

.faq-tabs {
    position: fixed;
    bottom: 0;
    display: flex;
    flex-direction: row;
    width: 100%;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    box-shadow:
        #0000001a 0 -10px 15px 3px,
        #0000000d 0 -4px 6px 2px;
}

.faq-tab {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 5rem;
    background-color: var(--col-bg-filter-tab);
    cursor: pointer;
    border-right: 1px solid var(--col-bg-line-dashed);
    border-bottom: 1px solid var(--col-bg-line-dashed);
}

.faq-tab:last-child {
    border-right: none;
}

@media (min-width: 300px) and (max-width: 767px) {
    .faq-tab {
        height: 3rem;
        font-size: var(--font-size-xs);
    }
}

.faq-item {
    position: relative;
}

.faq-item .info-card .pill-tag {
    position: absolute;
    display: flex;
    align-items: center;
    width: auto;
    right: 0.5rem;
    top: 0.5rem;
    height: 2.5rem;
    padding-left: var(--btn-main-padding-text);
    padding-right: var(--btn-main-padding-text);
    margin-bottom: var(--content-elements-padding);
    background-color: var(--col-pilltag-neutral-bg);
    transform-origin: right top;
    transform: scale(0.6);
    text-transform: uppercase;
}

.faq-tab-label-counter {
    position: relative;
    font-size: 0.7rem;
    width: min-content;
    top: -0.5rem;
    font-weight: 600;
}
