body {
    overflow-x: hidden;
}

/* html,
body {
    scroll-padding: 40px !important;
} */

.hero {
    background: var(--Primitives-Slate-Slate-2, #1A1D1E);
    position: relative;
    isolation: isolate;
    display: flex;
    justify-content: center;
    min-height: 820px;
}

.hero__img {
    position: absolute;
    height: 100%;
    width: 100%;
    max-width: 1920px;
    z-index: 0;
}

.hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__announce {
    padding: 0 0 120px;
    position: relative;
    z-index: 1;
    max-width: 50%;
}

.hero__announce h1,
.hero__announce span {
    color: var(--Tokens-Text-Text-Hi-Contrast, #F1F3F5);

    /* Heading XL Items */
    font-family: "Items";
    font-size: var(--font-size-Level-12, 64px);
    font-style: normal;
    font-weight: 325;
    line-height: var(--line-height-Level-12, 64px);
    /* 100% */
    letter-spacing: 1.28px;
    font-variation-settings: 'wdth' 450;
    margin-bottom: 0;
}

.hero__announce span {
    display: block;
    margin-bottom: 38px;
}

.hero__announce p {
    color: var(--Tokens-Text-Text-Mid-Contrast, #C2C6C9);

    /* Text 18 */
    font-family: "PPNV";
    font-size: 18px;
    font-style: normal;
    font-weight: 375;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.36px;

    margin-top: 60px;
    margin-bottom: 80px;
}

.hero__buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero__buttons>* {
    padding: 16px 40px;
    font-size: 18px;
    line-height: 24px;
}

.hero-link {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: var(--text-black);
    max-width: 12ch;
}

.hero__img.scrolled {
    isolation: isolate;
    z-index: 1;
}

@media (max-width: 992px) {
    header.active {
        z-index: 1024;
    }
    .hero {
        background: var(--Primitives-Slate-Slate-2, #1A1D1E);
    }

    .hero__img {
        max-height: 506px;
        top: 60px;
    }

    .hero__announce {
        padding: 0 0 60px;
        max-width: 100%;
    }

    .hero__announce h1 {
        margin-top: 506px;
    }

    .hero__announce h1,
    .hero__announce span {
        color: var(--Tokens-Text-Text-Hi-Contrast, #F1F3F5);

        /* Heading XL Items */
        font-family: "Items";
        font-size: var(--font-size-Level-12, 40px);
        font-style: normal;
        font-weight: 325;
        line-height: var(--line-height-Level-12, 42px);
        /* 105% */
        letter-spacing: 0.8px;
    }

    .hero__announce p {
        color: var(--Tokens-Text-Text-Mid-Contrast, #C2C6C9);

        /* Text 18 */
        font-family: "PPNV";
        font-size: 18px;
        font-style: normal;
        font-weight: 375;
        line-height: 24px;
        /* 133.333% */
        letter-spacing: 0.36px;
        margin-top: 40px;
        margin-bottom: 60px;
        max-width: 100%;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero__buttons a {
        text-align: center;
        justify-content: center;
    }

    .hero-link {
        font-weight: 400;
        font-size: 18px;
        line-height: 22px;
        max-width: unset;
    }
}