﻿.filler {
    min-height: 800px;
}

.banner-container {
    height: 64px;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: var(--clr-bg-secondary);
    mix-blend-mode: normal;
    box-shadow: 0px 4px 8px rgba(60, 60, 60, 0.1);
    padding: 12px 64px;
    z-index: 5;
    gap: 24px;
}

.banner-details-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.banner-details-title {
    color: var(--clr-text-white);
    font-size: var(--font-size-body-03);
    font-weight: 600;
    flex-shrink: 0;
}

.banner-details-subtitle {
    color: var(--clr-text-white);
    font-size: var(--font-size-body-05);
    font-weight: 400;
}

.banner-icons-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.banner-icons {
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    padding: 0;
    height: 40px;
}

    .banner-icons > img {
        height: 40px;
        aspect-ratio: auto;
    }

.hero-banner-container {
    aspect-ratio: 16 / 9;
    width: 100%;
    min-width: 1440px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 11.25px rgba(0, 0, 0, 0.24);
    position: absolute;
    top: 0;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    clip-path: ellipse(100% 100% at 50% 0%);
    z-index: 0;
}

.hero-banner-subcontainer {
    height: 100%;
    width: 100%;
}

    .hero-banner-subcontainer > img, .hero-banner-subcontainer > video {
        height: 100%;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        -moz-transition: opacity 0.4s ease-in-out;
        -o-transition: opacity 0.4s ease-in-out;
        -webkit-transition: opacity 0.4s ease-in-out;
        transition: opacity 0.4s ease-in-out;
        opacity: 0;
        position: absolute;
        inset: auto;
    }

        .hero-banner-subcontainer > img.active, .hero-banner-subcontainer > video.active {
            opacity: 1;
        }

.hero-banner-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.hero-container {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 100%;
    position: relative;
    padding: 426px 64px 56px 64px;
    overflow: hidden;
}

.hero-subcontainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    z-index: 1;
    gap: 24px;
}

.hero-details-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    height: auto;
    width: 100%;
}

.hero-spinner-container {
    height: 28px;
    width: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.hero-spinner-item {
    height: 12px;
    width: 12px;
    background-color: var(--clr-bg-neutral);
    border-radius: 100%;
    position: relative;
    cursor: pointer;
}

    .hero-spinner-item.active {
        padding: 8px;
        border: 1px solid var(--clr-bg-neutral);
        border-radius: 16px;
        background-color: transparent;
        height: 100% !important;
        width: 52px !important;
    }

        .hero-spinner-item.active::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: var(--clr-bg-white);
            height: calc(100% - 16px);
            width: calc(100% - 16px);
            border-radius: 12px;
        }

.hero-title-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    background-color: var(--clr-bg-transparent);
    height: auto;
    width: 100%;
    border: 1px solid #7D7D7D;
    border-radius: 24px;
    padding: 24px;
    mix-blend-mode: normal;
}

.hero-title {
    font-family: var(--font-family-head);
    font-size: var(--font-size-head-04);
    color: var(--clr-text-white);
    font-weight: 800;
    text-align: center;
}

.hero-cta {
    padding: 12px 22px;
    height: auto;
    width: auto;
    background-color: var(--clr-bg-accent);
    border: 0;
    border-radius: 42px;
    color: var(--clr-text-white);
    text-decoration: none;
    font-size: var(--font-size-button-02);
    font-weight: 700;
    line-height: 1.4;
    text-transform: capitalize;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

    .hero-cta::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        transform: translate(-50%, -50%);
        background: var(--clr-bg-quaternary);
        border-radius: 50%;
        transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
        z-index: -1;
        aspect-ratio: 1 / 1;
    }

    .hero-cta:hover::after {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

.hero-cta-icon {
    height: 22px;
    aspect-ratio: 1 / 1;
}

.hero-article-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    height: auto;
    width: 100%;
    background-color: var(--clr-bg-white);
    border-radius: 16.26px;
    padding: 40px 0;
    mix-blend-mode: normal;
    box-shadow: 0px 4px 6px rgba(60, 60, 60, 0.2);
}

.hero-article-breadcrumbs {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8.13px;
    padding: 0 40px;
    height: auto;
    width: 100%;
}

.hero-article-breadcrumbs-item {
    color: var(--clr-text-neutral);
    font-size: var(--font-size-body-05);
    font-weight: 400;
    text-decoration: none;
}

    .hero-article-breadcrumbs-item.active {
        color: var(--clr-text-accent);
        font-weight: 600;
    }

.hero-article-breadcrumbs-icon {
    height: 20px;
    aspect-ratio: 1 / 1;
}

.hero-article-details {
    height: auto;
    width: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-article-details-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-article-details-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    height: auto;
    width: 100%;
}

.hero-article-details-content {
    height: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1 1 0;
}

.hero-article-details-logo {
    height: 150px;
    aspect-ratio: auto;
    max-width: 465px;
    object-fit: contain;
    width: 100%;
    object-position: left;
}

.hero-article-details-title {
    text-shadow: 0px 3.25278px 9.75833px rgba(30, 215, 96, 0.1);
    color: var(--clr-text-neutral-700);
    font-family: var(--font-family-head);
    font-weight: 800;
    font-size: var(--font-size-head-03);
    line-height: 1.2;
}

