
.hero-section  {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
    text-align: center;
}

.hero-section-inner {
    max-width: 80%;
    margin: 0 auto
}

.hero-text-inner {
    font-size: 18px;
}

.hero-benefits {
    margin-top: 50px;
    display: flex;
    column-gap: 60px;
    row-gap: 30px;
    justify-content: center;
    align-items: center;
}

.hero-benefits .benefit {
    display: flex;
    gap: 15px;
    align-items: center;
    font-weight: 500;
}

.hero-benefits .image {
    width: 30px;
    min-width: 30px;
}

.hero-benefits .image img {
    max-width: 100%;
    height: auto;
}


@media only screen and (max-width: 991px) {
    .hero-section {
        padding: 50px 0;
    }

    .hero-benefits {
        gap: 20px;
        flex-wrap: wrap;
    }

}

@media only screen and (max-width: 767px) {
    .hero-section-inner {
        max-width: 100%;
    }

    .hero-benefits {
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-benefits > div {
        margin-bottom: 15px;
    }

    .hero-benefits > div:last-of-type {
        margin-bottom: 0;
    }
}