.mySlides {
    display: inline-block;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
	margin-top: 5rem;
}

/* Slideshow container */
.slideshow-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60vh;
  position: relative;
  margin: auto;
  overflow: hidden;
}

.slideshow-container img {
  display: block;
  max-height: 100%;
  max-width: 100%;
  height: 100%;
  width: auto;
  vertical-align: middle;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 1rem 1rem 1rem 1.5rem;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  transition: 0.6s ease;
  user-select: none;
  background-color: rgb(134,189,136);
}

.prev{left: 0;}
/* Position the "next button" to the right */
.next {
  right: 0;
  padding: 1rem 1.5rem 1rem 1rem;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgb(244,163,107);
  color: white;
}

/* Caption text */
.caption {
  color: #f2f2f2;
  background-color: rgba(134,189,136,0.7);
  font-size: 1.5rem;
  padding: 12px 12px;
  position: absolute;
  bottom: 0px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 1.5rem;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
  margin:  5rem 0rem;
  background-color: rgb(244,163,107);
  position: absolute;
  top: 0;
  left: 0;
}

/* The dots/bullets/indicators */
.dots {margin: 2rem 0rem 5rem 0rem;}

.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

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

#fotos {display: none}

/*@keyframes fade {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 0; }
}*/

@media screen and (min-width:1030px) and (max-width:1400px){
}

@media screen and (min-width:760px) and (max-width:1030px){
	.slideshow-container img {
		object-fit: cover;
	}
	
	.prev, .next, .caption, .numbertext {font-size: 1.3rem;}
}

@media screen and (max-width:759px){
	.slideshow-container img {
		height: auto;
		width: 100%;
		object-fit: contain;
	}
	.prev, .next, .caption, .numbertext {font-size: 1.1rem;}
	.prev, .next {padding: 0.8rem 0.8rem 0.8rem 1.3rem;}
}