:root{ --main-color: #F09018; }
.serviceBox{
    color: #001a70;
    font-family: inherit;
    text-align: center;
    padding: 5px;
    margin: 0 5px;
    border: 2px solid #000;
    border-top: 2px dashed #001a70;
    border-right: 2px dashed #001a70;
    border-radius: 0;
    position: relative;
    z-index: 1;
}
.serviceBox:before,
.serviceBox:after{
    content: "";
    background: #001a70;
    width: 100px;
    height: 100px;
    border-radius: 0;
    position: absolute;
    top: -6px;
    left: -6px;
    z-index: -2;
}
.serviceBox:after{
    border-radius: 0;
    top: auto;
    bottom: -6px;
    left: auto;
    right: -6px;
}
.serviceBox .service-content{
    min-height: 305px;
    background: #fff;
    padding: 30px 15px 40px;
    border-radius: 0;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.serviceBox .service-icon{
    font-size: 45px;
    line-height: 45px;
    margin: 0 0 20px;
}
.serviceBox .title{
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.serviceBox .description{
    color: black;
    font-size: 15px;
    line-height: 25px;
    margin: 0;
}
.serviceBox.darkred{ --main-color: #b71540; }
.serviceBox.red{ --main-color: #eb2f06; }
.serviceBox.blue{ --main-color: #1e3799; }
@media only screen and (max-width: 1199px){
    .serviceBox{ margin: 0 0 30px; }
}