
/* ------------------------------------------------------------ */
/* ---------------------- BARRA DE LOGOS  --------------------- */
/* ------------------------------------------------------------ */

.slides-logo-title {
    display: block;
    margin-top: 50px;
    margin-bottom: 20px;
    font-family: RobotoL, sans-serif;
    font-size: 30px;
    text-align: center;
    font-weight: 700;
    color: #144576;
    margin-right: auto;
    margin-left: auto;

}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.slides-logos {
  overflow: hidden;
  padding: 40px 0;
  background: white;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.slides-logos:before,
.slides-logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.slides-logos:before {
  left: 0;
  /* background: linear-gradient(to left, rgba(255, 255, 255, 0), white); */
}

.slides-logos:after {
  right: 0;
  /* background: linear-gradient(to right, rgba(255, 255, 255, 0), white); */
}

/* When the mouse hover the animation stops */
/* .slides-logos:hover .slides-logos-slide {
  animation-play-state: paused;
} */

.slides-logos-slide {
  display: inline-block;
  animation: 55s slide infinite linear;
}

.slides-logos-slide img {
  height: 130px;
  margin: 0 40px;  
}

@media screen and (max-width: 1070px) {
  .slides-logo-title {
        width: 70%;
        font-size: 26px;
    }
}

@media screen and (max-width:600px) {  
		.slides-logo-title {
			font-size: 24px;
		}
}