.hero-article-details-subtitle {
    font-weight: 400;
    font-size: var(--font-size-body-03);
    color: var(--clr-text-neutral-700);
    line-height: 1.2;
}

.hero-article-details-image {
    width: 498px;
    height: 280px;
    gap: 10px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-shrink: 0;
    align-items: flex-start;
}

    .hero-article-details-image > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.hero-article-details-download-text {
    font-weight: 600;
    font-size: var(--font-size-body-01);
    color: var(--clr-text-neutral-500);
}

.hero-article-details-download-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    height: auto;
    width: auto;
}

.hero-article-details-download-button {
    height: 68px;
}

    .hero-article-details-download-button > img {
        height: 100%;
        width: auto;
    }

.hero-article-swimlane {
    height: auto;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .hero-article-swimlane::-webkit-scrollbar {
        display: none;
    }

.hero-article-swimlane-content {
    height: auto;
    width: max-content;
    display: flex;
    flex-direction: row;
    gap: 16px;
    padding: 0 16px;
}

.hero-article-swimlane-cards {
    height: 232px;
    width: 520px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0px;
    background: var(--clr-bg-swimlane);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    padding: 20px 20px;
}

    .hero-article-swimlane-cards > .card-image {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0px;
        top: 0px;
        z-index: 0;
    }

    .hero-article-swimlane-cards > .card-label {
        width: 312px;
        height: auto;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        z-index: 1;
        font-family: var(--font-family-head);
        font-size: var(--font-size-head-08);
        font-weight: 700;
        color: var(--clr-text-white);
    }

.hero-article-list {
    height: auto;
    width: 100%;
    padding: 16px 40px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-article-list-container {
    height: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    gap: 42px;
    justify-content: flex-start;
    align-items: flex-start;
}

.hero-article-list-subcontainer {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 0px;
    gap: 24px;
    height: auto;
    width: 100%;
    border-radius: 24px 24px 0px 0px;
}

.hero-article-list-title {
    font-family: var(--font-family-head);
    font-size: var(--font-size-head-05);
    font-weight: 800;
    color: var(--clr-text-neutral-head-500);
}

.hero-article-list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
    gap: 24px;
    height: auto;
    width: 100%;
    background: var(--clr-bg-white);
    border: 2px solid var(--clr-border-brand);
    border-radius: 64px;
    transition: height 0.3s ease-in-out;
}

.hero-article-list-item {
    --fill-list-icon: var(--clr-text-white);
}

.hero-article-list-item-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    height: auto;
}

.hero-article-list-icon-container {
    height: 60px;
    width: 60px;
    border-radius: 20px;
    position: relative;
    z-index: 0;
    transition: all 0.3s ease-in-out;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
}

    .hero-article-list-icon-container::before {
        content: "";
        position: absolute;
        background: var(--clr-bg-septary);
        opacity: 0;
        transition: all 0.3s ease-in-out;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .hero-article-list-icon-container > svg {
        height: 36px;
        width: 36px;
    }

.hero-article-list-icon {
    height: 60px;
    width: 60px;
    aspect-ratio: 1 / 1;
}

.hero-article-list-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
}

    .hero-article-list-details > .detail-title-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0px;
        gap: 12px;
        height: auto;
        width: 100%;
    }

        .hero-article-list-details > .detail-title-container > .detail-title {
            font-family: var(--font-family-body);
            font-size: var(--font-size-body-01);
            font-weight: 600;
            color: var(--clr-text-neutral-500);
        }

    .hero-article-list-details > .detail-body, .hero-article-list-item > .detail-body {
        font-weight: 400;
        font-size: var(--font-size-body-04);
        color: var(--clr-text-neutral-500);
    }

