#klanten {
  padding: 42px 0;
}

.klanten__title h2 {
  margin: 16px 2rem;
}

.klanten__container {
  height: 72px;
  position: relative;
  overflow: hidden;
}

#klanten .klanten__img-container {
  height: 72px;
  position: absolute;
  top: 0px;
  left: 0px;
  overflow: hidden;
  white-space: nowrap;
  -webkit-animation: bannermove 30s linear infinite;
  animation: bannermove 30s linear infinite;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.klanten__img-container img {
  margin: 0 16px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  height: auto;
  width: auto;
  max-height: 100%;
  max-width: 120px;
}

@-webkit-keyframes bannermove {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@keyframes bannermove {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@media (min-width: 1400px) {
  #klanten {
    padding: 104px 0;
  }

  .klanten__title h2 {
    margin-bottom: 42px;
    font-size: 32px;
    line-height: 48px;
  }
}