.mySlides {
  display: none;
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  width: 100%;
}

/* The dots/bullets/indicators */
.dot {
  height: 12px;
  width: 12px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 1s ease;
}

.active {
  background-color: aquamarine;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 2s;
}

@-webkit-keyframes fade {
  from {opacity: .7} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .7} 
  to {opacity: 1}
}


/*____________________________________*/


.mySlidesTwo {
  display: none;
}

/* Slideshow container */
.slideshow-containerTwo {
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  width: 100%;
}

/* The dots/bullets/indicators */
.dotTwo {
  height: 12px;
  width: 12px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 1s ease;
}

.activeTwo {
  background-color: aquamarine;
}

/* Fading animation */
.fadeTwo {
  -webkit-animation-name: fadeTwo;
  -webkit-animation-duration: 2s;
  animation-name: fadeTwo;
  animation-duration: 2s;
}

@-webkit-keyframes fadeTwo {
  from {opacity: .7} 
  to {opacity: 1}
}

@keyframes fadeTwo {
  from {opacity: .7} 
  to {opacity: 1}
}


/*____________________________________*/


.mySlidesThree {
  display: none;
}

/* Slideshow container */
.slideshow-containerThree {
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  width: 100%;
}

/* The dots/bullets/indicators */
.dotThree {
  height: 12px;
  width: 12px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 1s ease;
}

.activeThree {
  background-color: aquamarine;
}

/* Fading animation */
.fadeThree {
  -webkit-animation-name: fadeThree;
  -webkit-animation-duration: 2s;
  animation-name: fadeThree;
  animation-duration: 2s;
}

@-webkit-keyframes fadeThree {
  from {opacity: .7} 
  to {opacity: 1}
}

@keyframes fadeThree {
  from {opacity: .7} 
  to {opacity: 1}
}