.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -25px -50px;
}
.feature-item-box {
    width: 20%;
    padding: 0 25px;
    margin-bottom: 50px;
    text-align: center;
}

.feature-item .feature-icon {
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.feature-item .feature-icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.feature-item-box h5 {
    font-weight: 500;
}


@media only screen and (max-width:1399px){
    .feature-item-box {
        width: 20%;
        padding: 0 15px;
        margin-bottom: 30px;
    }
    .features-list {
        margin: 0 -15px -30px;
    }
}
@media only screen and (max-width:1199px){
    .feature-item-box {
        width: 33.33%;
    }
}
@media only screen and (max-width:991px){
   .feature-item-box {
        width: 50%;
    }
}
@media only screen and (max-width:767px){
    .feature-item-box {
        width: 100%;
    }
}