Help designing a button please

Hello guys, sorry to bother you, I wanted to ask if anyone knows how to make the text move like this?

I attach the link to the page right here
https://autosouls.com.co/LUCESLED.CP?fbclid=PAAaYXgwaqLvO8231MeRny4m408kJ4YhjkTiJgRPa-9cRTVOoEOwfditMI660_aem_AdB01yJ5rwXOdU7fxOWArz6YCKqp-sfWG4E91nnmLEN2pGgjxT0j23aI-a2QqV7rZCbENKi-J_gaGfDCD2Lj02l_

Hi @Juan,
Please select the element you want to have that effect on, go to Advanced, and add this class: pulsing_elmnt

Go to Custom Codes > Custom CSS and paste the following:

/* CSS */
.pulsing_elmnt {
  animation: pulsing_elmnt 1.5s infinite;
}
@keyframes pulsing_elmnt {
     0% {
        transform: scale(.9);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 50px rgba(#5a99d4, 0);
    }
    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 rgba(#5a99d4, 0);
    }
}