.hero__bg {
    height: 50.8rem;
}

.hero__content-block {
    display: flex;
    flex-direction: column;
    padding: 8rem 0;
    max-width: 52.2rem;
}

.hero__title {
    margin-bottom: 2.4rem;
}

.hero__title span {
    color: var(--primary);
}

.hero__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    margin-top: 3.2rem;
}

.hero-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}

.hero-advantage {
    font-size: 1.6rem;
    line-height: 120%;
    padding-left: 1.2rem;
    border-left: 2px solid var(--primary);
}

@media (min-width: 768px) and (max-width: 1280px) {

}

@media (max-width: 767px) {
    .hero__bg {
        height: 24rem;
    }

    .hero__content {
        background: linear-gradient(90deg, #EBEEF1 0%, rgba(235, 238, 241, 0.6875) 61.06%, rgba(235, 238, 241, 0.494318) 85.58%, rgba(235, 238, 241, 0) 100%);
    }

    .hero__content-block {
        max-width: unset;
        padding: 3.2rem 0;
    }

    .hero__title br {
        display: none;
    }

    .hero__actions {
        flex-direction: column;
        margin-top: 2.4rem;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero-advantages {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-advantage:last-child {
        grid-column: -1 / 1;
    }

    .hero-advantage:last-child br {
        display: none;
    }
}