.logo-carousel-wrapper {
    width: 100%;
    background-color: #ffffff;
    padding: 50px 0px 0px 0px;
    overflow: visible;
    display: flex;
    justify-content: center;
}
.logo-carousel-container {
    width: 100%;
    max-width: 1920px;
    display: flex;
    align-items: center;
}

.logo-carousel {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.logo-carousel:hover {
    animation-play-state: paused;
}

.logo-item {
    height: 100px;
    margin: 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.logo-item img {
    max-height: 100%;
    max-width: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-item img:hover {
    transform: scale(1.1);
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
    
} 
@media (max-width: 767px) {
    .logo-carousel-wrapper {
        padding: 20px 0px 0px 0px;
    }
    .logo-item {
        height: 60px;
        margin: 0 18px;
    }
    .logo-item img {
        max-width: 80px;
        max-height: 60px;
    }
}
