
/* SLIDESRS */

.box2 {
    background-image: url(./../img/back1_400.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    /* width: 100%; */
    width: 100vw;
    height: 100vh;
    position:relative;
}

@media only screen and (orientation: landscape){
  .box2 {
    height: 140vh;
  }
}

@media only screen and (min-width: 1000px){
  .box2 {
    height: 100vh;
  }
}


.box2 .overlay{
    width: 100%;
    height: 100%;
    background-color:rgba(190, 0, 245,0.5); 
    position:relative;
    z-index: 2;
}



/*------------------------------------------------------------------
/*para los sliders
------------------------------------------------------------------*/


/* Slideshow container */
.slideshow-container {
  width: 100%;
  height: 100%;
  position:absolute;
  top: 0;
  left: 0;
  margin: auto;
  /* padding: 10px; */
  
  z-index: 3;
}



/* Hide the images by default */
.mySlides {
  display: block;
  /* width: 100%; */
  width: 100%;
  height: 100%;
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  z-index: 5;
  position:relative;
}

.mySlides p{
  text-align: center;
}


.mySlides .mySlides__title{
  color: #fff;
  font-family:  'Poppins', sans-serif;
  font-weight: bold;
  font-size: 3rem;
  text-align:center;
  height: 50px;
  position:absolute;
  top: 15%;
  margin-block-end: 40px;
}

.mySlides .mySlides__detail{
  color: #fff;
  font-family:  'Poppins', sans-serif; 
  font-weight: 200;
  font-size: 1.6rem;
  text-align:center;

}

.mySlides .mySlides__strong{
  color: #fff;
  font-weight: 500;
  font-family: 'Poppins', sans-serif; 
  font-size: 1.6rem;
  text-align:center;
}


/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;

  z-index: 10;
}

/* Position the "next button" to the right */
.next {
  /* right: 0; */
  right: 25px;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

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

/* The dots/bullets/indicators */
.slide-dots {
  position:absolute;
  bottom: 10px;
  /* left: 45%; */
  width: 100%;
  display:flex;
  justify-content: center;
}


.dot {
  cursor: pointer;
  height: 6px;
  width: 6px;
  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 {
  -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}
}





@media only screen and (min-width: 480px){



  .mySlides .mySlides__title{
    font-size: 3.6rem;
  }
  
  .mySlides .mySlides__detail{
    font-size: 2.2rem;
  }
  
  .mySlides .mySlides__strong{
    font-size: 2.2rem;
  }
    
}


