.imghorizontalslide {
    width: 100%;
    overflow: hidden;
}

.imghorizontalslide-scroll {
    display: flex;
    animation: scroll 70s linear infinite;
}

.elementor .imghorizontalslide-scroll img {
    height: 70px;
    width: 3700px;
    max-width: fit-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translate(calc(-3850px + 50%), 0);
    }
}