.marquee{
    display: flex;
    flex-direction: row;
    width: 100%;
    background: #f7f9fd;
    padding: 0 0;
    font-size: 18px;
    font-weight: bold;
    overflow: hidden;
    --textWidth: 100; /* In pixels, set by JS */
    --animSpeed: 15; /* In pixels per second */
}




.marquee__content{
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    animation: marquee-scroll calc( (var(--textWidth) * 1s) / var(--animSpeed) ) linear infinite;
}

.marquee__text{
    display: block;
    flex-shrink: 0;
    flex-grow: 0;
    margin: 0;
    padding-right: 32px;
    text-transform: uppercase;
}

.marquee__img {
    max-width: 75%;
    max-height: 400px;		
}

.marquee__copies{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    width: 0;
    flex-grow: 0;
    flex-shrink: 0;
}

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