@charset "utf-8";
/* CSS Document */
.innerback{
	background:url(../img/innerback.jpg) no-repeat top/cover;
}
.serviceBox{
    z-index: 1;
    position: relative;
	
}
.serviceBox .service-content{
    padding: 20px;
    background: #fff;
    border: 2px solid #000;
    text-align: center;
    position: relative;
	height:280px;
}
.serviceBox .service-content:after{
    content: "";
    width: 100%;
    height: 100%;
    background: #01385e;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: -1;
    transition: all 0.5s ease 0s;
}
.serviceBox:hover .service-content:after{
    top: 0;
    left: 0;
}
.serviceBox .service-icon{
    display: inline-block;
    font-size: 50px;
    color: #01385e;
    margin-bottom: 20px;
    transition: all 0.5s ease 0s;
}
.serviceBox:hover .service-icon{ transform: rotateY(180deg); }
.serviceBox .title{
    font-size: 20px;
    font-weight: 600;
    color: #474747;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}
.serviceBox .description{
    font-size: 15px;
    color: #777;
    line-height: 25px;
    margin-bottom: 0;
	text-align:left;
}
@media only screen and (max-width:990px){
    .serviceBox{ margin-bottom: 30px; }
}