.header__info {
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    height: auto;
    background-color: #F7F7F9;
    display: flex;  
    padding: 15px 0;
    overflow: hidden;
}

.header__info-text {
    font-size: 12px;
    line-height: 18px;
    color: #212121;
    white-space: nowrap;
    width: 100%;
    margin-right: 20px;
    display: inline-block;
    -webkit-animation: scroll 10s infinite linear;
    -moz-animation: scroll 10s infinite linear;
    animation: scroll 10s infinite linear;
    animation-fill-mode: forwards;
    animation-delay: 0s;
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(1%, 0);
    }
    100% {
        -webkit-transform: translate(10%, 0);
        transform: translate(-74%, 0)
    }
}
 
@-moz-keyframes scroll {
    0% {
        -moz-transform: translate(10%, 0);
        transform: translate(1%, 0);
    }
    100% {
        -moz-transform: translate(10%, 0);
        transform: translate(-74%, 0)
    }
}
 
@keyframes scroll {
    0% {
        transform: translate(1%, 0);
    }
    100% {
        transform: translate(-74%, 0)
    }
}

.header-navigation {
    top: 150px;
}


@media(min-width: 770px) {
    .header__info-text {
        font-size: 14px;
    }

    .header__info-text {
        -webkit-animation: scroll 20s infinite linear;
        -moz-animation: scroll 20s infinite linear;
        animation: scroll 20s infinite linear;
        animation-fill-mode: forwards;
    }
}


@media(min-width: 1024px) {
    .header__info-text {
        -webkit-animation: scroll 25s infinite linear;
        -moz-animation: scroll 25s infinite linear;
        animation: scroll 25s infinite linear;
        animation-fill-mode: forwards;
    }
}