/* Photo Banner */
.photo-roll--container {
  width: 100%;
  overflow: hidden;
  margin: 10px auto;
}

.photo-roll {
  height: 125px;
  width: 2500px;
  margin-bottom: 5px;
  font-size: 0;
}
.photo-roll img {
  margin-bottom: 10px;
  margin-right: 5px;
  height: 125px;
  width: 250px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.photo-roll img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  cursor: pointer;
}
.photo-roll img:first-child {
  -webkit-animation: bannermove 300s linear infinite;
          animation: bannermove 300s linear infinite;
}

/* Keyframe animations*/
@-webkit-keyframes "bannermove" {
  0% {
    margin-left: 0px;
  }
  100% {
    margin-left: -2130px;
  }
}
@keyframes "bannermove" {
  0% {
    margin-left: 0px;
  }
  100% {
    margin-left: -2130px;
  }
}
