.serviceBox{
    background-color: #5A8C98;
    /* font-family: 'Roboto', sans-serif; */
    padding: 0 0 20px;
    margin: 5px 5px 0 15px;
    text-align: right;
    border-radius: 20px 0;
    position: relative;
    z-index: 1;
}
.serviceBox .title{
    color: #fff;
    background: linear-gradient(to right,#fe8c00,#f83600);
    font-size: 12px;
    /* font-weight: 600; */
    text-align: right;
    text-transform: uppercase;
    padding: 12px 5px;
    margin: -6px -6px 10px 0;
    border-radius: 0 0 0 20px;
    box-shadow: -2px 4px 1px rgba(0,0,0,0.2);
    display: inline-block;
    position: relative;
}
.serviceBox .title:before,
.serviceBox .title:after{
    content: "";
    background: linear-gradient(to right bottom, transparent 49%, #f83600 50%);
    width: 5px;
    height: 5px;
    position: absolute;
    top: 0;
    left: -4px;
}
.serviceBox .title:after{
    transform: rotate(180deg);
    top: auto;
    bottom: -5px;
    left: auto;
    right: 0;
}
.serviceBox .description{
    color: white;
    font-size: 12px;
    height: 100px;
    /* letter-spacing: 0.5px; */
    /* line-height: 23px; */
    text-align: center;
    margin: 0 5px 10px;
}
.serviceBox .service-icon{
    color: #D9E021;
    /* background: #36353a; */
    font-size: 25px;
    text-align: center;
    line-height: 48px;
    width: 50px;
    height: 50px;
    margin: 0 auto 5px;
    /* border: 2px solid #000; */
    border-radius: 50%;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover .service-icon{ transform: rotateY(360deg); }
.serviceBox .read-more{
    color: #fff;
    background: linear-gradient(to right,#fe8c00,#f83600);
    font-size: 12px;
    /* font-weight: 600; */
    text-transform: uppercase;
    text-align: center;
    width: 100px;
    padding: 7px 0;
    border-radius: 0 30px 30px 0;
    box-shadow: 4px 4px 1px rgba(0,0,0,0.2);
    display: block;
    position: relative;
}
.serviceBox .read-more:hover{ text-shadow: 0 0 5px #555; }
.serviceBox .read-more:before,
.serviceBox .read-more:after{
    content: "";
    background: linear-gradient(to bottom,#fe8c00,#f83600);
    width: 15px;
    height: 25px;
    border-radius:50px 0 0 50px;
    position: absolute;
    top: -25px;
    left: -15px;
}
.serviceBox .read-more:after{
    background: #fe8c00;
    border-radius: 50px 0 0 50px;
    height: 57px;
    z-index: -2;
}
.serviceBox.green .title,
.serviceBox.green .read-more{
    background: linear-gradient(to right, #2cdc81, #039b68);
}
.serviceBox.green .title:before,
.serviceBox.green .title:after{
    background: linear-gradient(to right bottom, transparent 49%, #039b68 50%);
}
.serviceBox.green .read-more:before{ background: linear-gradient(to bottom,#2cdc81, #039b68); }
.serviceBox.green .read-more:after{ background: #2cdc81; }
.serviceBox.blue .title,
.serviceBox.blue .read-more{
    background: linear-gradient(to right,#02e7f7,#876cf5);
}
.serviceBox.blue .title:before,
.serviceBox.blue .title:after{
    background: linear-gradient(to right bottom, transparent 49%, #876cf5 50%);
}
.serviceBox.blue .read-more:before{ background: linear-gradient(to bottom,#02e7f7,#876cf5); }
.serviceBox.blue .read-more:after{ background: #02e7f7; }
.serviceBox.purple .title,
.serviceBox.purple .read-more{
    background: linear-gradient(to right, #B53471, #6F1E51);
}
.serviceBox.purple .title:before,
.serviceBox.purple .title:after{
    background: linear-gradient(to right bottom, transparent 49%, #6F1E51 50%);
}
.serviceBox.purple .read-more:before{ background: linear-gradient(to bottom,#B53471, #6F1E51); }
.serviceBox.purple .read-more:after{ background: #B53471; }
@media only screen and (max-width:1024px){
    .serviceBox{ margin: 5px 5px 30px 15px; }
}