.hero-article-detail-cta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    padding: 10px 20px;
    gap: 8px;
    isolation: isolate;
    width: auto;
    height: auto;
    min-height: 42px;
    max-height: 56px;
    max-width: 0;
    background: var(--clr-bg-septary);
    border-radius: 42px;
    text-decoration: none;
    color: var(--clr-text-white);
    font-style: normal;
    font-weight: 600;
    font-size: var(--font-size-button-03);
    line-height: 1.4;
    text-transform: capitalize;
    position: relative;
    z-index: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, max-width 0s ease-in-out, padding 0s ease-in-out;
}

    .hero-article-detail-cta::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        transform: translate(-50%, -50%);
        background: var(--clr-bg-quaternary);
        border-radius: 50%;
        transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
        z-index: -1;
        aspect-ratio: 1 / 1;
    }

    .hero-article-detail-cta:hover::after {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

.featured-container {
    height: 646px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.featured-video-playback {
    height: 100%;
    width: 100%;
    background-color: var(--clr-bg-black);
}

    .featured-video-playback > video {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.featured-play {
    height: 60px;
    width: auto;
    aspect-ratio: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.featured-list-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background-color: var(--clr-bg-transparent);
    height: auto;
    width: auto;
    border: 1px solid #7D7D7D;
    border-radius: 24px;
    padding: 24px;
    mix-blend-mode: normal;
    position: absolute;
    bottom: 70px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.featured-list-item {
    width: 58px;
    height: 35px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    .featured-list-item.active {
        width: 80px;
        height: 48px;
        box-shadow: 0px 3px 4px 1px rgba(255, 255, 255, 0.18);
        border-radius: 8px;
        background: var(--clr-bg-tertiary);
    }

        .featured-list-item.active > img {
            height: calc(100% - 3px);
            width: calc(100% - 3px);
            border-radius: 8px;
        }

    .featured-list-item > img {
        height: 100%;
        width: 100%;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center;
    }

.section-column {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 64px;
    gap: 48px;
}

    .section-column.lr-0 {
        padding: 64px 0;
    }

        .section-column.lr-0 .section-header-center {
            padding: 0 64px;
        }

        .section-column.lr-0 .section-bundle-card-container {
            padding: 0 64px;
        }

.section-row {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding: 64px;
    gap: 48px;
}

.section-scroll {
    height: auto;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    display: flex;
}

.section-header-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    height: auto;
    width: 100%;
}

.section-header-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    height: auto;
    width: 100%;
}

.section-title {
    font-family: var(--font-family-head);
    font-style: normal;
    font-weight: 800;
    font-size: var(--font-size-head-03);
    color: var(--clr-text-neutral-600);
    text-shadow: 0px 4px 12px rgba(30, 215, 96, 0.1);
}

.section-title-alt {
    font-family: var(--font-family-head);
    font-style: normal;
    font-weight: 800;
    font-size: var(--font-size-head-03);
    color: var(--clr-text-white);
    text-shadow: 0px 4px 12px rgba(30, 215, 96, 0.1);
    text-align: center;
}

.section-subtitle {
    font-weight: 400;
    font-size: var(--font-size-body-03);
    color: var(--clr-text-black);
}

.section-subtitle-alt {
    font-weight: 400;
    font-size: var(--font-size-body-03);
    color: var(--clr-text-white);
}

.section-cta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 22px;
    gap: 8px;
    /*isolation: isolate;*/
    width: auto;
    height: auto;
    min-height: 42px;
    max-height: 56px;
    border-radius: 42px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    background: var(--clr-bg-white);
}

    .section-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 2px;
        background: var(--clr-bg-quaternary);
        border-radius: 42px;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        z-index: -2;
    }

    .section-cta::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        transform: translate(-50%, -50%);
        background: var(--clr-bg-quaternary);
        border-radius: 50%;
        transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
        z-index: -1;
        aspect-ratio: 1 / 1;
    }

    .section-cta:hover::after {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .section-cta:hover > span {
        color: var(--clr-text-white);
    }

    .section-cta:hover > svg > path {
        fill: var(--clr-text-white) !important;
    }

    .section-cta > span {
        font-weight: 600;
        font-size: var(--font-size-body-03);
        line-height: 1.4;
        display: flex;
        align-items: center;
        text-align: center;
        text-transform: capitalize;
        color: var(--clr-text-brand-primary-600);
        z-index: 1;
        transition: color 0.4s ease-in-out;
    }

    .section-cta > svg > path {
        fill: var(--clr-text-brand-primary-600) !important;
        transition: fill 0.4s ease-in-out;
    }

.section-swimlane-container {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-swimlane {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 32px;
    gap: 24px;
    width: 100%;
    height: auto;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(60, 60, 60, 0.2);
    border-radius: 24px;
}

.section-swimlane-header {
    font-family: var(--font-family-head);
    font-weight: 800;
    font-size: var(--font-size-head-05);
    color: var(--clr-text-neutral-head-500);
}

.section-swimlane-card-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: 100%;
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .section-swimlane-card-container::-webkit-scrollbar {
        display: none;
    }

.section-swimlane-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    gap: 12px;
    width: 300px;
    height: auto;
    border: 1px solid var(--clr-border-brand-primary);
    border-radius: 20px;
}

    .section-swimlane-card > img {
        width: 268px;
        aspect-ratio: 3 / 2;
        border-radius: 12px;
        object-fit: cover;
        object-position: center;
    }

.section-swimlane-card-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 12px 16px;
    gap: 8px;
    width: 268px;
    height: auto;
    background: var(--clr-bg-solid-primary);
    border-radius: 16px;
}

    .section-swimlane-card-details > p {
        font-weight: 600;
        font-size: var(--font-size-body-03);
        color: var(--clr-text-white);
        white-space: normal;
        min-height: 45px;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
    }

.section-swimlane-card-tag {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 16px;
    gap: 10px;
    width: auto;
    height: auto;
    border: 1px solid var(--clr-border-white);
    border-radius: 10px;
    /* Body/Regular/06 */
    font-weight: 400;
    font-size: var(--font-size-body-06);
    color: var(--clr-text-white);
}

.section-center-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
}

