@charset "utf-8";
/* CSS Document */

.serviceBox{
    padding-left: 30px;
    position: relative;
}
.serviceBox:before{
    content: "";
    width: 60px;
    height: 60px;
    background: #02b2c8;
    position: absolute;
    top: 20px;
    left: 5px;
    z-index: 1;
}
.serviceBox .service-icon{
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: #00bcd4;
    font-size: 30px;
    color: #fff;
    position: absolute;
    top: 15px;
    left: 0;
    z-index: 1;
}
.serviceBox .service-content{
    padding: 30px;
    border-width: 1px;
    border-style: solid;
    border-color: #d5d5d5 #d5d5d5 #d5d5d5;
    position: relative;
    transition: all 0.4s ease-in-out 0s;
}
.serviceBox:hover .service-content{
    background: #FEFEFE;
    border-color: #00bcd4;
}
.serviceBox .title{
    font-family: 'Poppins', sans-serif;
	font-size: 16px;
    font-weight: 600;
    color: #333;
    padding-left: 30px;
    margin-bottom: 35px;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out 0s;
}
.serviceBox:hover .title{
    color: #353536;
}
.serviceBox .description{
    font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 300;
    color: #333;
    margin: 0;
}
.serviceBox:hover .description{
    color: #353536;
}
.serviceBox .read-more{
    display: inline-block;
    width: 32px;
    height: 30px;
    line-height: 30px;
    background: #00bcd4;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    position: absolute;
    bottom: 0;
    right: -1px;
    text-align: center;
	text-decoration: none;
    transition: all 0.4s ease-in-out 0s;
}
.serviceBox .read-more:hover{
    background: #02b2c8;
	text-decoration: none;
}
@media only screen and (max-width:990px){
    .serviceBox{ margin-bottom: 50px; }
}
