.services-title {
    text-align: center;
    padding-bottom: 40px;
}
.services-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.services-features-box {
    border: 1px solid #F0F0F0;
    box-shadow: 0px 0px 16px 0px #0000000F;
    padding: 20px;
    width: 32.2%;
    position: relative;
    border-radius: 4px;
}
.services-features-img {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 55.3%;
    overflow: hidden;
}
.services-features-img img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    transition: .5s ease 0s;
}
.services-features-box:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.15);
}
.services-features-box h4 {
    margin-bottom: 10px;
}

@media only screen and (max-width: 1399px){
    .services-features-box {
        width: 32%;
    }
}

@media only screen and (max-width: 1199px){
    .services-features-box {
        width: 31.8%;
    }
}

@media only screen and (max-width: 991px){
    .services-features-box {
        width: 48.5%;
    }
}

@media only screen and (max-width: 767px){
    .services-features-box {
        width: 100%;
    }
}