.serviceBox{
    text-align: center;
    padding: 30px;
    margin: 0 -15px;
    overflow: hidden;
    position: relative;
}
.serviceBox .service-content{
    border: 4px double rgba(255,255,255,0.6);
    padding: 40px 30px 20px;
    position: relative;
    transition: all 0.3s ease-in-out 0s;
}
.serviceBox:hover .service-content{
    border: 4px double rgb(255,255,255);
}
.serviceBox .service-content i{
    font-size: 30px;
    color: #fff;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out 0s;
}
.serviceBox:hover .service-content i{
    transform: rotate(360deg);
}
.serviceBox .title{
    font-size: 20px;
    /* font-size: 1.4vw; */
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.link_hover_none:hover{text-decoration: none !important;}
.link_hover_none:focus{text-decoration: none !important;}
.serviceBox .description{
    font-size: 14px;
    color: #fff;
    line-height: 25px;
}
.serviceBox .icon-bg{
    font-size: 250px;
    color: rgba(255, 255, 255, 0.3);
    line-height: 120px;
    position: absolute;
    bottom: 0;
    right: -30px;
    transition: all 0.3s ease-in-out 0s;
}
.serviceBox:hover .icon-bg{
    transform: rotate(360deg);
}
.serviceBox.blue{ background: #007cbb; }
.serviceBox.orange{ background: #fdbd32;}

.serviceBox.orange .service-content i, .serviceBox.orange .service-content h3.title{color:#007cbb !important;}
.serviceBox.blue .service-content i, .serviceBox.blue .service-content h3.title{color:#fdbd32 !important;}
@media only screen and (max-width: 990px){
    .serviceBox{ margin-bottom: 30px; }
}