.slides {
  display: none;
  width: 30%;

}

.animate-left {
  position: relative;
  animation: animateleft 0.8s
  margin: auto;
  text-align: center;
}

@keyframes animateleft { 
  from { left :-500px; opacity:0 } to { left:0; opacity:1 }

}