* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

.contenedor {
  width: 100%;
  overflow: hidden;
}

.slider-contenedor {
  margin-top: 50px;
  width: 100%;
  margin-bottom: 65px;
  display: flex;
}

.contenido-slider {
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-shrink: 0;
}

.contenido-slider:nth-child(2) {
  background: #fff;
  font-weight: bold;
  color: #332863;
}

.contenido-slider:nth-child(3) {
  background: #fff;
  color: #611a68;
}

.contenido-slider > img {
  width: 700px;
}

.contenido-slider > div {
  width: 35%;
}

.contenido-slider h2 {
  font-weight: 300;
  text-align: justify;
  line-height: 30px;

}

.contenido-slider a {
  color: #fff;
  background: #332863;
  width: 200px;
  display: block;
  padding: 10px 0;
  text-align: center;
  border-radius: 3px;
  margin-top: 20px;
  text-decoration: none;
  font-size: 18px;
}

.contenido-slider:nth-child(2) a {
  background: #332863;
  color: #fff;
}

@media screen and (max-width: 900px) {
  .contenido-slider > img {
    width: 300px;
  }

  .contenido-slider > div {
    width: 40%;
  }

  .contenido-slider h2 {
    font-size: 23px;
  }
}

@media screen and (max-width: 600px) {
  .contenido-slider {
    flex-direction: column-reverse;
  }

  .contenido-slider > div {
    width: 80%;
  }

  .contenido-slider {
    text-align: center;
  }
  .contenido-slider a {
    /*justify-content: center;*/
    display: flex;
    margin: auto;
    padding: 15px 9px;
    margin-top: 20px;
  }
}
