.akm-why{

    background:#151515;
    padding:110px 0;

}

.akm-why-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.akm-why-card{

    background:#1d1d1d;
    border:1px solid rgba(255,255,255,.06);
    border-radius:18px;
    padding:45px 35px;
    text-align:center;
    transition:.35s;

}

.akm-why-card:hover{

    transform:translateY(-8px);
    border-color:#D4AF37;
    box-shadow:0 18px 45px rgba(0,0,0,.35);

}

.akm-why-icon{

    font-size:42px;
    margin-bottom:22px;

}

.akm-why-card h3{

    color:#fff;
    font-size:26px;
    margin-bottom:14px;

}

.akm-why-card p{

    color:#bfbfbf;
    font-size:17px;
    line-height:1.7;

}

@media(max-width:1100px){

.akm-why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.akm-why{

padding:70px 0;

}

.akm-why-grid{

grid-template-columns:1fr;

}

}