
        .serviceBox{
    font-family: 'Titillium Web', sans-serif;
    text-align: center;
    padding: 10px 15px;
    box-shadow: 0px -3px 2px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.serviceBox:before{
    content: "";
    background: #16a085;
    width: 80px;
    height: 15px;
    border-radius: 15px 15px 0 0;
    transform: translateX(-50%);
    position: absolute;
    top: -15px;
    left: 50%;
}
.serviceBox .service-icon{
    color: #1abc9c;
    background: #fff;
    font-size: 50px;
    line-height: 110px;
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 10px solid #1abc9c;
    position: relative;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover .service-icon{ box-shadow: 0 0 15px rgba(0,0,0,0.2) inset; }
.serviceBox .service-icon i{ transition: all 0.3s ease 0s; }
.serviceBox:hover .service-icon i{
    text-shadow: 0 0 2px #000;
    transform: rotateX(360deg) rotateY(360deg);
}
.serviceBox .service-icon:before{
    content: "";
    background: #1abc9c;
    width: 55px;
    height: 35px;
    border-radius: 0 0 15px 15px;
    transform: translateX(-50%);
    position: absolute;
    top: -35px;
    left: 50%;
}
.serviceBox .title{
    color: #16a085;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
}
.serviceBox .description{
    font-size: 15px;
    line-height: 28px;
}
.serviceBox.purple:before{ background: #8e44ad; }
.serviceBox.purple .service-icon{
    color: #9b59b6;
    border-color: #9b59b6;
}
.serviceBox.purple .service-icon:before{ background: #9b59b6; }
.serviceBox.purple .title{ color: #8e44ad; }
.serviceBox.blue:before{ background: #2980b9; }
.serviceBox.blue .service-icon{
    color: #3498db;
    border-color: #3498db;
}
.serviceBox.blue .service-icon:before{ background: #3498db; }
.serviceBox.blue .title{ color: #2980b9; }
.serviceBox.red:before{ background: #c0392b; }
.serviceBox.red .service-icon{
    color: #e74c3c;
    border-color: #e74c3c;
}
.serviceBox.red .service-icon:before{ background: #e74c3c; }
.serviceBox.red .title{ color: #c0392b; }
@media only screen and (max-width:990px){
    .serviceBox{ margin: 0 0 30px; }
}
