#scroller-container {
    width: 100%;
    overflow: hidden;
    height: auto;
    margin-bottom: 1.875rem;
    background: white;
}

#toScroll {
    background: white;
    display: inline-block;
    animation-duration: 70s;
    animation-name: scroll;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
    white-space: nowrap;
}
#toScroll img {
    height:3.125rem;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
}
#toScroll:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translatex(15%)
    }

    to {
        transform: translateX(-80%);
    }
}
