

/* Slideshow container */
.slideshow-container {
  max-width: 700px;
  width: 600px;
  height: 400px;
  position: relative;
  margin: auto;
  overflow:hidden;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 10px;
}

/* Caption text */
.slideshow-item-text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 0px;
  width: 100%;
  text-align: center;
  background-color: rgba(50, 142, 110,0.7);
  border-bottom-left-radius:10px;
  border-bottom-right-radius:10px;
  overflow:hidden;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.slideshow-dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.slideshow-image{
  height: 600px;
  width: 400px;
  max-width:100%;height:auto;
  


}

.mySlides{
  border-radius:10px;
  overflow:hidden;


}



.slideshow-active {
  background-color: #717171;
}

/* Fading animation */
.slideshow-fade {
  animation-name: fade;
  animation-duration: 2.0s;

}

@keyframes fade {
  from {opacity: 0.6;transform: scale(1.1); }
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}