/* Example CSS file */ 
.service-image {
    height: 600px;
    object-fit: cover;
}

@media screen and (max-width: 600px) {
    .service-image {
        height: 300px;
        object-fit: cover;
    }
}