.slideshow-container {
    max-width: 100%;
    overflow: hidden;
    position: relative;
    margin: auto
}

.slideshow-container .mySlides {
  display: none;
  height: 400px;
}

.slideshow-container .mySlides img {
  height: 100%;
}

.slideshow-container .prev,
.slideshow-container .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #222428;
    font-weight: bold;
    font-size: 30px;
    transition: .6s ease;
}

.slideshow-container .next {
    right: 0px;
}

.slideshow-container .prev {
    left: 0px;
}

.slideshow-container .prev:hover,
.slideshow-container .next:hover {
    color: #f2f2f2;
    background-color: rgba(0, 0, 0, 0.8)
}

.slideshow-container .text {
    color: #f2f2f2;
    font-size: 17px;
    padding-top: 12px;
    padding-bottom: 12px;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(0,0,0,.7);
}

.slideshow-container .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0
}

  @media (max-width: 892px){
      .slideshow-container {
          max-width: 100%;
          overflow: hidden;
          position: relative;
          margin: auto
      }

      .slideshow-container .mySlides {
        display: none;
        height: 33vh;
           
      }

      .slideshow-container .prev,
      .slideshow-container .next {
          cursor: pointer;
          position: absolute;
          top: 40%;
          width: auto;
          margin-top: -22px;
          padding: 16px;
          color: #222428;
          font-weight: bold;
          font-size: 30px;
          transition: .6s ease;
      }

      .slideshow-container .next {
          right: 0px;
      }

      .slideshow-container .prev {
          left: 0px;
      }

      .slideshow-container .prev:hover,
      .slideshow-container .next:hover {
          color: #f2f2f2;
          background-color: rgba(0, 0, 0, 0.8)
      }

      .slideshow-container .text {
          color: #f2f2f2;
          font-size: 17px;
          padding-top: 12px;
          padding-bottom: 12px;
          position: absolute;
          bottom: 0;
          width: 100%;
          text-align: center;
          background-color: rgba(0,0,0,.7);
      }

      .slideshow-container .numbertext {
          color: #f2f2f2;
          font-size: 12px;
          padding: 8px 12px;
          position: absolute;
          top: 0
      }         
  }

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}