.global{position: relative;}

.global-btn:after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--global);
    transition: all .25s ease-in-out;
    z-index: -1;
}

.global-btn:hover:after {
    width: 100%;
}

@keyframes TopBottom{
    0% {
        transform: translate(0px, 0px);
    }

    65% {
        transform: translate(0, 30px);
    }
    100% {
        transform: translate(0px, 0px);
    }
}


@keyframes bgPos{
  25% {
      transform: translate3d(150px, -150px, 0) rotate(0.001deg);
  }
  75% {
      transform: translate3d(0, 0, 0) rotate(0.001deg);
  }
}