.serviceBox{
    padding: 0 20px;
    text-align: center;
    border: 1px solid #ccc;
    margin: 50px 0;
    position: relative;
    border-radius: 10px;
    transition: all 0.3s linear 0s;
    /* background:radial-gradient(black, #031f60) */
    background:#fff;
    background: radial-gradient(white, #0000002e);
    background:#ffc903;
}
.serviceBox .service-icon{
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 5px;
    background: #daac06;
    font-size: 30px;
    color: #fff;
    margin: -45px 0 30px;
    position: relative;
    transition: all 0.3s linear 0s;
}
.serviceBox:hover .service-icon{
    background: #dcdcdc;
    color: #de1947;
}
.serviceBox .service-icon:after{
    content: "";
    border-top: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s linear 0s;
}
.serviceBox:hover .service-icon:after{
    border-top-color: #dcdcdc;
}
.serviceBox .title{
    font-size: 16px;
    color: #0b2768;
    margin: 0 0 12px 0;
    transition: all 0.3s ease 0s;
}
.serviceBox:hover .title{
    color: #de1947;
}
.serviceBox .description{
    font-size: 16px;
    color: #0b2768;
    line-height: 25px;
}
.serviceBox .read-more{
    display: inline-block;
    padding: 1px;
    background: #bd2824;
    border: 1px solid #ccc;
    font-size: 16px;
    color: #414141;
    position: relative;
    bottom: -20px;
    transition: margin-right 0.5s ease 0s, border-color 0.3s ease 0s;
}
.serviceBox .read-more span{
    display: inline-block;
    padding: 5px 18px;
    background: #bd2824;
    color:#fff;
    margin: 0 -35px -12px 0;
    position: relative;
    left: 12px;
    transition: margin-right 0.5s ease 0s;
}
.serviceBox:hover .read-more span{
    color: #4ca8e8;
    margin-right: 0;
}
.serviceBox .read-more i{
    display: inline-block;
    padding: 9px 17px 8px 20px;
    background: #ffffff;
    color: #de1947;
}
.serviceBox:hover,
.serviceBox:hover .read-more{
    border-color: #4ca8e8;
}
@media only screen and (max-width:767px){
    .serviceBox{ margin-bottom: 80px; }
}