.section-more-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 22px;
    gap: 10px;
    /*isolation: isolate;*/
    width: auto;
    height: auto;
    min-height: 42px;
    max-height: 56px;
    background: var(--clr-bg-white);
    border: 0;
    border-radius: 42px;
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: var(--font-size-body-02);
    line-height: 1.4;
    text-transform: capitalize;
    color: var(--clr-text-neutral-700);
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    transition: color 0.4s ease-in-out;
    /*border: 2px solid transparent;*/ /* Needed to define border space */
    /*border-radius: 42px;
    background: linear-gradient(var(--clr-bg-white), var(--clr-bg-white)) padding-box,*/ /* inner background */
    /*var(--clr-bg-button-primary) border-box;*/ /* gradient border */
    /*background-clip: padding-box, border-box;
    box-sizing: border-box;*/
}

    .section-more-button:hover > svg > path {
        transition: fill 0.4s ease-in-out;
    }

    .section-more-button::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 2px;
        background: var(--clr-bg-button-primary);
        border-radius: 42px;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        z-index: -1;
    }

    .section-more-button::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        transform: translate(-50%, -50%);
        background: var(--clr-bg-button-primary);
        border-radius: 100%;
        transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
        z-index: -1;
        aspect-ratio: 1 / 1;
    }

    .section-more-button:hover::after {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .section-more-button:hover {
        color: var(--clr-text-white);
        transition: color 0.4s ease-in-out;
    }

        .section-more-button:hover > svg > path {
            fill: var(--clr-text-white);
            transition: fill 0.4s ease-in-out;
        }

.section-shorts-card {
    width: 100%;
    height: auto;
    background: var(--clr-bg-white);
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.section-shorts-detail-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 48px 20px 48px 48px;
    gap: 20px;
    width: auto;
}

    .section-shorts-detail-container > img {
        width: var(--width-shorts-logo);
        aspect-ratio: auto;
        max-width: 100%;
    }

.section-shorts-title {
    font-family: var(--font-family-head);
    font-weight: 800;
    font-size: var(--font-size-head-03);
    color: var(--clr-text-neutral-head-600);
    text-shadow: 0px 4px 12px rgba(30, 215, 96, 0.1);
}

    .section-shorts-title > span {
        font-family: var(--font-family-head);
        font-weight: 800;
        font-size: var(--font-size-head-03);
        text-shadow: 0px 4px 12px rgba(30, 215, 96, 0.1);
        color: var(--clr-text-accent);
    }

.section-shorts-subtitle {
    font-weight: 400;
    font-size: var(--font-size-body-03);
    color: var(--clr-text-neutral-head-600);
}

.section-shorts-image-container {
    display: flex;
    flex-shrink: 0;
    padding: 14px 28px 28px 0;
    width: auto;
    height: auto;
    position: relative;
}

.section-shorts-mockup {
    width: 100%;
    aspect-ratio: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15)) drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

.section-shorts-mockup-main {
    position: absolute;
    top: 2%;
    left: 48%;
    transform: translateX(-50.5%);
    z-index: 1;
    height: 93%;
}

.section-shorts {
    height: 90%;
    width: 48%;
    aspect-ratio: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-57%);
    width: auto;
    top: 4%;
    z-index: 2;
}

.section-shorts-alt {
    width: 45%;
    aspect-ratio: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-55%);
    top: 10%;
    z-index: 2;
}

.shorts-video-alt {
    width: 100%;
    aspect-ratio: auto;
}

.shorts-video {
    height: 100%;
    aspect-ratio: auto;
    mask-image: url('../images/screen-mask.png');
    -webkit-mask-image: url('../images/screen-mask.png');
    mask-size: cover;
    -webkit-mask-size: cover;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

.section-shorts-screens {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
}

.shorts-screen-left {
    height: 64%;
    position: absolute;
    top: 19%;
    left: 1%;
    mask-image: url('../images/screen-mask.png');
    -webkit-mask-image: url('../images/screen-mask.png');
    mask-size: cover;
    -webkit-mask-size: cover;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

.shorts-screen-right {
    height: 64%;
    position: absolute;
    top: 19%;
    right: 6%;
    mask-image: url('../images/screen-mask.png');
    -webkit-mask-image: url('../images/screen-mask.png');
    mask-size: cover;
    -webkit-mask-size: cover;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

.section-deals-details {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 12px;
    height: auto;
    width: 340px;
}

.section-deals-title {
    font-family: var(--font-family-head);
    font-weight: 800;
    font-size: var(--font-size-head-03);
    color: var(--clr-text-neutral-head-600);
    text-shadow: 0px 4px 12px rgba(30, 215, 96, 0.1);
}

.section-deals-subtitle {
    font-weight: 400;
    font-size: var(--font-size-body-03);
    color: var(--clr-text-neutral-head-600);
}

.section-deals-container {
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: calc(100% - 404px);
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .section-deals-container::-webkit-scrollbar {
        display: none;
    }

.section-deals-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    padding: 2px;
    width: 292px;
    height: 415px;
    filter: drop-shadow(0px 4px 6px rgba(60, 60, 60, 0.2));
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

    .section-deals-card::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 2px;
        background: var(--clr-bg-tertiary);
        border-radius: 24px;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        z-index: 2;
        pointer-events: none;
    }

.section-deals-card-image {
    width: 288px;
    height: 248px;
    background: linear-gradient(0deg, rgba(18, 18, 18, 0.2), rgba(18, 18, 18, 0.2)), url(image.png);
    object-fit: cover;
    object-position: center;
}

.section-deals-card-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    flex: 1 0 auto;
    padding: 20px 20px 16px 20px;
    gap: 18px;
    width: 100%;
    background: var(--clr-bg-white);
}

.section-deals-card-content {
    height: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;
}

.sections-deals-card-title {
    font-weight: 600;
    font-size: var(--font-size-body-03);
    color: var(--clr-text-neutral-head-500);
    text-shadow: 0px 2.7907px 8.37209px rgba(30, 215, 96, 0.1);
}

.section-deals-card-controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;
    width: auto;
    height: auto;
}

    .section-deals-card-controls > a {
        text-decoration: none;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 8px;
        padding: 0px;
        width: auto;
        height: auto;
        font-weight: 600;
        font-size: var(--font-size-button-04);
        line-height: 1.7;
        color: var(--clr-text-accent);
        cursor: pointer;
    }

        .section-deals-card-controls > a > svg > path {
            fill: var(--clr-text-accent);
        }

.bundle-bg {
    background: linear-gradient(0deg, rgba(18, 18, 18, 0.2), rgba(18, 18, 18, 0.2)), var(--img-bundle-bg);
    background-size: cover;
    background-position: center;
}

.section-bundle-card-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding: 0px;
    gap: 42px;
    width: max-content;
    height: auto;
    min-width: 100%;
    flex-shrink: 0;
}

