/* ==========================================
   HERO
========================================== */

.hero {

    padding: 50px 0 40px;

    background: #ffffff;
}

/* ---------- Контейнер ---------- */

.hero-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;

}

/* ---------- Текст ---------- */

.hero-text {

    flex: 0 0 48%;

}

.hero-label {

    display: inline-block;

    padding: 8px 16px;

    background: #e8f1ff;

    color: var(--color-primary);

    border-radius: 30px;

    font-size: 14px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .5px;

}

.hero-title {

    margin: 24px 0;

    font-size: 52px;

    line-height: 1.15;

    color: var(--color-primary-dark);

}

.hero-description {

    max-width: 640px;

    font-size: 18px;

    line-height: 1.8;

    color: var(--color-text-light);

}

/* ---------- Иллюстрация ---------- */

.hero-image {

    flex: 0 0 52%;

    display: flex;

    justify-content: center;

    align-items: center;

}

.hero-image img {

    width: 100%;

    max-width: 560px;

    height: auto;

}

/* ---------- Планшеты ---------- */

@media (max-width: 992px) {

    .hero {

        padding: 40px 0;

    }

    .hero-content {

        flex-direction: column;

        text-align: center;

    }

    .hero-text,
    .hero-image {

        flex: 1 1 100%;

    }

    .hero-description {

        margin: 0 auto;

    }

    .hero-title {

        font-size: 40px;

    }

}

/* ---------- Телефоны ---------- */

@media (max-width: 640px) {

    .hero {

        padding: 30px 0;

    }

    .hero-title {

        font-size: 32px;

    }

    .hero-description {

        font-size: 16px;

        line-height: 1.7;

    }

}