.serviceBox{ text-align: center; }
.serviceBox .service-icon{
    display: inline-block;
    width: 150px;
    height: 150px;
    line-height: 150px;
    border-radius: 50%;
    background: #1a9fab;
    font-size: 40px;
    color: #fff;
    margin-bottom: 50px;
    position: relative;
}
.serviceBox .service-icon:before{
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
    border: 5px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover .service-icon:before{ transform: rotate(180deg); }
.serviceBox .service-icon:after{
    content: "";
    width: 2px;
    height: 30px;
    background: #1a9fab;
    margin: 0 auto;
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
}
.serviceBox .title{
    font-size: 20px;
    font-weight: 600;
    color: #072458;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}
.serviceBox .description{
    font-size: 15px;
    color: #6f6f6f;
    line-height: 27px;
    letter-spacing: 1px;
    margin: 10px 0 0 0;
}
.serviceBox .read-more{
    display: inline-block;
    padding: 8px 22px;
    background: #1a9fab;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    border-radius: 9px;
	margin-top: 10px;
}
.serviceBox:hover .read-more{
    background: #1a9fab;
}
@media only screen and (max-width:990px){
    .serviceBox{ margin-bottom: 30px; }
}