/*==================================
WHY US
==================================*/

.why-us{
    padding:100px 0;
    background:#ffffff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.why-card{
    background:#fff;
    border-radius:15px;
    padding:35px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-icon{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:25px;
    background:#eef7f2;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.why-icon i{
    font-size:38px;
    color:#0b4d2d;
}

.why-card h3{
    color:#0b4d2d;
    margin-bottom:15px;
    font-size:24px;
}

.why-card p{
    color:#666;
    line-height:1.8;
}

@media(max-width:992px){

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.why-grid{
    grid-template-columns:1fr;
}

}