
.icon-scroll,
.icon-scroll:before {
  position: absolute;
  left: 50%;
}

.icon-scroll span {
	position: absolute;
	bottom:-30px;
	letter-spacing: 2px;
	text-align: center;
	left:-14px;
	text-transform: uppercase;
	color: #666;
	font-size: 12px;
}

.icon-scroll {
  z-index:99;
  text-decoration:none;
  width: 25px;
  height: 40px;
  margin-left: -20px;
  top: 50%;
  margin-top: -35px;
  -webkit-box-shadow: inset 0 0 0 2px #999;
          box-shadow: inset 0 0 0 2px #999;
  border-radius: 25px;
}
.icon-scroll:before {
  content: '';
  width: 6px;
  height: 6px;
  background: #999;
  margin-left: -3px;
  top: 6px;
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
          animation-name: scroll;
}
@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