.section-bundle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    max-width: 635px;
    width: 100%;
    height: auto;
    background: var(--clr-bg-white);
    border-radius: 20px;
    overflow: hidden;
    align-self: stretch;
}

    .section-bundle-card.alt-layout {
        max-width: 300px;
    }

        .section-bundle-card.alt-layout .section-bundle-card-title {
            font-size: var(--font-size-head-08);
            order: 2;
        }

        .section-bundle-card.alt-layout .section-bundle-card-subtitle {
            display: flex;
            font-size: var(--font-size-head-06);
            order: 1;
        }

        .section-bundle-card.alt-layout .section-bundle-card-header {
            flex-direction: column;
            align-items: flex-start;
            padding: 20px 24px;
            gap: 10px;
        }

        .section-bundle-card.alt-layout .section-bundle-card-details {
            display: none;
        }

        .section-bundle-card.alt-layout .section-cta {
            width: 100%;
        }

        .section-bundle-card.alt-layout .section-bundle-card-body {
            padding: 16px 24px;
            gap: 16px;
        }

        .section-bundle-card.alt-layout .section-bundle-card-icons > img {
            max-height: 45px;
            aspect-ratio: auto;
        }

.section-bundle-card-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.section-bundle-card-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 24px;
    gap: 10px;
    width: 100%;
    height: auto;
    background: var(--clr-bg-quinary);
    border-radius: 8px 8px 0px 0px;
}

    .section-bundle-card-header > .section-bundle-card-title {
        font-family: var(--font-family-head);
        font-style: normal;
        font-weight: 800;
        font-size: var(--font-size-head-06);
        display: flex;
        align-items: center;
        color: var(--clr-text-white);
        text-shadow: 0px 2.7907px 8.37209px rgba(30, 215, 96, 0.1);
    }

    .section-bundle-card-header > .section-bundle-card-subtitle {
        display: none;
        font-style: normal;
        font-weight: 600;
        font-size: var(--font-size-body-05);
        color: var(--clr-text-white);
        text-shadow: 0px 2.7907px 8.37209px rgba(30, 215, 96, 0.1);
    }

.section-bundle-card-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    height: 100%;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
}

.section-bundle-card-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
    gap: 24px;
    width: 100%;
    height: auto;
    border: 1px solid rgba(125, 125, 125, 0.5);
    border-radius: 12px;
}

.section-bundle-card-price-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: auto;
    gap: 12px;
    padding: 0 16px;
}

.section-bundle-card-price {
    font-family: var(--font-family-head);
    font-style: normal;
    font-weight: 800;
    font-size: var(--font-size-head-04);
    display: flex;
    align-items: center;
    color: var(--clr-text-brand-primary);
    text-shadow: 0px 2.7907px 8.37209px rgba(30, 215, 96, 0.1);
}

.section-bundle-card-unit {
    font-style: normal;
    font-weight: 400;
    font-size: var(--font-size-body-03);
    color: var(--clr-text-neutral-700);
}

.section-bundle-card-description {
    font-style: italic;
    font-weight: 700;
    font-size: var(--font-size-body-03);
    color: var(--clr-text-neutral-700);
    padding: 0 16px;
}

.section-bundle-card-description-regular {
    font-style: normal;
    font-weight: 400;
    font-size: var(--font-size-body-03);
    color: var(--clr-text-neutral-700);
    padding: 0 16px;
    display: none;
}

