/*Nowy scrolling text*/
.wrapper {
    position: relative;
    height: 100px;
    margin-top: 5rem;
    margin-bottom: 2vh;
    overflow: hidden;
    mask-image: linear-gradient(to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0));
}

@keyframes scrollLeft {
    to {
        left: -200px;
    }
}


.item {
    width: 200px;
    height: 100px;
    background-color: white;
    border-radius: 6px;
    position: absolute;

    left: max(2500px, 100%);

    animation-name: scrollLeft;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;

}
.item-right {
    width: 200px;
    height: 100px;
    background-color: white;
    border-radius: 6px;
    position: absolute;

    left: max(2500px, 100%);

    animation-name: scrollLeft;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: reverse;


}

.item1  { animation-delay: calc(30s / 11 * (11 - 1)  * -1); }
.item2  { animation-delay: calc(30s / 11 * (11 - 2)  * -1); }
.item3  { animation-delay: calc(30s / 11 * (11 - 3)  * -1); }
.item4  { animation-delay: calc(30s / 11 * (11 - 4)  * -1); }
.item5  { animation-delay: calc(30s / 11 * (11 - 5)  * -1); }
.item6  { animation-delay: calc(30s / 11 * (11 - 6)  * -1); }
.item7  { animation-delay: calc(30s / 11 * (11 - 7)  * -1); }
.item8  { animation-delay: calc(30s / 11 * (11 - 8)  * -1); }
.item9  { animation-delay: calc(30s / 11 * (11 - 9)  * -1); }
.item10 { animation-delay: calc(30s / 11 * (11 - 10) * -1); }
.item11 { animation-delay: calc(30s / 11 * (11 - 11) * -1); }
