
.ServiceCategory {
    width: 100%;
    margin: 10px auto 10px;
    text-align: center;
    padding: 20px 0;
}
.ServiceCategory .Title {
    position:relative;
    font-weight: bold;
    text-transform: uppercase;
    color: #1f7ed0;
    font-size: 18px;
    height: 40px;
    display:none
}
.ServiceCategory .Title:hover {
    color:#4f4f4f;
}
.ServiceCategory ul {
    list-style: outside none none;
    padding: 0;
    margin: 0 auto;
    text-align: center;
}
.ServiceCategory ul li {
    position:relative;
    /* padding: 10px; */
    border-radius: 5px;
    transition: 0.3s;
    width: 20%;
    display: inline-block;
    margin: 0 -2px;
    vertical-align: top;
}

@media (max-width:991px){
    .ServiceCategory ul li{
        width:33.33%;
    }
}

.ServiceCategory ul li a span.article-title{
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Roboto';
    display: inline-block;
    line-height: 1.5;
    color: #151aa6;
    background: linear-gradient(225deg,#151aa6 0%,#2f82e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    display: none;
}
.ServiceCategory ul li:hover a span.article-title{
    color: #ff2f00;
}
.ServiceCategory span.article-icon {
    display:block;
}
.ServiceCategory span.article-icon img {
    margin-bottom: 20px;
    padding: 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  	width:150px;
}
.ServiceCategory li:hover img {
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(10deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
    transform: rotate(30deg);
}










