.section_evolucion_procesos {
  width: 100%;
  height: auto;
  background-color: var(--background-color);
  padding: 30px var(--padding-gral);
  padding-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
.section_evolucion_procesos .text_container {
  color: white;
  width: 40%;
}
.section_evolucion_procesos .text_container h2 {
  font-weight: bold;
  font-size: var(--title-size);
  line-height: 110%;
  margin-bottom: 30px;
}
.section_evolucion_procesos .text_container p {
  margin: 10px 0px;
  margin-bottom: 20px;
  font-size: var(--text-size);
}
.section_evolucion_procesos .text_container span {
  font-weight: bold;
  color: var(--main-color);
}
.section_evolucion_procesos .video_container {
  width: 55%;
  height: 400px;
}
.section_evolucion_procesos .video_container video {
  height: 100%;
  max-width: 100%;
}
@media screen and (max-width: 750px) {
  .section_evolucion_procesos {
    display: block;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section_evolucion_procesos .text_container {
    width: 100%;
  }
  .section_evolucion_procesos .text_container h2 {
    margin-bottom: 20px;
  }
  .section_evolucion_procesos .video_container {
    margin-top: 30px;
    width: 100%;
    height: auto;
  }
  .section_evolucion_procesos .video_container video {
    border-radius: 25px;
    height: auto;
    width: 100%;
  }
}
