@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body{ background-color: #ddd; }
h1 { padding: 0 0 30px;}
:root{ 
    --white:#fff;
    --main-color: #374B92;
}
.serviceBox{
    color: var(--white);
    background: var(--white);
    font-family: 'Roboto', sans-serif;
    text-align: center;
    padding: 20px 20px 15px;
    border-radius: 30px 30px;
    position: relative;
    margin: 0 auto;
    z-index: 1;
}
.serviceBox:before,
.serviceBox:after{
    content: "";
    position: absolute;
}
.serviceBox:before{
    background: var(--main-color);
    width: calc(100% - 20px);
    height: calc(100% - 118px);
    border-radius: 0 0 20px 20px;
    transform: translateX(-50%);
    bottom: 10px;
    left: 50%;
    z-index: -1;
}
.serviceBox:after{
    background: linear-gradient(to top left,#fff 49%, transparent 50%);
    width: 15px;
    height: 15px;
    transform: translateX(-50%) rotate(45deg);
    top: 100px;
    left: 50%;
}
.serviceBox .service-icon{
    color: var(--main-color);
    font-size: 50px;
    margin: 0 auto 45px;
}
.serviceBox .service-icon i{line-height:inherit}
.serviceBox .title{
    font-size: 19px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 5px;
}
.serviceBox .description{
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 24px;
    margin: 0;
}
.serviceBox.red{ --main-color: #D93C4F; }
.serviceBox.orange{ --main-color: #FF8B1B; }
.serviceBox.blue{ --main-color: #259cec; }
@media only screen and (max-width: 1199px){
    .serviceBox{ margin: 0 0 60px; }
}