@charset "utf-8";
body {
  margin: 0;
}
.slider2 {
    overflow: hidden;
    width: 100%;
    height: 60vw;
	max-height: 606px;
    position: relative;
	
  
}

.slider2 .slide2 {
    position: absolute;
	display: flex;
   justify-content: center; /* horizontal centering */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: left bottom;
    animation: slide 35s infinite;
}

.slider2 .slide2:nth-child(1) {
 
  animation-delay: 0;
}

.slider2 .slide2:nth-child(2) {
  
  animation-delay: -7s;
}
  
.slider2 .slide2:nth-child(3) {
 
  animation-delay: -14s;
}

.slider2 .slide2:nth-child(4) {
 
  animation-delay: -21s;
}
.slider2 .slide2:nth-child(5) {
 
  animation-delay: -28s;
}
@keyframes slidexx {
  0%, 28.3%, 100% {
    transform: translateX(0);
    animation-timing-function: ease;
  }
  33.3% {
    transform: translateX(-100%);
    animation-timing-function: step-end;
  }
  95% {
    transform: translateX(100%);
    animation-timing-function: ease;
  }
}
  