#container {
  height: 150px;
  position: relative;
  overflow: hidden;
}

#container-b {
  height: 228px;
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0px auto;
}

#container-c {
  height: 146px;
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0px auto;
}

.photobanner {
  position: absolute;
  top: 0px;
  left: 0px;
  overflow: hidden;
  white-space: nowrap;
  animation: bannermove 15s linear infinite;
}

.photobanner-b {
  position: absolute;
  top: 0px;
  left: 0px;
  overflow: hidden;
  white-space: nowrap;
  animation: bannermove 30s linear infinite;
}

.photobanner-c {
  position: absolute;
  top: 0px;
  left: 0px;
  overflow: hidden;
  white-space: nowrap;
  animation: bannermove 20s linear infinite;
}

.photobanner img {
  margin: 0 0.5em;
}

.photobanner-b img {
  margin: 0 0.5em;
}

.photobanner-c img {
  margin: 0 0.5em;
}

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

.brands_animation {
  display: block;
  margin: 0px auto;
  width: 1150px;
}

