﻿.container {
    width: 1190px;
}

.navbar-nav > li > a {
    display: flex;
    max-width: 170px;
    align-items: center;
}

.scroll-container {
    display: inline-flex;
    overflow: hidden;
    white-space: nowrap;
}

.scroll {
    padding-left: 12%;
    animation: scroll 13s linear infinite;
    justify-content: space-between;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-70%);
    }
}
