.image-list {
    list-style-type: none;
    margin-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.image-list > li:last-child img {
    margin-right: 0;
    padding-right: 0;
}

@keyframes carousel {
    0% {
        transform: translateX(0) ;
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel {
    margin: 30px 0;
    overflow-x: hidden;
}

.carousel-lane {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;

    animation: carousel 10s linear infinite;
}
.carousel-lane * {
    flex-shrink: 0;
    flex-grow: 0;
}

.carousel-lane img {
    max-width: none;
    margin: 0 40px;
    display: block;
    transform: rotate(0.02deg);
    width: auto;
    height: 64px;
}