body {
    overflow-x: hidden;
}

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

.hero {
    position: relative;
    isolation: isolate;
    display: flex;
    justify-content: center;
    min-height: 820px;
    background-color: white;
    z-index: 21;
}

.hero__img {
    position: absolute;
    height: calc(100% - var(--height-header));
    max-width: calc(50% - 20px);
    right: 0;
    top: var(--height-header);
    z-index: 0;
}

.hero__img_mobile {
    display: none;
}

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

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

.hero__announce h1,
.hero__announce span {
    color: var(--Tokens-Text-Text-Hi-Contrast, #010203);
    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);
    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, #4D565C);
    font-family: "PPNV";
    font-size: 18px;
    font-style: normal;
    font-weight: 375;
    line-height: 24px;
    letter-spacing: 0.36px;

    margin-top: 100px;
    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 {
        min-height: unset;
    }

    .hero__img {
        display: none;
    }

    .hero__img_mobile {
        display: block;
        height: 355px;
        width: 100%;
        object-fit: cover;
    }

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

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

    .hero__announce h1,
    .hero__announce span {
        color: var(--Tokens-Text-Text-Hi-Contrast, #010203);
        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);
        letter-spacing: 0.8px;
        margin-bottom: 60px;
        text-align: center;
        padding-top: 10px;
    }

    .hero__announce p {
        color: var(--Tokens-Text-Text-Mid-Contrast, #4D565C);
        font-family: "PPNV";
        font-size: 16px;
        font-style: normal;
        font-weight: 375;
        line-height: 22px;
        letter-spacing: 0.48px;
        margin-top: 60px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

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