
.bloque_logos {
  overflow: hidden;
}

.sliding-background {
  background: url("../theme/logos/svg/baner_logos_universidades.svg") repeat-x;
  height: 90px; /* The image width times 3 (translate3d) */
	width: 5400px;
  animation: slide 90s linear infinite; /* total times animation */
}
.sliding-background2 {
  background: url("../theme/logos/svg/baner_logos_convenios.svg") repeat-x;
  height: 90px;
  /*filter: invert(60%) sepia(79%) saturate(2158%) hue-rotate(112deg) brightness(94%) contrast(101%);*/
  width: 5400px; /* The image width times 3 (translate3d) */
  animation: slide 90s linear infinite; /* total times animation */
}



@keyframes slide{
  0%{
    transform: translate3d(0, 0, 0);
  }
  100%{
    transform: translate3d(-1800px, 0, 0);
  }
}