h1 { padding: 0 0 30px;}
:root{
    --white:#fff;
    --color: #1677E8;
}
.serviceBox{
    color: #777;
    background: var(--color);
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 80px 20px 30px;
    border-radius: 10px 10px;
    position: relative;
    margin: 80px auto 0;
    z-index: 1;
}
.serviceBox:before{
    content: "";
    background: var(--white);
    width: calc(100% - 15px);
    height: calc(100% + 40px);
    border-radius: 10px 10px;
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1
}
.serviceBox .service-icon{
    color: var(--color);
    background: var(--color);
    font-size: 45px;
    line-height: 100px;
    height: 100px;
    width: 100px;
    border-radius: 10px 10px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transform: translateX(-50%);
    position: absolute;
    top: -65px;
    left: 50%;
    margin: 0 auto;
} 
.serviceBox .service-icon:before{
    content: "";
    background: var(--white);
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border-radius: 50%  50%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1
}
.serviceBox .service-icon i{line-height:inherit}
.serviceBox .title{
    color: var(--color);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 7px;
}
.serviceBox .description{
    font-size: 13px;
    letter-spacing: 0.5px;
    line-height: 23px;
    margin: 0;
}
.serviceBox.green{ --color: #44bd32; }
.serviceBox.pink{ --color:#E42485; }
.serviceBox.orange{ --color: #E65811; }
.serviceBox.darkblue{ --color: #183765; }
@media only screen and (max-width: 990px){
    .serviceBox{ margin: 80px auto 100px; }
}