/**
 * 
 * 
 * 
 */

.benefits__grid {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
    margin-top: 50px;
}

.benefits__item {
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    padding: 100px 30px 30px;
    position: relative;
    background: #fff;
}

.benefits__item-icon {
    top: 20px;
    height: 60px;
    display: flex;
    align-items: center;
}

.benefits__item-text {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    color: var(--base-color);
}

.benefits__item-icon img {
    max-width: 100%;
    max-height: 100%;
}

@media (min-width: 600px) {

    .benefits__grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (min-width: 1200px) {

    .benefits__grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        margin-bottom: 50px;
        margin-top: 160px;
    }

    .benefits__item-icon {
        top: -50px;
        height: 122px;
        display: flex;
        align-items: center;
    }

    .benefits__item-icon img {
        max-width: 133px;
        max-height: 122px;
    }

}