.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    height: clamp(6.125rem, 5.3003rem + 3.0831vw, 9rem);
}

.benefit-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: .3s;
}

.benefit-link {
    display: block;
    color: #fff;
    text-decoration: none;
}

.benefit-link:hover {
    color: #fff;
}

.benefit-link:hover .benefit-icon img {
    transform: translateY(-10px);
}

@media (max-width: 767px) {
    .section-benefit .h1,
    .section-benefit h1 {
        font-size: 24px;
    }
    .benefit-link {
        font-size: 18px;
    }
    .benefit-icon {height: 100%;}
}