/*================ WHY CHOOSE US ================*/

.why-choose{
    padding:100px 8%;
    background:#fffaf5;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.why-card{
    background:#fff;
    padding:40px 30px;
    border-radius:22px;
    text-align:center;
    border-top:4px solid #D4AF37;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s ease;
}

.why-card i{
    width:80px;
    height:80px;
    line-height:80px;
    font-size:34px;
    color:#D4AF37;
    border-radius:50%;
    background:#fff7e8;
    margin-bottom:25px;
    transition:.4s;
}

.why-card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#222;
}

.why-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

.why-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.why-card:hover i{
    transform:rotate(10deg) scale(1.1);
    background:#D4AF37;
    color:#fff;
}

@media(max-width:992px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .why-grid{
        grid-template-columns:1fr;
    }

}
.why-card:hover{

    transform:translateY(-15px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);

}
.why-card i{

    width:90px;
    height:90px;
    line-height:90px;

    font-size:38px;

}
.why-grid{

    gap:35px;

}