.capabilities-title {
    text-align: center;
    padding-bottom: 40px;
}
.services-features {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.services-features-box {
    border: 1px solid #F0F0F0;
    box-shadow: 0px 0px 16px 0px #0000000F;
    padding: 20px;
    width: 48.4%;
    position: relative;
    border-radius: 4px;
}
.services-features-img {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 51.5%;
    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::after {
    content: "";
    display: block;
    width: 143px;
    height: 3px;
    background: #1A94CF;
    margin: 20px 0;
}
.services-features-box ul li strong {
    color: #000;
}

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

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

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

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