@charset "utf-8";
/* CSS Document */

.serviceBox{
	background-color:#fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 30px 38px 30px 98px;
    position: relative;
    transition: all 0.5s ease 0s;
}
.serviceBox:hover{
    border-color: #ed1c24;
}
.serviceBox:before,
.serviceBox:after{
    content: "";
    display: block;
    width: 50px;
    height: 5px;
    background: #ed1c24;
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease 0s;
}
.serviceBox:before{
    top: -3px;
}
.serviceBox:after{
    bottom: -3px;
}
.serviceBox:hover:before,
.serviceBox:hover:after{
    left: 40px;
    opacity: 1;
}
.serviceBox .service-icon{
    display: inline-block;
    position: absolute;
    top: 33%;
    left: 23px;
    font-size: 45px;
    color: #f7931e;
    opacity: 0.6;
    transition: all 0.5s ease-in 0s;
}
.serviceBox:hover .service-icon{
    opacity: 1;
}
.serviceBox .title{
	font-family: "Nunito", sans-serif;
    font-size: 18px;
    font-weight: normal;
	text-align:left;
    color: #7a7a7a;
    margin-bottom: 15px;
}
.serviceBox .description{
	font-family: "Roboto", sans-serif;
    font-size: 14px;
    color: #383838;
    line-height: 20px;
}
@media only screen and (max-width: 990px){
    .serviceBox{ margin-bottom: 30px; }
}