.section-bundle-card-shows-container {
    height: auto;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .section-bundle-card-shows-container::-webkit-scrollbar {
        display: none;
    }

.section-bundle-card-shows {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 16px;
    width: max-content;
    padding: 0 16px;
}

    .section-bundle-card-shows > img {
        width: 100px;
        height: 60px;
        border-radius: 4px;
        object-fit: cover;
        object-position: center;
    }

.section-bundle-card-cta-container {
    height: auto;
    width: auto;
    padding: 0 16px;
}

.hero-article-list-item > .detail-body {
    display: none;
}

.registration-container {
    display: flex;
    flex-direction: row;
    height: auto;
    justify-content: flex-start;
    align-items: stretch;
    border-radius: 20px;
    background: var(--clr-bg-white);
    border: 2px solid var(--clr-bg-white);
    overflow: hidden;
}

.registration-bg {
    background: var(--clr-bg-octonary);
}

.registration-details-container {
    display: flex;
    flex-direction: column;
    padding: 24px 48px;
    justify-content: center;
    align-items: center;
}

.registration-details-subcontainer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    flex: 1 0 0;
}

.registration-details-title {
    color: var(--clr-text-neutral-head-600);
    text-shadow: 0px 4px 12px rgba(30, 215, 96, 0.10);
    font-family: Barlow;
    font-size: var(--font-size-head-03);
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.registration-details-body {
    display: flex;
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    border-radius: 24px;
    border: 1.5px solid var(--clr-bg-neutral);
    background: rgba(125, 125, 125, 0.15);
    min-height: 232px;
}

.registration-details-chip {
    min-width: 96px;
    height: 48px;
    width: auto;
    padding: 8px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 48px;
    background: var(--clr-bg-button-primary);
    color: var(--clr-text-white);
    text-shadow: 0px 4px 12px rgba(30, 215, 96, 0.10);
    font-family: Barlow;
    font-size: var(--font-size-head-06);
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    transition: opacity 0.4s ease-in-out;
}

.registration-details-step {
    color: var(--clr-text-neutral-700);
    font-size: var(--font-size-body-01);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: opacity 0.4s ease-in-out;
}

    .registration-details-step > a {
        color: var(--clr-text-accent);
        font-weight: 800;
    }

.registration-details-texts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.registration-details-substep {
    color: var(--clr-text-neutral-700);
    font-size: var(--font-size-body-02);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: opacity 0.4s ease-in-out;
}

.registration-image-container {
    display: flex;
    height: auto;
    width: auto;
    padding: 32px 32px 24px 32px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: var(--clr-bg-solid-dark);
    flex: 1 0 auto;
}

.registration-image-holder {
    width: 100%;
    max-width: 520px;
    display: flex;
    align-items: flex-start;
    border-radius: 16px;
    overflow: hidden;
}

.registration-image {
    height: auto;
    width: 100%;
    transition: opacity 0.4s ease-in-out;
}

.registration-control-container {
    display: flex;
    padding: 8px 12px;
    align-items: center;
    gap: 32px;
    border-radius: 32px;
    background: var(--clr-bg-white);
}

.registration-details-control-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: space-between;
    width: 100%;
}

.fade-out {
    opacity: 0;
}

.link-account-header {
    display: flex;
    padding: 24px 48px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 24px;
    background: var(--clr-bg-octonary);
    color: var(--clr-text-white);
    font-family: Barlow;
    font-size: var(--font-size-head-06);
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    /*cursor: pointer;*/
}

    .link-account-header > img {
        height: 36px;
        aspect-ratio: 1 / 1;
    }

.link-account-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.link-account-content {
    display: flex;
    padding: 24px 32px;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 24px;
    border: 1px solid var(--clr-border-solid);
    background: var(--clr-bg-white);
    list-style: none;
}

    .link-account-content > li {
        color: var(--clr-text-neutral-700);
        font-size: var(--font-size-body-03);
        font-style: normal;
        font-weight: 400;
        line-height: 2;
    }

        .link-account-content > li > a {
            color: var(--clr-text-neutral-700);
        }

