:root{ --main-color: #CB4D27; }
.demo{ background-color: #eee; }
.serviceBox{
    color: var(--main-color);
    font-family:'Poppins', sans-serif;
    text-align: center;
    padding: 10px 15px 30px;
    position: relative;
    z-index: 1;
    height: 100%;
    
}
.serviceBox:before,
.serviceBox:after{
    content: "";
    background: linear-gradient(to left bottom,#eee,#fff,#fff);
    border-radius: 15px;
    position: absolute;
    top: 45px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    box-shadow: 0 5px 8px rgba(0,0,0,0.3);
    z-index: -1;
}
.serviceBox:after{
    background: var(--main-color);
    width: 50%;
    height: 50%;
    border-radius: 0 0 20px 0;
    box-shadow: none;
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    z-index: -2;
}
.serviceBox .service-icon{
    color: var(--main-color);
    background: #fff;
    font-size: 27px;
    line-height: 70px;
    width: 70px;
    height: 70px;
    margin: 0 0 30px;
    border-radius: 50px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3),0 0 0 2px var(--main-color);
}
.serviceBox .title{
    font-size: 19px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 10px 10px;
}
.serviceBox .description{
    color: #888;
    font-size: 17px;
    line-height: 22px;
    text-align: justify;
    margin: 0 15px;
}
.serviceBox.golden{ --main-color: #D49530; }
.serviceBox.green{ --main-color: #8BC904; }
.serviceBox.dark-green{ --main-color: #02917E; }
.serviceBox.blue{ --main-color: #022643; }
.serviceBox.orange{ --main-color: #f58220; }
@media only screen and (max-width: 1199px){
    .serviceBox{ margin: 0 0 30px; }
}