.mySlides {display:none}

/* Slideshow container */
.slideshow-container {
  max-width: 787px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #979797;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  left: 0;
  border-radius: 3px 0 0 3px;
  background-color: rgba(40,100,156,0.8);
}

/* Position the "next button" to the right */
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #979797;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  right: 0;
  border-radius: 0 3px 3px 0;
  background-color: rgba(40,100,156,0.8);
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(197,2,2,0.8);
}

/* Caption text */
.text {
  bottom: -55px;
  color: #28649c;
  font-size: 20px;
  padding: 8px 12px;
  position: absolute;
  width: 100%;
  text-align: center;
  font-family: cool;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #28649c;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  font-family: cool;
}

/* The dots/bullets/indicators */
.dot {
  bottom: -10px;
  left: -200px;
  position: relative;
  cursor:pointer;
  height: 13px;
  width: 13px;
  margin: 0 2px;
  background-color: #28649c;
  border: solid 1px #000000;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #c50202;
}

/* Fading animation */
.fade {
  -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}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}