.UIServiceCategory_Default .ServiceCategory {
}
.UIServiceCategory_Default .ServiceCategory .Title {
        color: #333;
        font-size: 40px;
        font-weight: bold;
        line-height: 60px;
        position: relative;
        text-align: center;
}
.UIServiceCategory_Default .ServiceCategory .Content {
        margin-top: 30px;
}
.UIServiceCategory_Default .ServiceCategory .Content .nav {
        display: flex !important;
        flex-wrap: wrap;
        gap: 15px;
}
.UIServiceCategory_Default .ServiceCategory .Content .nav li {
        display: flex;
        flex: 0 0 calc((100% - 45px)/4);
        margin: 0;
}
.UIServiceCategory_Default .ServiceCategory .Content .item {
        text-decoration: none;
        width: 100%;
        display: flex;
}
.UIServiceCategory_Default .ServiceCategory .Content .item div {
        background-color: #fff;
        border-radius: 10px;
        padding: 40px 30px 30px;
        text-align: center;
        margin-bottom: 30px;
        transition: .6s all;
        width: 100%;
}
.UIServiceCategory_Default .ServiceCategory .Content .item div:hover {
        background-color: #295097 !important;
        transform: scale(1.1)
}
.UIServiceCategory_Default .ServiceCategory .Content .item div:hover .article-title  {
        color: #fff;
}
.UIServiceCategory_Default .ServiceCategory .Content .item img {
        display: block;
        margin: 0 auto;
}
.UIServiceCategory_Default .ServiceCategory .Content .item .article-title {
        margin: 26px 0 10px;
        display: block;
        color: #333;
        font-size: 18px;
        font-weight: bold;
        line-height: 26px;
        text-transform: uppercase;
        -webkit-transition: .3s all;
        -o-transition: .3s all;
        transition: .3s all;
}
@media (max-width:768px) {
        .UIServiceCategory_Default .ServiceCategory .Content .nav li {
                flex: 0 0 calc((100% - 15px)/2);
        }
        .UIServiceCategory_Default .ServiceCategory .Content .item .article-title {
         font-size: 14px;
        }
}