

.wrapper {
	background-color: white;
	height: 430px;
	overflow: hidden;
	position: relative;
	width: 90%;
	display: flex;
 	 
	align-items: center;
	padding: 0 20px;
}

.wrapper:before, .wrapper:after {
	content: "";
	position: absolute;
	height: 430px;
	width: 150px;
	z-index: 2;
}

.wrapper:after {
	right: 40;
	top: 0;
	transform: rotateZ(180deg);
}

.wrapper:before {
	left: 0;
	top: 0;
}

.wrapper .track {
	display: flex;
	width: calc(280px * 8);
	animation: scroll 10s 0.5s linear infinite;
}

.wrapper .logo {
	width: 450px;
}

.wrapper .logo img {
	height: 200px;
	width:200px;
}

@keyframes  scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-150px * 5));
	}
}
