.service {
    width: 25%;
}
.service img {
    height: 25vmin;
}

.service-data {
    align-self: flex-start;
    justify-content: center;
    margin: 0 2vmin;
    display: flex;
    flex-wrap: wrap;
}
.service-data .title {
    width: 100%;
}
.service-data video, .service-data img {
    width: 30%;
    object-fit:cover;
    aspect-ratio: 3/4;
}
.service-data .description {
    width: 70%;
    padding-left: 4vmin;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-info {
    margin-top: 3vmin;
}

@media (max-aspect-ratio: 4/3) {

    .service {
        width: calc(50% - 4vmin);
    }

    .service-data img, .service-data video {
        margin-bottom: 6vmin;
        width: 90%;
        height: calc(90vw / 2);
        object-position: center center;
    }
    .service-data .description {
        width: 90%;
        padding-left: 0;
    }
    #services-maintenance .service-data video {
        object-position: center 20%;
    }

    #services-renting .service-data img {
        object-position: center 20%;
    }
    #services-sales .service-data img {
        object-position: center 65%;
    }
}