.header-hero__wrapper {
    background-image: url("https://img.slimivex.com/home/slimivex_bg_homepage_mobile.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero {
    padding: 300px 16px 80px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1182px;
    margin: 0 auto;
}

.hero-right-part {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.hero-title {
    font-weight: 700;
    font-size: 34px;
    line-height: 42px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.hero-text {
    font-weight: 450;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.hero-benefits {
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.hero-benefits-item-icon {
    width: 26px;
    height: auto;
}

.hero-benefits-item {
    display: flex;
    flex-direction: column;
    gap: 11px;
    align-items: center;
    justify-content: center;
}

.hero-benefits-item-text {
    font-weight: 450;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
}

.try-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    height: 47px;
    font-weight: 450;
    font-size: 18px;
    line-height: 100%;
    color: #FFFFFF;
    background-color: #F6887B;
    border-radius: 24px;
    margin: 0 auto;
    transition: background-color 0.3s ease;
}

.try-button:hover {
    background-color: #E06A5F;
}

.hero-left-part {
    display: none;
}

@media (min-width: 1024px) {

    .header-hero__wrapper {
        background-image: url("https://img.slimivex.com/home/slimivex_bg_homepage_desktop.webp");
    }

    .hero {
        padding: 120px 24px 128px;
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
    }

    .hero-left-part {
        display: flex;
        position: relative;
    }

    .hero-right-part {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .hero-product-wrapper {
        height: 484px;
    }

    .hero-product-image {
        width: 550px;
        height: auto;
        transform: translateY(50px) translateX(-65px);
    }

    .hero-title {
        font-size: 50px;
        line-height: 58px;
        text-align: left;
        margin-bottom: 19px;
    }

    .hero-text {
        font-size: 20px;
        line-height: 27px;
        text-align: left;
        margin-bottom: 26px;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 13px;
        align-items: flex-start;
    }

    .hero-benefits-item {
        flex-direction: row;
        gap: 10px;
    }

    .hero-benefits-item-text {
        font-size: 18px;
        line-height: 27px;
    }

    .try-button {
        margin: 0;
    }

    .users-reports {
        position: absolute;
        top: 24%;
        right: 0;
        background-color: rgba(255, 255, 255, 0.7);
        border-top-right-radius: 20px;
        border-top-left-radius: 20px;
        border-bottom-right-radius: 20px;
        padding: 22px 25px 18px;
        max-width: 330px;
    }

    .users-reports-rating {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1px;
        margin-bottom: 10px;
    }

    .users-reports-rating-star {
        width: 22px;
        height: auto;
    }

    .users-reports-text {
        font-weight: 450;
        font-size: 18px;
        line-height: 25px;
        text-align: center;
        color: var(--color-primary);
        margin-bottom: 7px;
    }

    .users-reports-link {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 4px;
        font-weight: 450;
        font-size: 14px;
        line-height: 25px;
        text-align: center;
        color: var(--color-primary);
    }

    .more-reviews-block {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .users-reports-link-arrow {
        width: 17px;
        height: auto;
    }
}