﻿.serviceBox{ margin-top: 10px; }
.serviceBox .title{
    font-size: 20px;
    color: #5054a2;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 20px 0;
}
.serviceBox .service-content {
    padding: 25px 20px 25px 50px;
    border-top: 2px solid #eee;
    border-right: 2px solid #eee;
    position: relative;
    transition: all 0.3s ease 0s;
    border-top-color: #99CCFF;
    border-right-color: #99CCFF;
}
.serviceBox:hover .service-content {
    border-top-color: #6699FF;
    border-right-color: #6699FF;
}
.serviceBox .service-content:before {
    content: "";
    width: 0;
    height: 2px;
    background: #6699FF;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover .service-content:before {
    width: 50%;
    background: #6699FF;
}
.serviceBox .description{
    font-size: 14px;
    color: #8b8a8a;
    line-height: 25px;
    margin: 0;
}
.serviceBox .service-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    font-size: 25px;
    color: #a6a6a6;
    border: 1px solid #eee;
    position: absolute;
    top: -25px;
    left: 0;
    transition: all 0.3s ease 0s;
    background-image: url('../img/book50.jpg');
}
.serviceBox:hover .service-icon {
    border-color: #FF6600;
    color: #FF9966;
}
@media only screen and (max-width:990px){
    .serviceBox{ margin-bottom: 30px; }
}