* {box-sizing: border-box;}

.mySlides {display: none;}
img {vertical-align: middle;
border-radius: 3px 3px;
}
.mySlides img{
  height: 500px;
}
.mySlides img:hover{
  opacity: 1;
}

/* Slideshow container */
.slideshow-container {
  max-width: 750px;
    height: 500px;
  position: relative;
  margin: auto;
}

/* Caption text */
#text {
  color: #f2f2f2;
    width: 750px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.4);
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 0px;
    border-radius: 0px 0px 3px 3px;
  
  text-align: center;
}

#text a{
      
    color: #f2f2f2;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: -100%;
}
.numbertext p {
    width: 750px;
}

/* 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;
}

.active {
  background-color: #717171;
}

/* 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}
}

