﻿#client-images {
    padding: 40px 0;
    overflow: hidden;
}

.scrolling-wrapper {
    position: relative;
    overflow: hidden;
}

.scrolling-content {
    display: flex;
    animation: scroll 20s linear infinite;
}

    .scrolling-content .row {
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
    }

    .scrolling-content .col-2 {
        display: inline-block;
        margin-right: 15px; /* Adjust spacing between images if needed */
    }

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-200%);
    }
}
