.image-marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: 75%;
    margin: 1.5rem auto;

}

@media (max-width: 640px) {
    .image-marquee {
        width: 100%;
    }
}

.pillar .image-marquee {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.image-marquee-row {
    display: inline-flex;
    align-items: center;
    animation: image-marquee-slide 20s linear infinite;
}

.image-marquee:hover .image-marquee-row {
    animation-play-state: paused;
}

.image-marquee-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-marquee-logo img {
    display: block;
    max-height: 80px;
    width: auto;
}

@media (max-width: 640px) {
    .image-marquee-logo img {
        max-height: 60px;
    }
}

@keyframes image-marquee-slide {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}
