#primary section.screen {
    padding-top: 120px;
    padding-bottom: 0;
    position: relative;
}

.screen__card-text {
    color: inherit;
}

.screen__card-text svg {
    color: inherit;
}

.screen__blur {
    position: absolute;
    top: -50%;
    width: 100%;
    height: 1059px;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.screen__blur--right {
    right: 0;
    left: auto;
}

.screen__blur--left {
    left: -30%;
    right: auto;
}

.screen__head {
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
}

.screen__card-text {
    display: flex;
    justify-content: end;
    gap: 16px;
    margin-bottom: 40px;
    align-items: baseline;
    position: relative;
    z-index: 1;
}

.screen__card-text * {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0;
}

.screen__card-images {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.screen__img-wrap {
    display: flex;
    height: fit-content;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 720px;
    border-radius: 12px;
    border: 0.5px solid #ffffff33;
    box-shadow: var(--img-shadow, 0px 4px 24px 0px rgba(255, 255, 255, 0.16));
    box-sizing: border-box;
}

.screen__img-wrap .screen__img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 0;
    border: 0;
    box-shadow: none;
}

.screen__marquee {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    overflow: hidden;
    padding: 6px 0;
    background: var(--screen-marquee-bg, #6b5ce0);
    color: var(--screen-marquee-color, #ffffff);
    pointer-events: none;
}

.screen__marquee-track {
    display: flex;
    width: max-content;
    animation: screen-marquee 80s linear infinite;
}

.screen__marquee-group {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 24px;
    flex-shrink: 0;
}

.screen__marquee-word {
    letter-spacing: 0;
    white-space: nowrap;
    color: inherit;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
}

@keyframes screen-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media screen and (min-width: 900px) {
    .screen__card-images {
        flex-direction: row;
        gap: 0;
        --y: 131px;
        --ov: 160px;
        --mr2: 440px;
        --ml3: 280px;
        --mt3: -69px;
    }

    .screen__card-images .screen__img-wrap {
        max-width: 720px;
    }

    .screen__card-images .screen__img-wrap.is-2 {
        margin-top: var(--y);
        margin-left: calc(-1 * var(--ov));
    }

    .screen__card-images--first-offset .screen__img-wrap.is-1 {
        margin-top: var(--y);
        margin-right: calc(-1 * var(--ov));
        z-index: 1;
    }

    .screen__card-images--first-offset .screen__img-wrap.is-2 {
        margin-top: unset;
        margin-left: unset;
        z-index: 0;
    }

    .screen__card-images--middle-offset {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .screen__card-images--middle-offset .screen__img-wrap.is-2 {
        margin-top: calc(-1 * var(--y));
        margin-right: var(--mr2);
        z-index: 2;
    }

    .screen__card-images--middle-offset .screen__img-wrap.is-3 {
        margin-left: var(--ml3);
        margin-top: var(--mt3);
    }
}

@media screen and (max-width: 1200px) {
    .screen__blur {
        display: none;
    }
}

@media screen and (max-width: 1350px) {
    .screen__card-text {
        justify-content: start;
    }
}

@media screen and (max-width: 768px) {
    .screen__marquee-word {
        font-size: 12px;
    }

    .screen__marquee-group {
        gap: 16px;
        padding-right: 16px;
    }

    #primary section.screen {
        padding-top: 40px;
    }
}
