/* Logo Scroll Section Styles */
.scroll-wrapper {
    display: flex;
    width: max-content;
    animation: scroll 25s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.scroll-wrapper:hover {
    animation-play-state: paused;
}
