
.link {
    display: inline-flex;
    align-items: center;
    padding: 5px;
    text-decoration: none;
    transform: rotate(-90deg);
    transform-origin: 0 0;
    position: absolute;
    z-index: 1;
    background-color: white;
    height: 60px;
    cursor: pointer;
  }
  .link__arrow {
    display: inline-flex;
  }
  .link__arrow span {
    position: relative;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    overflow: hidden;
    background: #BEBDBE;
    z-index: 2;
  }
  .link__arrow span:nth-child(1) {
    transform-origin: left bottom;
    transform: rotate(45deg) translate3d(8px, -10px, 0);
  }
  .link__arrow span:nth-child(2) {
    transform-origin: left bottom;
    transform: rotate(-45deg);
  }
  .link__arrow span:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 0;
    height: 2px;
    background: #e10d19;
  }
  .link__line {
    position: relative;
    margin-left: -14px;
    margin-right: 30px;
    width: 80px;
    height: 2px;
    background: #BEBDBE;
    overflow: hidden;
    z-index: 1;
  }
  .link__line:after {
    content: "";
    display: block;
    position: absolute;
    left: 80px;
    width: 40px;
    height: 2px;
    background: #e10d19;
  }
  .link__text {
    color: #e10d19;
    font-size: 14px;
    font-weight: 600;
    padding-right: 10px;
    letter-spacing: 1.5px;
  }
  /* .link:hover .link__line:after {
    animation: animation-line 1.5s forwards;
  }
  .link:hover .link__arrow span:after {
    animation: animation-arrow 1.5s forwards;
    animation-delay: 1s;
  } */
  
  .link .link__line:after {
      animation: animation-line 2.5s forwards infinite;
      animation-timing-function: cubic-bezier(.35,1,.11,1);
  }
  .link .link__arrow span:after {
      animation: animation-arrow 2.5s forwards infinite;
      animation-timing-function: cubic-bezier(.73,-0.7,.32,1.04);
  }


#mouse_wheel { border: 2px solid #5d9f9b; -webkit-border-radius: 8px; -moz-border-radius: 8px; border-radius: 8px; background-color: #5d9f9b;
    /* position property required to play animation  */
    position: relative; height: 3px; width: 3px;
    /* to center wheel in mouse body */
    margin: 0 auto;  animation: wheel_animation 1.5s linear infinite; }

/* include use -moz-, -webkit-, or -o- for respective browser type*/
@keyframes wheel_animation { 
    0% { opacity: 0; top: 2px; }
    50% { opacity: 1; top: 50%; }
    100% { opacity: 0; top: 33px; }
}
  
  @keyframes animation-line {
    0% {
      left: 80px;
    }
    100% {
      left: 0;
    }
  }
  @keyframes animation-arrow {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }