.jcslider-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    margin-top: 3em;
}
.jcslider {
    display: flex;
    width: max-content;
    animation: scroll 60s linear infinite;
    align-items: center;
}
.jcslider img {
    max-width: 163px;
    margin: 0 40px;
    height: max-content;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}