.customer-icon-container {
    width: 73vw; /* 73% of the viewport width */
    height: 100%; /* Height of the container will be determined by the parent div */
    overflow: hidden; /* Hide overflow to ensure smooth scrolling */
    position: relative;
    border-radius:20px;
}

.scrolling-background {
    width: 100%; /* Full width of the container */
    height: 100%; /* Full height of the container */
    background-image: url('/wp-content/images/customericons.jpg'); /* Your image path */
    background-repeat: repeat-x; /* Repeat horizontally */
    background-size: cover; /* Scale image to cover the container */
    background-position: 0 0;
    animation: scrollBackground 120s linear infinite; /* Slower duration */
}

@keyframes scrollBackground {
    0% {
        background-position: 3451px 0; /* Start at the end of the image */
    }
    100% {
        background-position: 0 0; /* End at the beginning of the image */
    }
}

.paused {
    animation-play-state: paused;
}
