.contenedor-slider {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.slider {
  display:flex;
  height: 100%;
  width: 400%; /*Cambiar el ancho de acuerdo a la cantidad de imágenes, por ejm 10 imagenes = 1000%*/
}

.slider__section {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}
.slider__contenido{
  position: absolute;
  z-index: 50;
  top: 100%;
  left: 75%;
  transform: translateX(-75%) translateY(-30%);
  width: 50%;
  text-align: right;
  margin-left: 5px;
}
.slider__img {
  position: absolute;
  width: auto;
  max-width: 100%;
  height: 100%;
}

.slider__img2 {
  width: auto;
  max-width: 100%;
  height: 100%;
}

.btn-prev, .btn-next {
  width: 40px;
  height: 40px;
  background: #f3f3f3;
  top: 50%;
  text-align: center;
  border-radius: 3px;
  cursor: pointer;
  z-index:95;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-prev img, .btn-next img{
  width: 75%;
  height: auto;
}

.btn-prev:hover, .btn-next:hover {
  background: white;
}

.slider_botones{
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  top: -50%;
  transform: translateY(-50%);
  z-index: 95;
}

.btn-prev {
  left: 10px;
  transform: rotate(180deg);
}

.btn-next {
  right: 10px;
}

