.hover-link-f2{
}

.hover-link-f2:before{
    content:'';
    position: absolute;
    bottom: -5px;
    display:block;
    width: 0px;
    height: 2px;
    background-color: #f2f2f2;
    transition: width  0.8s ease;
}

.hover-link-f2:hover:before{
    width: inherit;
}



@keyframes moveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(40px);
  }
}

.arrow-anim{
  animation: moveUpDown 2s ease-in-out infinite;
}
