.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;
    height: max-content;
    margin-right: 80px;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}