#customerSlider {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15rem;
    background-color: white;
}

.customer-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 80rem;
    height: auto;
}

.customer-track {
    display: flex;
    width: 50000px;
    animation: slide 2000s linear infinite;
}

.customer-item {
    flex: 0 0 auto;
    width: 200px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.customer-item img {
    width: auto;
    height: 100px;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50000px);
    }
}

/* Responsive Styles */
@media (max-width: 50000px) {
    .customer-item {
        width: 200px;
    }
}

@media (max-width: 200px) {
    .customer-item {
        width: 200px;
    }
}