@-webkit-keyframes scroll-inner {
  from {
    margin-top: 15%;
  }
  to {
    margin-top: 50%;
  }
}
@keyframes scroll-inner {
  from {
    margin-top: 15%;
  }
  to {
    margin-top: 50%;
  }
}
@-webkit-keyframes scroll-mouse {
  from {
    margin-top: 0;
  }
  to {
    margin-top: 15px;
  }
}
@keyframes scroll-mouse {
  from {
    margin-top: 0;
  }
  to {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 2900px) {
  div.mouse-container {
    position:absolute;
    margin-top: -110px;
    margin-left: 48%;
    display: block;
    height: 100px;
  }
  div.mouse {
    position: relative;
    margin: 0 auto;
    display: block;
    width: 22px;
    height: 45px;
    border-radius: 25px;
    -webkit-animation: scroll-mouse 1.5s;
    animation: scroll-mouse 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  div.mouse span.scroll-down {
    display: block;
    width: 2px;
    height: 10px;
    background: #000;
    border-radius: 1px;
    margin: 15% auto auto auto;
  }
}
@media only screen and (max-width: 868px) {
  div.mouse-container {
    margin-left: 42.8%;
  }
  div.mouse {
  }
  div.mouse span.scroll-down {
  }
}
