@charset "UTF-8";
/* CSS Document */

/* Tipografías */
	@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500&family=Work+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap');

.mySlides {display: none;}
img {vertical-align: middle;}
body {
	width: 100vw;
	margin: auto;
}


/* Slideshow container */
.slideshow-container {
  max-width: 100vw;
  max-height: 100vw;
 /* position: absolute;*/
  top: 0;
  /*z-index: -1;*/
  margin: 0;
  overflow: hidden;
}

/* Caption text */
.text_carrusel {
  color: white;
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  font-size: 20pt;
  padding: 0;
  position: absolute;
  bottom: 10%;
  margin-left: 5%;
  width: 100%;
  text-align: left;
}

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

/* The dots/bullets/indicators */
.dot {
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: #ACA1A1;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #4F4848;
}

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

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

/* On smaller screens, decrease text size */
@media screen and (max-width: 800px) {
  .text_carrusel {
	  display: none;
	}
	
	.dot {
  height: 4px;
  width: 4px;
 margin: 0 1 px;
}
}