
/* * {box-sizing:border-box} */

/* Slideshow container */
.slideshow-container {
  min-height: 20rem;
  margin-top: 9rem;
  margin-bottom: 2rem;
  max-width: 100%;
  position: relative;
  /* margin: auto; */
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  /* margin: 0 2px; */
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dotstyle {
  text-align: center;
  margin-top: -1.5rem;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 3s;
}

@keyframes fade {
  from {opacity: .2}
  to {opacity: 1}
}

@media (max-width:1000px) {

  .slideshow-container {
    margin-top: 9rem;
    min-height: 21rem;
    margin-bottom: 6rem;
    max-width: 100%;
    position: relative;
    /* margin: auto; */
  }
}