/* Slideshow container */
.gallery-container {
  width: 90%;
  position: relative;
  margin: 0 5%;
  background: rgb(94, 90, 88);
  padding: 2px;
  border-radius: 5px 40px;
}
  @media (min-width: 480px) {
      .gallery-container {
        width: 800px;
        margin: auto;
        border-radius: 10px 40px;
      }
  }

/* Hide the images by default */
.mySlides {
  display: none;
  border-radius: 10px 50px;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: rgba(0,0,0,0.1);
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 5px 10px;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 5px 10px;
}


.prev:hover, .next:hover {
  background-color: rgba(105, 104, 104, 0.8);
  border-radius: 5px 10px;
}



.imgslide {
  width: 100%;
  -moz-box-shadow: 0px 5px 30px 0px rgba(58, 58, 58, 0.952);
  -webkit-box-shadow: 0px 5px 30px 0px rgba(58, 58, 58, 0.952);
  box-shadow: 0px 5px 30px 0px rgba(58, 58, 58, 0.952);
  border-radius: 5px 50px;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
@media (max-width: 768px) {
  .numbertext {
    top: 15px;
  }
}

/* Fading animation */
.fade {
  opacity: 5;
  -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}
}