.bt-why{
padding:90px 0;
background:#fff;
}

.bt-why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.bt-why-card{
background:#F8FAFC;
padding:35px;
text-align:center;
border-radius:18px;
transition:.3s;
}

.bt-why-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.bt-why-icon{
font-size:50px;
margin-bottom:20px;
}

.bt-why-card h3{
margin-bottom:15px;
}

.bt-why-card p{
color:#64748B;
}

@media(max-width:991px){

.bt-why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.bt-why{

padding:60px 0;

}

.bt-why-grid{

grid-template-columns:1fr;

}

}