/*=========================
FEATURES
=========================*/

.features{

    background:#010101;

}

.features-grid{
    margin-top:90px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.feature-card{

    background:#111111;

    padding:35px 25px;

    border-radius:15px;

    text-align:center;

    transition:.3s;

}

.feature-card:hover{

    transform:translateY(-8px);

    border-bottom:4px solid #C59B67;

}

.feature-icon{

    width:70px;

    height:70px;

    margin:auto;

    margin-bottom:20px;

    border-radius:50%;

    background:#C59B67;

    display:flex;

    justify-content:center;

    align-items:center;

}

.feature-icon i{

    font-size:30px;

    color:#010101;

}

.feature-card h3{

    margin-bottom:15px;
    color:#A8A8A8;

}

.feature-card p{

    color:#A8A8A8;

    line-height:1.7;

}