/*=========================
========Service CSS========
===========================*/
.service-icon {
    display: inline-block;
    color: #2c50ff;
    font-size: 60px;
    line-height: 75px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#service .col-md-3:hover .service-icon {
    -moz-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -o-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    color: #ff0000;
}

.service-text h4 {
    margin-bottom: 15px;
    height: 45px;
    font-weight: bold;
    color: #c52127;
}

.service-text {
    margin-bottom: 30px;
}
.service-icon img {
    width: 86px;
}

.service-text p {
    margin-bottom: 15px;
    max-height: 70px;
    overflow: hidden;
}
@media screen and (max-width: 992px){
    .service-text p {
        max-height: 45px;
    }
}