.link-account-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.link-account-cta-text {
    color: var(--clr-text-neutral-700);
    font-size: var(--font-size-body-04);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

    .link-account-cta-text > a {
        color: var(--clr-text-neutral-700);
    }

.hero-cta-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-start {
    justify-content: flex-start;
}



@media (min-width: 993px) {
    .hero-article-list-item:hover > .hero-article-list-item-group > .hero-article-list-icon-container {
        width: 144px;
        border-radius: 60px;
    }

        .hero-article-list-item:hover > .hero-article-list-item-group > .hero-article-list-icon-container::before {
            opacity: 1;
        }

        .hero-article-list-item:hover > .hero-article-list-item-group > .hero-article-list-icon-container > svg > path {
            fill: var(--fill-list-icon);
        }
}

/* Tablets and below */
@media (max-width: 1200px) {

    .section-shorts-card {
        flex-direction: column;
        padding: 32px 16px 16px 16px;
        gap: 16px;
    }

    .section-shorts-image-container {
        padding: 0;
        width: 100%;
        height: auto;
    }

    .section-shorts-mockup-main {
        height: 100%;
        left: 50%;
        top: 0;
    }

    .section-shorts {
        height: 96%;
        transform: translateX(-52%);
        top: 2%;
    }

    .section-shorts-alt {
        width: 47%;
        transform: translateX(-51%);
    }

    .shorts-screen-left {
        height: 69%;
        top: 18%;
    }

    .shorts-screen-right {
        height: 69%;
        top: 18%;
        right: 2%;
    }

    .registration-container {
        flex-direction: column;
    }

    .registration-image-container {
        width: 100%;
    }

    .banner-container {
        padding: 12px 32px;
    }
}


@media (max-width: 992px) {

    .hero-container {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 30px;
    }

    .hero-subcontainer {
        gap: 16px;
    }

    .hero-spinner-item {
        height: 10px;
        width: 10px;
    }

    .hero-title-container {
        gap: 20px;
    }

    .hero-title {
        font-size: var(--font-size-head-06);
    }

    .hero-cta {
        width: 100%;
        padding: 10px 20px;
        gap: 8px;
        font-size: var(--font-size-button-03);
        font-weight: 600;
    }

    .hero-article-container {
        padding: 20px 0;
    }

    .hero-article-breadcrumbs {
        padding: 0 24px;
    }

    .hero-article-breadcrumbs-item {
        font-size: var(--font-size-body-06);
    }

    .hero-article-details {
        gap: 24px;
        padding: 0 16px;
    }

    .hero-article-details-row {
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 24px;
    }

    .hero-article-details-title {
        font-size: var(--font-size-head-05);
        line-height: 1.2;
    }

    .hero-article-details-subtitle {
        font-size: var(--font-size-body-04);
    }

    .hero-article-details-image {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
    }

    .hero-article-details-column {
        gap: 12px;
    }

    .hero-article-details-download-text {
        font-size: var(--font-size-body-03);
    }

    .hero-article-details-download-container {
        gap: 12px;
    }

    .hero-article-details-download-button {
        height: 48px;
    }

    .hero-article-swimlane-content {
        gap: 8px;
    }

    .hero-article-swimlane-cards {
        height: 160px;
        width: 280px;
        padding: 16px;
    }

        .hero-article-swimlane-cards > .card-label {
            width: 100%;
            white-space: nowrap;
            text-overflow: ellipsis;
            font-size: var(--font-size-body-04);
        }

    .hero-article-list {
        padding: 16px 16px 0 16px;
    }

    .hero-article-list-container {
        gap: 24px;
    }

    .hero-article-list-title {
        font-size: var(--font-size-head-07);
    }

    .hero-article-list-subcontainer {
        gap: 12px;
    }

    .hero-article-list-item {
        padding: 16px 20px;
        gap: 0;
        border: 1px solid var(--clr-border-brand);
        border-radius: 24px;
        flex-direction: column;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        position: relative;
        transition: height 0.3s ease-in-out;
        cursor: pointer;
    }

        .hero-article-list-item.active {
            gap: 12px;
        }

    .hero-article-list-item {
        --fill-list-icon: unset;
    }

    .hero-article-list-icon-container {
        padding: 0;
        height: 32px;
        width: 32px;
        border-radius: 60px;
    }

        .hero-article-list-icon-container::before {
            opacity: 0;
        }

        .hero-article-list-icon-container > svg {
            height: 24px;
            width: 24px;
        }

    .hero-article-list-item.active > .hero-article-list-item-group > .hero-article-list-icon-container {
        padding: 0 24px;
        height: 32px;
        width: auto;
        border-radius: 60px;
    }

        .hero-article-list-item.active > .hero-article-list-item-group > .hero-article-list-icon-container::before {
            opacity: 1;
        }

        .hero-article-list-item.active > .hero-article-list-item-group > .hero-article-list-icon-container > svg > path {
            fill: var(--clr-text-white) !important;
        }

    .hero-article-list-item-group {
        gap: 16px;
    }

    .hero-article-list-details > .detail-title-container > .detail-title {
        font-size: var(--font-size-body-03);
    }

    .hero-article-list-details > .detail-body, .hero-article-list-item > .detail-body {
        font-size: var(--font-size-body-05);
    }

    .hero-article-list-details > .detail-body {
        display: none;
    }

    .hero-article-list-item > .detail-body {
        display: flex;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }

    .hero-article-list-item.active > .detail-body {
        max-height: 1000px;
        opacity: 1;
    }

    .hero-article-detail-cta {
        opacity: 0 !important;
        max-height: 0 !important;
        max-width: 100% !important;
        height: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        overflow: hidden;
        position: absolute;
        pointer-events: none;
        transition: all 0s ease-in-out;
    }

    .hero-article-list-item.active .hero-article-detail-cta {
        opacity: 1 !important;
        height: auto !important;
        max-height: 100% !important;
        padding: 10px 20px !important;
        width: 100% !important;
        position: relative;
        pointer-events: auto;
    }

    .featured-list-container {
        padding: 8px;
        border-radius: 8px;
    }

    .featured-list-item {
        height: 15px;
        width: 25px;
        border-radius: 4px;
    }

        .featured-list-item.active {
            height: 24px;
            width: 40px;
            border-radius: 4px;
        }

    .section-column {
        padding: 40px 16px;
        gap: 24px;
    }

        .section-column.lr-0 {
            padding: 40px 0;
        }

            .section-column.lr-0 .section-header-center {
                padding: 0 16px;
            }

            .section-column.lr-0 .section-bundle-card-container {
                padding: 0 16px;
            }

    .section-row {
        padding: 40px 16px;
        gap: 24px;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .section-title {
        font-size: var(--font-size-head-05);
    }

    .section-subtitle {
        font-size: var(--font-size-body-04);
    }

    .section-cta {
        padding: 10px 20px;
        width: 100%;
    }

    .section-swimlane-container {
        gap: 16px;
    }

    .section-swimlane {
        padding: 16px;
        gap: 16px;
    }

    .section-swimlane-header {
        font-size: var(--font-size-head-06);
    }

    .section-swimlane-card-container {
        gap: 12px;
    }

    .section-swimlane-card {
        padding: 12px;
    }

        .section-swimlane-card > img {
            width: 236px;
        }

    .section-swimlane-card-details {
        width: 236px;
    }

        .section-swimlane-card-details > p {
            min-height: 40px;
            font-size: var(--font-size-body-04);
        }

    .section-more-button {
        padding: 10px 20px;
        width: 100%;
        font-size: var(--font-size-button-03);
    }

    .section-shorts-card {
        flex-direction: column;
        padding: 32px 16px 0 16px;
        gap: 16px;
    }

    .section-shorts-detail-container {
        padding: 0;
        gap: 24px;
        align-items: center;
    }

        .section-shorts-detail-container > img {
            flex-shrink: 0;
        }

    .section-shorts-title {
        text-align: center;
        font-size: var(--font-size-head-05);
        width: 100%;
    }

    .section-shorts-subtitle {
        font-size: var(--font-size-body-04);
        text-align: center;
        width: 100%;
    }

    .section-shorts-image-container {
        padding: 0;
        width: 100%;
        height: auto;
    }

    .section-shorts-mockup-main {
        height: 100%;
        left: 50%;
        top: 0;
    }

    .section-shorts {
        height: 96%;
        transform: translateX(-52%);
        top: 2%;
    }

    .shorts-screen-left {
        height: 69%;
        top: 18%;
    }

    .shorts-screen-right {
        height: 69%;
        top: 18%;
        right: 2%;
    }

    .section-title-alt {
        font-size: var(--font-size-head-05);
        text-align: center;
        width: 100%;
    }

    .section-header-center {
        gap: 16px;
    }

    .section-subtitle-alt {
        font-size: var(--font-size-body-04);
        text-align: center;
        width: 100%;
    }

    .section-bundle-card {
        width: 300px;
        flex-shrink: 0;
    }

    .section-bundle-card-header {
        padding: 12px 16px;
        gap: 8px;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
        align-items: flex-start;
    }

        .section-bundle-card-header > .section-bundle-card-title {
            font-size: var(--font-size-head-07);
        }

        .section-bundle-card-header > .section-bundle-card-subtitle {
            display: none;
        }

    .section-bundle-card-body {
        padding: 16px;
        gap: 16px;
    }

    /*    .section-bundle-card-price-container {
        display: none;
    }*/

    .section-bundle-card-price {
        font-size: var(--font-size-head-05);
    }

    .section-bundle-card-unit {
        font-size: var(--font-size-body-05);
    }

    .section-bundle-card-shows-container {
        display: none;
    }

    .section-bundle-card-details {
        gap: 10px;
    }

    .section-bundle-card-description {
        font-size: var(--font-size-body-05);
    }

    .section-bundle-card-description-regular {
        display: none;
        font-style: normal;
        font-size: var(--font-size-body-05);
    }

    .section-bundle-card-container {
        gap: 16px;
    }

    .section-deals-details {
        width: 100%;
    }

    .section-deals-title {
        font-size: var(--font-size-head-05);
    }

    .section-deals-subtitle {
        font-size: var(--font-size-body-04);
    }

    .section-deals-container {
        width: 100%;
    }

    

    .registration-details-container {
        padding: 24px 16px;
    }

    .registration-image-container {
        padding: 16px;
        gap: 16px;
    }

    .registration-details-title {
        font-size: var(--font-size-head-05);
    }

    .registration-details-body {
        padding: 24px 16px;
        gap: 16px;
        min-height: 200px;
    }

    .registration-details-chip {
        height: 40px;
        font-size: var(--font-size-head-07);
    }

    .registration-details-step {
        font-size: var(--font-size-body-02);
    }

    .registration-details-substep {
        font-size: var(--font-size-body-04);
    }

    .registration-details-control-container {
        display: none;
    }

    .banner-container {
        display: none;
    }
}

/* Phones (landscape) */
@media (max-width: 768px) {
    .section-swimlane {
        padding: 16px;
        gap: 16px;
    }
}

/* Phones (portrait) */
@media (max-width: 576px) {
    .registration-control-container > .paging-container > .paging-page-container {
        display: none;
    }

    .section-swimlane {
        padding: 16px 0;
    }

    .section-swimlane-header {
        padding: 0 16px;
    }

    .section-swimlane-card-container {
        padding: 0 16px;
    }

    .section-row {
        padding-left: 0;
        padding-right: 0;
    }

    .section-deals-details {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-deals-container {
        padding-left: 16px;
        padding-right: 16px;
    }
}
