@charset "utf-8";
/* CSS Document */
.scrolling-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
	background-color:#000;
	color:#fff;
	padding-top:7rem;
	padding-bottom:7rem;
}

.scrolling-container ul {
    display: inline-block;
    padding: 0;
    margin: 0;
    list-style: none;
    animation: scroll 60s linear infinite;
}

.scrolling-container ul li {
    display: inline;
    margin-right: 40px;
    position: relative;
    padding-right: 40px;
	font-size:20px;
}
.cls-1 {fill: #fff;stroke-width: 0px;}
.scrolling-container ul li::after {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path fill="white" class="cls-1" d="M9.26,0C4.14,0,0,4.14,0,9.26s4.14,9.26,9.26,9.26,9.26-4.14,9.26-9.26S14.37,0,9.26,0ZM13.18,15.21s-.05.03-.08.03h-1.95s-.08-.02-.09-.07l-.02-.04c-.12-.3-.43-.43-.9-.45h-1.33s-.05,0-.07-.02c-.02-.02-.02-.04-.03-.06l-.37-1.56v-.03s0-.05.02-.07c.02-.02.05-.02.07-.02h2.12l-.05-.21-1.25-5.58-1.79,8.04s-.05.07-.1.07h-1.95s-.06-.01-.08-.03c-.02-.02-.03-.05-.02-.07l3.04-11.8s.05-.07.1-.07h1.62s.09.03.1.07l3.03,11.8s0,.05-.02.07h0Z"/></svg>');
    position: absolute;
    right: -10px;
    top: 16px;
    transform: translateY(-50%);
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}