.scroll {
  position: absolute;
  right: 7%;
  top: 80%;
  writing-mode: vertical-rl;
}


.scroll::before {
  animation: scroll 3s infinite;
  background-color: #222;
  box-shadow:none;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: .5px;
  z-index: 2;
}

.scroll span{
	color:#fff;
	font-size:.6em;
}

.scroll::after {
  background-color: #fff;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  box-shadow:none;
  right: 0;
  width: .5px;
}


@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}



