@keyframes MoveLeft {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    to {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}
@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes text-shadow-drop-br {
  0% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  100% {
      box-shadow: 5px 5px 15px 10px rgba(0, 0, 0, 0.4), 10px 10px 18px 0px rgba(0, 0, 0, 0.3), 15px 15px 18px 0px rgba(0, 0, 0, 0.2), 20px 20px 18px 0px rgba(0, 0, 0, 0.1);
  }
}
@keyframes text-display {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}
/*
@keyframes scroll-anim {
  0% {
    clip-path: inset(31.2vw 17.4vw 5vw 17.4vw);
  }
  100% {
    clip-path: inset(-60rem 0 -0rem 0);
  }
}
@keyframes sp-scroll-anim {
  0% {
    clip-path: inset(50vw 10vw 10% 10vw);
  }
  100% {
    clip-path: inset(-60rem 0 0 0);
  }
}
@keyframes scroll-anim-blur {
  0% {
    opacity: 0;
    backdrop-filter: blur(0px);
    background: rgba(255, 255, 255, 0);
  }
  80% {
    opacity: 1;
    backdrop-filter: blur(30px);
    background: rgba(255, 255, 255, 0.75);
  }
  100% {
    opacity: 1;
    backdrop-filter: blur(30px);
    background: rgba(255, 255, 255, 0.75);
  }
}
body.menu_open{
    height: 100vh;
    overflow: hidden;
}
*/
