/*CENTRAR SLIDER testimonioS*/
.centrar_contenedor_slider_testimonio {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 60px 0px;
}

/*CONTENEDOR SLIDER TESTIMONIO*/
.contenedor_slider_testimonio {
  width: 100%;
  position: relative;
  max-width: 1300px;
}

.contenedor_slider_testimonio h2 {
  color: var(--color-cuaternario-texto);
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 50px;
}

/*ITEM SLIDER TESTIMONIO*/
.contenedor_slider_testimonio .item_slider_testimonio {
  margin: 0px 10px;
  display: grid;
  place-items: center;
  margin-bottom: 5px;
  text-align: center;
}

.contenedor_slider_testimonio .item_slider_testimonio img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 1px solid var(--color-terciario-borde);
  border-radius: 50%;
}

.contenedor_slider_testimonio .item_slider_testimonio h3 {
  color: var(--color-cuaternario-texto);
  font-size: 25px;
  font-weight: 600;
  margin-top: 15px;
  letter-spacing: 2px;
}

.contenedor_slider_testimonio .item_slider_testimonio span {
  color: var(--color-terciario-texto);
  font-size: 20px;
  margin-top: -8px;
  margin-bottom: 5px;
  font-weight: 500;
}

.contenedor_slider_testimonio .item_slider_testimonio p {
  width: 80%;
}

/*BOTON SLIDER testimonio*/
.contenedor_slider_testimonio .boton_slider_testimonio {
  position: absolute;
  top: calc(50%);
  cursor: pointer;
}

/*testimonio BOTON SLIDER*/
.contenedor_slider_testimonio .boton_slider_testimonio i {
  color: var(--color-terciario-texto);
  font-size: 40px;
}

.contenedor_slider_testimonio .boton_slider_testimonio.inactive i {
  color: var(--color-primario-texto);
}

.contenedor_slider_testimonio .boton_slider_testimonio:hover i {
  color: var(--color-primario-texto);
}

.contenedor_slider_testimonio .boton_slider_testimonio:first-of-type {
  left: 0px;
}

.contenedor_slider_testimonio .boton_slider_testimonio:last-of-type {
  right: 0px;
}

/*4 testimonioS*/
@media only screen and (max-width: 1400px) {

  .centrar_contenedor_slider_testimonio {
    padding: 60px 25px;
  }

  .contenedor_slider_testimonio {
    max-width: 1000px;
  }

}

/*3 testimonioS*/
@media only screen and (max-width: 950px) {

  /*CONTENEDOR SLIDER testimonio*/
  .contenedor_slider_testimonio {
    max-width: 800px;
  }

}

/*2 testimonioS*/
@media only screen and (max-width: 650px) {

  /*CENTRAR SLIDER*/
  .centrar_contenedor_slider_testimonio {
    padding: 60px 30px;
  }

  /*CONTENEDOR SLIDER testimonioS*/
  .contenedor_slider_testimonio {
    max-width: 400px;
  }

}