

.benefits{
    width: 100%;
    height: 500px;
}

.benefits h2{
    font-size: 4rem;
    text-align: center;
    padding-top: 5rem;
    color: var(--secondary-color);
}

.benefit-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.box{
    width: 250px;
    height: 220px;
    background: #ffffff;
    box-shadow: 1px 1px 5px #707070b1;
    margin: 7rem 3rem 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-align: center;
    transition: all 1s;
}

.box img{
    width: 90px;
}

.box h3{
    font-size: 2rem;
    margin: 1rem 0rem 2rem;
}

.box p{
    font-size: 1.5rem;
}

.box:hover{
    transform: scale(1.1);
}

@media (max-width: 600px){
    .benefits h2 {
        font-size: 2.5rem;
        padding-top: 3rem;
    }

    .box{
        margin: 3rem 3rem 1rem;
    }
}