#scroll {
    position: relative;
    padding: 0px;
}

#customerlogos {
    display: none !important;
}
.mspfooterlinks {
    display: none;
}
.heading-menu {
    display: none
}
#customers {
    display: none
}

ul.clearfix.custspan{display: flex;  animation: scroll 30s linear infinite;}
@keyframes scroll {
    0% {transform: translateX(0px);}
    100% {    transform: translateX(-1200px);}
    /* 0% { transform: translateX(100%); } */
    /* 80% { transform: translateX(-100%); } */
}
 