
.ServiceCategory {
    width: 100%;
    margin: 10px auto 10px;
    text-align: center;
    padding: 20px 0;
}
.ServiceCategory .Title:hover {
    background: #03c2ea;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ServiceCategory .Title{
    color: #364e4f;
    position: relative;
    font-family: 'Times New Roman', cursive;
    font-size: 23px;
    display: inline-block;
    padding: 10px 0 0;
    width:100%;
    letter-spacing: -0.6px;
    text-align:center;
    margin-bottom: 30px;
    text-transform:uppercase;
    font-weight:bold;
}
.ServiceCategory .Title::after {
    content: '';
    height: 3px;
    width: 90px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    background: #fbb22f;
    transform: translateX(-50%);
}
.ServiceCategory .Title::hover {
    background: #03c2ea;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ServiceCategory ul {
    list-style: outside none none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    display: flex;
}
.ServiceCategory ul li {
    vertical-align: top;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

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

.ServiceCategory ul li a span.article-title{
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Roboto';
    display: inline-block;
    line-height: 1.5;
    color: #328249;
    background: linear-gradient(25deg, #328249 0%, #629a58 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.ServiceCategory ul li:hover a span.article-title{
    color: #328249;
}
.ServiceCategory span.article-icon {
    display:block;
}
.ServiceCategory span.article-icon img {
    background: #ffffff;
    width: 150px;
    height: 150px;
    border-radius: 100px;
    margin-bottom: 20px;
    padding: 15px;
    transform: translateY(-1px);
    box-shadow: 0 12px 30px #e6b84857;
    transition: all .3s ease;
}
.ServiceCategory li:hover img{
    background: #f6f6f633;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px #e6b84857;
}











