/****************************************  TEXT-EFFECT **************************************/


.text_anima {
  animation: bgMove 50s ease-in-out infinite alternate;

  /*   these four lines make the image become the fill of text  */
  color: transparent !important;
  background-clip: text;
  -webkit-background-clip: text;
    background-size: cover !important;
}

@keyframes bgMove {
  from {
    background-position: 50% 100%;
  }
  to {
    background-position: 50% 0%;
  }
}


.text_anima span {
    color: transparent !important;
    line-height: 90%;
    letter-spacing: -2px;
}
