.imageWrapper {
  background-color: #EEE;
  border-bottom: 2px solid #DDD;
  padding: 50px 0;
}

.zoom {
        position:relative;
        overflow:hidden;
        margin:0 auto;
        width:1200px;
        height:600px;
}

.zoom img {
        animation:move 7s ease infinite; /* Change this to alternate to stop the loop. */
        -ms-animation:move 7s ease infinite;
        -webkit-animation:move 7s ease infinite;
        -0-animation:move 7s ease infinite;
        -moz-animation:move 7s ease infinite;
        position:absolute;
        top:80px;
        left:220px;
}

@-webkit-keyframes move {
  from {
        transform: scale(2.3);
    -ms-transform: scale(2.3); /* IE 9 */
    -webkit-transform: scale(2.3); /* Safari and Chrome */
    -o-transform: scale(2.3); /* Opera */
    -moz-transform: scale(2.3); /* Firefox */
  }
  to {
        transform: scale(2.4.0);
    -ms-transform: scale(2.4); /* IE 9 */
    -webkit-transform: scale(2.4); /* Safari and Chrome */
    -o-transform: scale(2.4); /* Opera */
    -moz-transform: scale(2.4); /* Firefox */
  }
}

