.ServiceCategory {
    margin: 0 auto;
    padding: 2px 0;
    max-width: var(--body-width);
}
.ServiceCategory .Title {
        background: rgba(0, 0, 0, 0) url("images/menutop.jpg") repeat scroll center center;
        border: 1px solid #0084d6;
        border-radius: 5px 5px 0 0;
        color: #fff;
        font: bold 10pt/22px arial;
        height: 24px;
        padding-left: 15px;
        text-transform: none;
        display: none;
}
.ServiceCategory ul {
        list-style: outside none none;
        margin: 0;
        padding: 1px;
        text-align: right;
        display: flex !important;
        justify-content: flex-end;
        gap: 30px;
}
div.ServiceCategory ul li {
        width: unset;
}
.ServiceCategory ul li a {
        color: #444444;
        color: #fff;
        text-shadow: 0px 1px 1px #888;
        font-size: 13px;
}
.ServiceCategory ul li a:hover {
        color: #ffff00;
}
.ServiceCategory ul li a>.border{
        border: none !important;
}
@media only screen and (max-width: 768px){
        .ServiceCategory ul{
                flex-wrap: nowrap;
                white-space: nowrap;
                overflow: auto;
                justify-content: start;
        }
}
