.tickerTapeWrapper{
    overflow-x: hidden;
    width: 100%;
    display: flex;
}
.tickerTapeWrapper .tickerTape{
    --direction: normal;
    --duration: 40s;
    --delay: 0s;
    --iteration-count: infinite;
    --play: running;
    display: flex;
    flex: 0 0 auto;
    gap: 1rem;
    margin-right: 1rem;
    min-width: 100%;
    align-items: center;
    animation: marquee var(--duration) linear var(--delay) var(--iteration-count);
    animation-play-state: var(--play);
    animation-delay: var(--delay);
    animation-direction: var(--direction);
    animation-timing-function: linear;
}
.tickerTapeWrapper .tickerTape .tickerTapeImage{
    height: 180px;
}
@keyframes marquee{
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
    }
}
