.hero {
    /* background: #49AED3; */
    /* background: url('/images/hero_background.png') no-repeat center / cover #17191a; */
    background: linear-gradient(-102deg,
            rgba(13, 13, 13, 0.5) 0%,

            rgba(45, 44, 44, 0.5) 46%,

            rgba(13, 13, 13, 0.5) 60%), linear-gradient(20deg,

            #0E0E0E 0%,

            #5A5A5A 35%,

            #060606 100%);
    min-height: calc(100vh);
    padding-top: 90px;
    /* или любая ширина */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 1280px;
    margin: 0 auto;
    border-radius: 10px;
}

.hero__image {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 640px;
    height: calc(100vh - 90px);
    background: url('/images/hero_image.svg') no-repeat center / contain;
    z-index: 1;
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 200px;
    /* На всю ширину контейнера */
    text-align: center;
}

.hero__title {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero__tagline {
    font-size: 24px;
    color: #fff;
    font-weight: 400;
    line-height: 1.4;
}

@media (max-width: 769px) {
    .hero {
        width: 100%;
        border-radius: 0;
        background: linear-gradient(-102deg,
                rgba(13, 13, 13, 0.5) 0%,

                rgba(45, 44, 44, 0.5) 46%,

                rgba(13, 13, 13, 0.5) 60%), linear-gradient(20deg,

                #0E0E0E 0%,

                #5A5A5A 35%,

                #060606 100%);

        padding-top: 40px;
        min-height: auto;
    }

    .hero__inner {
        display: flex;
        justify-content: center;
    }

    .hero__image {

        margin-top: -20px;
        background: url('/images/hero_image_mob.svg') no-repeat center / contain;
        width: 85%;
        height: 100px;
    }

    .hero__title {
        font-size: 28px;

    }
}