﻿.marquee-container {
    overflow: hidden;
    background: #F0FDF4;
    padding: 20px 0;
}

/* Row */
.marquee {
    display: flex;
    position: relative;
    overflow: hidden;
    margin: 10px 0;
}

/* Item */
.marquee__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    margin: 0 15px;
    animation: scroll 40s linear infinite;
}

/* Reverse direction */
.marquee.reverse .marquee__item {
    animation-direction: reverse;
}

/* Logo */
.logo-img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

/* Text */
.marquee__item span {
    font-size: 12px;
    margin-top: 5px;
    text-align:center;
}

/* Animation */
@keyframes scroll {
    from {
        transform: translateX(100vw);
    }
    to {
        transform: translateX(-100%);
    }
}