
.slides-container {
  position: relative;  
  width: 100%;
  max-width: 100%;
  height: auto;
  
}
.slide, .slide img{
    width:100%;   
    height: auto; 
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.slide-text {
  color: #f2f2f2;
  font-size: 5vw;
  text-transform: uppercase;
  font-weight: bold;
  padding: 8px 12px;
  position: absolute;
  bottom: 50%;
  max-width: 100%;
  width:100%;
  text-align: center;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}