.serviceBox{
    text-align: center;
	margin:0 8px;
	background:rgba(255,255,255,0.75);
	padding:20px 10px 10px 10px;
	border-radius:5px;
}
.owl-item .serviceBox .service-icon{
    width:100px;
    height:100px;
    line-height: 100px;
    font-size: 50px;
    border: 2px solid #727cb6;
    border-radius: 50%;
    margin:0 auto 25px;
    color:#727cb6;
}
.owl-item:nth-child(4n+2) .serviceBox .service-icon{
    border: 2px solid #008b8b;
    color: #008b8b;
}
.owl-item:nth-child(4n+3) .serviceBox .service-icon{
    border: 1px solid #e67e22;
    color:#e67e22;
}
.owl-item:nth-child(4n+4) .serviceBox .service-icon{
    border: 2px solid #ed687c;
    color: #ed687c;
}
.owl-item .serviceBox .service-icon > i{
    transition: all 0.3s ease 0s;
}
.owl-item .serviceBox:hover .service-icon {
	border-width:3px;
}
.owl-item .serviceBox:hover .service-icon > i{
    transform:scale(0.8);
    transition: all 0.3s ease 0s;
}
.owl-item .serviceBox .service-content h3{
    font-size: 22px;
    font-weight:600;
    margin-bottom: 20px;
    color:#727cb6;
}
.owl-item:nth-child(4n+2) .serviceBox .service-content h3{
    color: #008b8b;
}
.owl-item:nth-child(4n+3) .serviceBox .service-content h3{
    color:#e67e22;
}
.owl-item:nth-child(4n+4) .serviceBox .service-content h3{
    color: #ed687c;
}
.owl-item .serviceBox .service-content p{
    color: hsl(0, 0%, 38%);
    font-size: 14px;
    line-height: 24px;
}