.link-hover{
    font-size: 0.925rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.45);
    transform: translateY(0%);
    transition: all .1s linear;
    -moz-transition: all .1s linear;
    -webkit-transition: all .1s linear;
  }
  .link-hover:hover{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transform: translateY(-10%);
    color: rgb(66, 192, 187) !important;
  }