.bloque-nuestros-clientes {
    display: flex;
    width: 100%;
    padding: 3.75rem 0 5.625rem 0;
    flex-direction: column;
    align-items: center;
    gap: 3.75rem;
    flex-shrink: 0;
}

.bloque-nuestros-clientes h2 {
    margin: 0;
}

.bloque-nuestros-clientes .intro-logos_overflow {
    overflow: hidden;
    width: 100%;
    display: flex;
}

.bloque-nuestros-clientes .intro-logos_wrapper img{
    max-width: 6rem;
}

.bloque-nuestros-clientes .intro-logos_wrapper a {
    filter: grayscale(1);
}

.bloque-nuestros-clientes .intro-logos_wrapper a:hover{
    filter: grayscale(0);
}

.bloque-nuestros-clientes .titulo-nuestros-clientes {
    color: var(--Neutral-1A1A1A, #1A1A1A);
    text-align: center;
    font-family: "Residenz Grotesk SemiBold";
    font-size: 1.5rem;
    line-height: 108%; /* 1.62rem */
}

.bloque-nuestros-clientes .contenedor-boton-nuestros-clientes.movil{
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 40px 0;
}

.bloque-nuestros-clientes .intro-logos_wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-animation: logoloop 40s linear infinite;
    -moz-animation: logoloop 40s linear infinite;
    -o-animation: logoloop 40s linear infinite;
    width: 100%;
    padding-left: 9.5rem;
}

.bloque-nuestros-clientes .intro-logos_overflow:hover .intro-logos_wrapper, .bloque-nuestros-clientes .intro-logos_overflow:focus-within .intro-logos_wrapper{
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

@keyframes logoloop {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media screen and (max-width: 959px) {
  .bloque-nuestros-clientes {
    padding: 2.5rem 0 2.625rem 0;
    gap: 2.5rem;
  }

  .bloque-nuestros-clientes .titulo-nuestros-clientes {
    font-size: 0.875rem;
  }

  .bloque-nuestros-clientes .intro-logos_wrapper img {
    max-width: 3rem;
    margin: 0 1rem;
  }

  .bloque-nuestros-clientes .intro-logos_overflow {
    width: 100%;
  }

  .bloque-nuestros-clientes .intro-logos_wrapper {
    padding-left: 1.5rem;
    width: 200%;
  }
}
