.features{

    position:relative;

    margin-top:-65px;

    z-index:20;

    padding:0 70px 70px;

}

.features-panel{

    max-width:1450px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;

    align-items:center;

    background:rgba(20,20,20,.92);

    backdrop-filter:blur(20px);

    border-radius:28px;

    border:1px solid rgba(255,255,255,.05);

    box-shadow:0 30px 70px rgba(0,0,0,.45);

    overflow:hidden;

}

.feature{

    padding:38px 30px;

    text-align:center;

}

.feature .mud-icon-root{

    width:64px;
    height:64px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#242424;

    color:#D4AF37;

    margin:auto;

    margin-bottom:20px;

    box-shadow:
    0 0 25px rgba(212,175,55,.15);

}

.feature h4{

    color:white;

    font-size:22px;

    margin-bottom:14px;

}

.feature p{

    color:#bdbdbd;

    line-height:1.7;

    font-size:16px;

}

.divider{

    width:1px;

    height:120px;

    background:rgba(255,255,255,.08);

}
@media (max-width:992px){

.features{

    margin-top:40px;

}

.features-panel{

    grid-template-columns:1fr 1fr;

}

.divider{

    display:none;

}

}

@media (max-width:768px){

.features{

    padding:20px;

}

.features-panel{

    grid-template-columns:1fr;

    border-radius:20px;

}

.feature{

    padding:28px 22px;

}

.feature h4{

    font-size:19px;

}

.feature p{

    font-size:15px;

}

}

@media (max-width:480px){

.features{

    margin-top:24px;
    padding:12px;

}

.feature .mud-icon-root{

    width:52px;
    height:52px;

}

}