#services-block {
    padding: 15px 0 50px 0;
}

.service-box {
    background: #381b48;
    border-radius: 8px;
    text-align: center;
    padding: 30px 20px;
    min-height: 210px;
    display: block;
    position: relative;
    margin-bottom: 15px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-backface-visibility: hidden;
}

.row .col-md-4x {
    width: 20%;
}

.service-box:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}


.service-box-icon > img {
    max-height: 90px;
    width: auto;
    margin: 0 auto;
    -webkit-transition: all 800ms ease-in-out;
    -o-transition: all 800ms ease-in-out;
    transition: all 800ms ease-in-out;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}
/*
.service-box:hover img {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
}*/

.service-box h4 {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}

.service-box-link {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

@media(max-width: 768px){
    #services-block {
        padding: 15px 0 0 0;
    }
    .service-box {
        padding: 15px;
        min-height: 120px;
    }
    .service-box-icon > img {
        max-height: 50px;
    }
    .service-box h4 {
        font-size: 13px;
    }
    .row .col-md-4x {
        width: 50%;
    }
}