.fv__scrollDown {
  position: absolute;
  left: 50%;
  bottom: -2vh;
  height: 80px;
}

.fv__scrollDown span {
  position: absolute;
  left: 50%;
  top: 3.5vh;
  transform: translateX(-50%);
  color: #8d775e;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.fv__scrollDown::after {
  content: '';
  position: absolute;
  top: -80px;
  width: 1px;
  height: 55px;
  background: #8d775e;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

@keyframes pathmove {
  0% {
    height: 0;
    opacity: 0;
  }
  30% {
    height: 50px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 3.5vh;
    opacity: 0;
  }
}
