.services{
    display: grid;
    justify-content: space-between;
}

.service{
    color: #121212;
    position: relative;
    transition: .2s;
}

.service:not(.active){
    text-decoration: none;
    color: #676767;
}

.service.active:hover{
    transform: scale(1.1, 1.1);
}

.service:last-child{
    margin-right: 0;
}

.service .title{
    text-align: center;
}

.service .image{
    width: 310px;
    height: 260px;
}

.service .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* MOBILE */
@media screen and (max-width: 743px){
    .services{
        display: flex;
        flex-flow: column;
    }

    .service{
        margin-bottom: 30px;
    }

    .service .title{
        margin-top: 20px;
    }
}

/* TABLET */
@media screen and (min-width: 744px) and (max-width: 1349px) {
    .services{
        grid-template-columns: repeat(2, 310px);
        row-gap: 50px;
    }

    .service .title{
        margin-top: 30px;
    }
}

/* DESKTOP */
@media screen and (min-width: 1350px) {
    .services{
        grid-template-columns: repeat(4, 310px);
    }

    .service .title{
        margin-top: 30px;
    }
}