@charset "utf-8";
/* CSS Document */

.image-wrap {
  background: #222;
  width: 100%;
  height: 700px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.image-wrap img {
  width: 100%;
  animation: move 40s ease infinite;
  /* Add infinite to loop. */
  
  -ms-animation: move 40s ease infinite;
  -webkit-animation: move 40s ease infinite;
  -0-animation: move 40s ease infinite;
  -moz-animation: move 40s ease infinite;
  position: absolute;
}

@media screen and (max-width: 1145px) {
.image-wrap {
  height: 600px;
  }
}
@media screen and (max-width: 890px) {
.image-wrap {
  height: 300px;
  }
}
@media screen and (max-width: 680px) {
.image-wrap {
  height: 200px;
  }
}
@media screen and (max-width: 440px) {
.image-wrap {
  height: 100px;
  }
}

@-webkit-keyframes move {
  0% {
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    -o-transform-origin: bottom left;
    transform-origin: bottom left;
    transform: scale(1.0);
    -ms-transform: scale(1.0);
    /* IE 9 */
    
    -webkit-transform: scale(1.0);
    /* Safari and Chrome */
    
    -o-transform: scale(1.0);
    /* Opera */
    
    -moz-transform: scale(1.0);
    /* Firefox */
	opacity: 0;
  }
  5% {
  opacity: 1;
  }
  95% {
  opacity: 1;
  }
  100% {
    transform: scale(1.2);
    -ms-transform: scale(1.2);
    /* IE 9 */
    
    -webkit-transform: scale(1.2);
    /* Safari and Chrome */
    
    -o-transform: scale(1.2);
    /* Opera */
    
    -moz-transform: scale(1.2);
    /* Firefox */
	opacity: 0;
  }
}
