.heroBlock {
    position: relative;
    display: flex;
    align-items: flex-start;
    height: 818px;
    padding: 162px 467px 0 80px;
    overflow: hidden;
    box-sizing: border-box;
}

.heroBlock__background {
    position: absolute;
    inset: 0;
    background-color: #18210F;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.heroBlock__background--has-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), var(--hero-block-bg-image);
}

.heroBlock__decoration {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    line-height: 0;
}

.heroBlock__decoration svg {
    display: block;
    height: 100%;
    width: auto;
}

.heroBlock__decoration--left {
    left: 0;
    top: -10%;
    bottom: 0;
    height: auto;
}

.heroBlock__decoration--left svg {
    height: 100%;
    min-height: 100%;
    width: auto;
}

.heroBlock__decoration--right {
    right: 0;
    left: auto;
    top: 50%;
    display: flex;
    justify-content: flex-end;
    max-width: 752px;
    overflow: hidden;
}

.heroBlock__decoration--right svg {
    flex-shrink: 0;
    max-width: none;
}

@media (max-width: 790px) {
    .heroBlock__decoration {
        display: none;
    }
}

.heroBlock__container {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.heroBlock__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.heroBlock__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #B7B656;
    font-family: Satoshi, "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1.96px;
    text-transform: uppercase;
    margin: 0;
}

.heroBlock__label-line {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

.heroBlock__label-line svg {
    display: block;
    width: 28px;
    height: 2px;
}

.heroBlock__label + .heroBlock__title {
    margin-top: 58px;
}

.heroBlock__title {
    color: #FFFFFF;
    font-family: Satoshi, "Montserrat", sans-serif;
    font-size: 88px;
    font-weight: 400;
    line-height: 90%;
    letter-spacing: -0.88px;
    margin: 0;
    max-width: 930px;
}

.heroBlock__description {
    color: rgba(255, 255, 255, 0.75);
    font-family: Satoshi, "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin: 32px 0 0;
    max-width: 584px;    
}

.heroBlock__buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 32px;
    margin-top: 58px;
}

.heroBlock__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 4px;
    font-family: Satoshi, "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.heroBlock__button-arrow {
    display: flex;
    flex-shrink: 0;
}

.heroBlock__button--outline {
    color: #F4F0E8;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.30);
}

.heroBlock__button--outline:hover {
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.10);
}


.heroBlock__button--primary {
    color: #18210F;
    background-color: #B7B656;
}

.heroBlock__button--primary:hover {
    border-radius: 4px;
    background: rgba(183, 182, 86, 0.70);
}





@media (max-width: 1440px) {
    .heroBlock {
        height: auto;
        min-height: 700px;
        padding: 120px 80px 80px;
    }

    .heroBlock__description {
        max-width: 584px;
    }

    .heroBlock__title {
        font-size: 62px;
        letter-spacing: -0.52px;
        max-width: 594px;
    }
}

@media (max-width: 1280px) {
    .heroBlock {
        min-height: 500px;
        padding: 100px 64px 72px;
    }

    .heroBlock__title {
        font-size: 62px;
        letter-spacing: -0.52px;
        max-width: 594px;
    }

    .heroBlock__label + .heroBlock__title {
        margin-top: 40px;
    }

    .heroBlock__buttons {
        margin-top: 40px;
    }
}

@media (max-width: 1044px) {
    .heroBlock__title {
        font-size: 40px;
        letter-spacing: -0.4px;
        max-width: 494px;
    }
}

@media (max-width: 768px) {
    .heroBlock {
        min-height: 480px;
        padding: 96px 24px 64px;
    }

    .heroBlock__title {
        font-size: 40px;
        letter-spacing: -0.4px;
    }

    .heroBlock__description {
        font-size: 16px;
    }

    .heroBlock__label + .heroBlock__title {
        margin-top: 32px;
    }

    .heroBlock__buttons {
        margin-top: 32px;
    }
}

@media (max-width: 650px) and (min-width: 481px) {
    .heroBlock__content {
        max-width: 100%;
    }

    .heroBlock__buttons {
        gap: 16px;
    }

    .heroBlock__button {
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .heroBlock {
        min-height: 420px;
        padding: 88px 20px 56px;
    }

    .heroBlock__title {
        font-size: 32px;
        letter-spacing: -0.32px;
    }

    .heroBlock__buttons {
        flex-direction: column;
        width: 100%;
    }

    .heroBlock__button {
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }
}
