.menu-service{
    display:inline-block;
    height:200px;
    width: 32%;
    margin-bottom:22px;
    box-shadow: 0 0 10px rgb(63 147 209 / 50%);
    border-radius:10px;
    text-align:left;
    position:relative;
    overflow:hidden;
}
.menu-service:after{
    position:absolute;
    left:0;
    top:0;
    z-index:2;
    width:100%;
    content:"";
    transition:0.3s;
    opacity:0.4;
    height:100%;
    background: linear-gradient(to top,#1ac3c6,#1aa5c5);
}
.menu-service img{
    position:absolute;
    left:0;
    top:0;
    object-fit:cover;
    object-position:center;
    width:100%;
    height:100%;
}

.menu-service span{
    position:absolute;
    left:20px;
    bottom:20px;
    color:#fff;
    font-family: "S-Bold";
    z-index:3;
    font-size:20px;
}

.menu-service:hover:after{
    opacity:0.7;
}

@media (max-width: 950px){
    .menu-service{
        width: 48.5%;
    }
}

@media (max-width: 650px){
    .menu-service{
        margin-bottom:15px;
    }
    .menu-service span{
        font-size:18px;
    }
}

@media (max-width: 470px){
    .menu-service{
        width: 100%;
    }
}

.menu_c{
    display:inline-block;
    width: 32%; 
}

.justify-content{
    text-align: justify;
}

.justify-content:after{
    display:inline-block;
    width:100%;
    content:"";
}