.hero {
    display: flex;
    flex-direction: row;
    align-items: center
}

.hero__wrapper {
    display: flex;
    padding-bottom: 100px;
    height: clamp(600px, 100vh, 900px);
    background: url("../assets/images/hero/car-bg_1_5x.webp") 95% 80% no-repeat, url("../assets/images/city-bg.webp") 100% 60% no-repeat;
    background-size: min(60%, calc(100% - 3.3rem * 15.18)), min(65%, calc(100% - 3rem * 15.18))
}

.hero__box-left {
    width: calc(5.2rem * 15.18)
}

.hero__box-right {
    margin-left: auto
}

.hero__description {
    width: 90%;
    margin-inline: auto;
    margin-top: 15px;
    margin-bottom: 55px;
    font-weight: 400;
    font-size: 2rem
}

.hero__interactive-box, .hero__list {
    width: 70%;
    margin-inline: auto
}

.hero__item {
    padding-left: 7px;
    font-size: 1.4rem;
    line-height: 13px;
    margin-bottom: 10px;
    position: relative
}

.hero__item::before {
    position: absolute;
    content: url("../assets/icons/list-icon.svg");
    left: -20px
}

.h1 {
    font-family: var(--title-family);
    font-weight: 700;
    font-size: 5.2rem
}

.hero__title_green {
    color: var(--accent-1)
}

.hero__image {
    max-width: 210px
}

.hero__interactive-box {
    margin-top: 81px
}

@media screen and (max-width: 860px) {
    .hero__wrapper {
        padding-bottom: 40%;
        flex-direction: column-reverse;
        height: auto;
        background: url("../assets/images/hero/car-bg_1_5x.webp") 150% 100% no-repeat, url("../assets/images/city-bg.webp") 110% calc(100% - 50px) no-repeat;
        background-size: 90%, 95%
    }

    .hero__box-right {
        margin-inline: auto;
        margin-bottom: 30px
    }

    .hero__box-left, .hero__interactive-box {
        width: 100%
    }

    .h1 {
        font-size: max(5.5vw, 3rem);
        text-align: center
    }

    .hero__btn {
        width: fit-content;
        display: block;
        margin-inline: auto
    }
}
