.moving-image-container-ec23416c {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    display: block;
}

.moving-image-track-ec23416c {
    display: flex;
    width: max-content;
    animation: scroll-left-ec23416c 20s linear infinite;
    will-change: transform;
}

.moving-image-el {
    display: block;
    height: auto;
    max-width: none;
    flex-shrink: 0;
}

@keyframes scroll-left-ec23416c {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}
