.hero-block {
    position: relative;
    margin-top: 90px;
    min-height: 720px;
}

.hero-block .hero__bg-block {
    position: absolute;
    bottom: 0;
    height: 399px;
    background-color: var(--bg-dark);
    z-index: -2;
}

.hero-block .bg-block-left {
    width: 11%;
    left: 0;
    border-radius: 0 10px 10px 0;
}

.hero-block .bg-block-right {
    right: 0;
    width: 45%;
    border-radius: 10px 0 0 10px;
    height: 422px;
}

.hero-block .hero__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 65%;
    padding-top: 60px;
}

.hero-block .hero__heading {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-block .clients__holder {
    display: flex;
}

.hero-block .client__photo {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    overflow: hidden;
    border: 3px solid var(--head);
}

.hero-block .client__photo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-block .client__photo:not(:first-child) {
    margin-left: -30px;
}

.hero-block .hero__sale {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
}

.hero-block .sale span,
.hero-block .hero__text span {
    display: block;
}

.hero-block .sale-arrow {
    position: absolute;
    bottom: -50%;
    left: 255px;
}

.hero-block .hero__buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-block .hero__btn {
    max-width: 300px;
    width: 100%;
    margin-right: 10px;
}

.hero-block .hero__bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    max-height: 719px;
    max-width: 38%;
    border-radius: 10px 0 0 0;
    overflow: hidden;
    z-index: -2;
    width: 100%;
}

.hero-block .hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width: 1850px) {
    .hero-block .hero__bg {
        max-width: 30%;
    }
}

@media(max-width: 980px) {
    .hero-block .hero__bg {
        display: none;
    }

    .hero-block .hero__content {
        padding-top: 0;
        max-width: 100%;
    }

    .hero-block {
        min-height: unset;
        padding-bottom: 120px;
    }
}

@media(max-width: 621px) {
    .hero-block .sale-arrow {
        bottom: -65%;
        left: 200px;
    }
}

@media(max-width: 570px) {
    .hero-block .hero__buttons {
        flex-direction: column;
        align-items: start;
    }

    .hero-block .separator {
        display: none;
    }

    .hero-block .hero__btn {
        max-width: 100%;
    }

    .hero-block {
        min-height: unset;
        padding-bottom: 60px;
        margin-top: 40px;
    }

    .hero-block .sale-arrow {
        display: none;
    }
}

@media(max-width: 460px) {
    .hero-block .hero__sale {
        flex-direction: column;
        margin-bottom: 10px;
    }

    .hero-block .sale-arrow {
        bottom: -50px;
        left: 38%;
    }

    .hero-block .hero__text span {
        display: inline;
    }
}