:root{ --main-color: #F7699F; }
.serviceBox{
    color: var(--main-color);
    font-family: 'Roboto', sans-serif;
    text-align: center;
    padding: 45px 25px;
    position: relative;
    z-index: 1;
}
.serviceBox:before,
.serviceBox:after{
    content: "";
    position: absolute;
    z-index: -1;
}
.serviceBox:before{
    background: var(--main-color);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: polygon(0 15%, 15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%);
}
.serviceBox:after{
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
}
.serviceBox .service-icon{
    font-size: 45px;
    line-height: 45px;
    margin: 0px auto 15px;
}
.serviceBox .title{
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px;
}
.serviceBox .description{
    color: #999;
    font-size: 15px;
    text-align: justify;
    line-height: 25px;
    margin: 0;
}
.serviceBox.yellow{ --main-color: #fa8f2b; }
.serviceBox.green{ --main-color: #0497A9; }
.serviceBox.purple{ --main-color: #AF6AC3; }
@media only screen and (max-width: 1199px){
    .serviceBox{ margin: 0 0 40px; }
}