.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  top: 125px;
  bottom: 20px;
  /* margin: auto; */
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 270%;
  padding: 8px 12px;
  position: absolute;
  bottom: 4.5rem;
  width: 100%;
  text-align: center;
}
.mySlides img{
    width: 100%;
    height: 200px;
    object-fit: cover;

}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  background-color: #05495c;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

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

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

/* On smaller screens, decrease text size */
/* @media only screen and (max-width: 360px) { */

  @media (max-width:1024px){
    .text{
      font-size: 250%;
      bottom: 8rem;
    }
    .slideshow-container{
      height: 300px;
      top: 130px;
      
    }
    .mySlides img{
      height: 300px;
    }
}