/* SLIDER */

.slideshow-container {
  position: relative;
  display: block;
  text-align: center;
}

/* Hide the images by default */

.mySlides {
  display: none;
  width: 100%;
}

.container-image {
  margin-bottom: 1rem;
  height: 70vh;
}

.mySlides > .container-image > picture > img {
  object-fit: contain;
  object-position: center center;
  width: 100%;
  height: 100%;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  height: 94%;
  width: 50%;
  color: white;
  user-select: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

.prev {
  left: 0;
}

#bullets {
  text-align: right;
  right: 0;
}

.dot {
  cursor: pointer;
  display: inline-block;
}

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

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.credits {
  display: inline-block;
  text-align: center;
}

.credits p:last-child {
  text-align: center;
  position: initial;
}

#slider-mobile {
  display: none;
}
