.image-benefits {
    padding: 4rem 0;
}

.image-benefits .image-benefits__benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-benefits .image-benefits__benefit-image {
    height: 300px;
    width: 100%;
}

.image-benefits .benefit-text {
    color: var(--color-grass);
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

.image-benefits__repeater-container {
    display: flex;
    padding: 0 2rem;
    justify-content: center;
    gap: 4rem;
}

.image-benefits__benefit {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: calc(25% - 2rem);
    align-items: center;
}

.image-benefits__container .container>h2 {
    text-align: center;
    max-width: 75%;
    margin: auto;
    margin-bottom: 2rem;
}

@media screen and (max-width: 850px) {
    .image-benefits__repeater-container {
        flex-direction: column;
        align-items: center;
    }

    .image-benefits .image-benefits__benefit {
        width: calc(100% - 2rem);
    }
}