/* Position the image container (needed to position the left and right arrows) */



.slides-container {
  position: relative;
  width: 96%;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 46%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 7px;
}

/* Position the "next button" to the right */
.next {
  right: 10px;
}

.prev {
  left: 10px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.row {
  display: flex;
  justify-content: center;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16%;
  margin: 5px;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
  border-radius: 7px;
}

.active,
.demo:hover {
  opacity: 1;
}

@media screen and (max-width: 768px) {

    .slides-container {
      width: 100%;
    }
}