/*!
 * Copyright mingle
 */
 
 .serviceList {
     width: 960px;
     margin-top: 30px;
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
}

.serviceList li {
    width: 300px;
    padding-bottom: 80px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
    display: block;
    background: #FFF;
    position: relative;
    margin: 0 20px 30px 0;
    box-sizing: content-box;
}

.serviceList li a {display: block; text-decoration: none;}
.serviceList li img {padding-bottom: 30px;}
#main .serviceList li p {margin: 0 15px;}
.serviceList li h3 {margin: 5px 15px 0;}
.serviceList p.serviceOS {
    background: #000;
    color: #FFF;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 5px;
}

@media screen and (max-width: 750px) {
    .serviceList {width: 94vw; display: block; margin-top: 5vw;}
    .serviceList li {width: 53.33333vw; margin: 0 auto 5vw;}
    .serviceList li img {width: 100%; height: auto;}
}