
@keyframes scroll {
	0% {
		transform: translateX(0);
   }
	100% {
		transform: translateX(calc(-250px * 7));
   }
} 
.full-slider {
	box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
	height: 300px;
	margin: auto;
	overflow: hidden;
	position: relative;
	width: 100%;
}
.full-slider::before, .full-slider::after {
	background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	content: "";
	height: 300px;
	position: absolute;
	width: 200px;
	z-index: 2;
}
.full-slider::after {
	right: 0;
	top: 0;
	transform: rotateZ(180deg);
}
.full-slider::before {
	left: 0;
	top: 0;
}
.full-slider .slide-track {
	animation: scroll 40s linear infinite;
	display: flex;
	width: calc(300px * 14);
}
.full-slider .slide {
	height: 300px;
	width: 300px;
}
.center {
	margin: auto;
	width: 100%;
	text-align:center;
  }

  .car{
	width: 90%;
	height: 100%;
	padding: 5px;
	margin: auto;
	display: inline-block;
	text-align:center;
	vertical-align: middle;
	object-fit: contain;
  }


  .button {
	padding: 10px 20px;
	font-size: 28px;
	color: #fff;
	background-color: #01184A;
  }

  .space {
	margin: 20px;
  }
  
  