/* CSS Document */



.wrapper1 {
	background-color: #E1E2E2;
	height: 130px;
	overflow: hidden;
	width: 100%;
	display: flex;
	align-items: center;
	padding: 0 20px;
}

.wrapper1:before, .wrapper1:after {
	content: "";
	position: absolute;
	height: 130px;
	width: 150px;
	z-index: 2;
}

.wrapper1:after {
	right: 0;
	top: 0;
	transform: rotateZ(180deg);
}

.wrapper1:before {
	left: 0;
	top: 0;
}

.wrapper1 .track1 {
	display: flex;
	width: calc(2000px * 15);   /*width: calc(2000px * 15); */
	animation: scroll 90s 1s linear infinite; /* animation: scroll 60s 1s linear infinite; */
}

.wrapper1 .logo1 {
	width: 150px;
}

.wrapper1 .logo1 img {
	height: 90px;
}

@keyframes  scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-8500px * 0.9));   /*  transform: translateX(calc(-8500px * 0.9)); */ 
	}
}

