.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 20px 60px;
    width: 32.2%;
    position: relative;
    border-radius: 4px;
}
.services-features-img {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 57%;
    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);
}
.our-services-read-more {
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.border-read-more {
    color: #1A94CF !important;
    display: inline-block;
    font-size: 14px;
    line-height: 100%;
    text-decoration: underline;
    text-transform: capitalize;
    font-weight: 700;
    transition: .5s;
}
.services-features-box span {
    font-size: 12px;
    color: #1A94CF;
    font-weight: 700;
    padding-bottom: 10px;
    display: inline-block;
}
.services-features-box h4 {
    line-height: 30px;
    margin-bottom: 10px;
}



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

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

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


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