.block-hero {
    padding: 1.375rem clamp(1rem, 0.056rem + 4.1045vw, 3.75rem);
    padding-bottom: clamp(2rem, 4vw + 1rem, 7.5rem);
    /* responsive up to 120px */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 64.25rem;
    color: var(--white);
    display: flex;
    align-items: flex-end;
    line-height: 1.2;
    position: relative;
    margin-bottom: 150px;
}

.block-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    background: linear-gradient(35deg, rgba(0, 0, 0, 1) 34%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.7;
    z-index: 0;
}

.block-hero__wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    z-index: 1;
}

.block-hero__header h1 {
    max-width: 700px;
    font-size: 60px;
    margin-bottom: 80px;
}

.block-hero__header p {
    max-width: 780px;
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
    .block-hero {
        margin-bottom: 50px;
    }

    .block-hero__header h1 {
        font-size: 40px;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .block-hero__header p {
        font-size: 24px;
        max-width: 100%;
    }
}