.mySlides {display: none}
/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}


@media (min-width: 650px) {
    /* Next & previous buttons */
    .prev, .next {
      line-height: 60px;    
      cursor: pointer;
      position: absolute;
      bottom: 10px;
      width: 60px;
      height: 60px;   
      font-weight: bold;
      font-size: 24px;
      background-color: #184a51;    
      border-radius: 50% !important;
      text-align: center;    
      user-select: none;
      color: #ffffff !important;        
    }

    /* Position the button */
    .next {
      left: 43%;
      border-radius: 3px 0 0 3px;    
    }

    .prev {
      right: 43%;
      border-radius: 3px 0 0 3px;
    }
}

@media (max-width: 650px) {
    /* Next & previous buttons */
    .prev, .next {
      line-height: 30px;    
      cursor: pointer;
      position: absolute;
      bottom: 5px;
      width: 30px;
      height: 30px;   
      font-weight: bold;
      font-size: 12px;
      background-color: #184a51;    
      border-radius: 50% !important;
      text-align: center;    
      user-select: none;
      color: #ffffff !important;       
    }
    .next {
      left: 5%;
      border-radius: 3px 0 0 3px;    
    }

    .prev {
      right: 5%;
      border-radius: 3px 0 0 3px;
    }    
}





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