.logos-section {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  mix-blend-mode: darken; /* Many of the files had white backgrounds used in sections with a background colour */
}

.logos {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.logo {
  padding: 0.75rem;
}

/* On smaller screens, stop stacking logos and animate instead */

@media (max-width: 767px) {
  .logos-section {
    overflow-x: scroll;
    -ms-overflow-style: none;  /* Hide overflow scrollbar - IE and Edge */
    scrollbar-width: none;  /* Hide overflow scrollbar - Firefox */
  }
  
  .logos-section::-webkit-scrollbar {
    display: none; /* Hide overflow scrollbar - Chrome, Safari and Opera */
  }  

  .logos {
    flex-wrap: nowrap;
  }

  .logos-section.is-overflow .logos {
    transform: translateX(100%);
    animation: 20s linear 0s infinite normal none running scroller;  
  }

  .logo img {
    max-width: none; /* Allows overflow */
  }

  @keyframes scroller {
    100% {
      transform: translateX(-100%);
    }
  }
}