.hero {
    padding: 0;
    overflow-x: clip;
    overflow-y: visible;
}
.hero__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /*padding-top: 67px;*/
    padding-bottom: 0;
}
.hero__content {
    width: 43.3%;
    flex-shrink: 0;
    padding-top: 67px;
}
.hero__title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.22;
    text-transform: uppercase;
    color: var(--blue);
}
.hero__title span {
    display: block;
}
.hero__title--accent {
    color: var(--orange);
}
.hero__text {
    font-size: 22px;
    font-weight: 400;
    color: var(--blue);
    margin-top: 25px;
    line-height: normal;
}
.hero__buttons {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}
.hero__buttons .btn {
    padding: 20px 30px;
    font-size: 20px;
    line-height: 18px;
}
.hero__image {
    position: relative;
    width: 52.2%;
    height: 590px;
    flex-shrink: 0;
}
.hero__image-bg,
.hero__image-front {
    position: absolute;
    inset: 0;
    border-radius: 30px;
    overflow: hidden;
}
.hero__image-bg {
    top: 71px;
}
.hero__image-bg img {
    width: 100%;
    height: 230%;
    object-fit: cover;
    position: absolute;
    top: -61%;
    left: 0;
}
.hero__image-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
@media (max-width: 1440px) {
    .hero__title {
        font-size: 42px;
    }
    .hero__image {
        height: 450px;
    }
    .hero__buttons .btn {
        padding: 16px 24px;
        font-size: 18px;
    }
}
@media (max-width: 1200px) {
    .hero__title {
        font-size: 36px;
    }
    .hero__text {
        font-size: 18px;
    }
}
@media (max-width: 1024px) {
    .hero__inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding-top: 30px;
    }
    .hero__content {
        width: 100%;
        max-width: 100%;
        padding-top: 0;
    }
    .hero__buttons {
        justify-content: center;
    }
    .hero__image {
        width: 100%;
        height: 300px;
    }
    .hero__image-bg {
        top: 0;
    }
    .hero__image-front img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
@media (max-width: 768px) {
    .hero__inner {
        gap: 20px;
        padding-top: 20px;
    }
    .hero__title {
        font-size: 22px;
        line-height: 122%;
        text-align: left;
    }
    .hero__text {
        font-size: 16px;
        line-height: normal;
        margin-top: 15px;
    }
    .hero__buttons {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    .hero__buttons .btn {
        padding: 13.5px 30px;
        font-size: 16px;
        justify-content: center;
    }
    .hero__image {
        height: 213px;
    }
    .hero__image-bg {
        top: auto;
        bottom: 0;
        height: 88%;
    }
}
@media (max-width: 480px) {
    .hero__title {
        font-size: 22px;
    }
    .hero__buttons .btn {
        font-size: 16px;
    }
}
