.loader4 {
    font-size: 1.4rem;
    font-family: sans-serif;
    font-variant: small-caps;
    font-weight: 700;
    background: conic-gradient(
      rgb(5, 19, 219) 0 25%,
      #ffde2b 75%,
      #0542e9 50% 75%,
      #ffde2b 75%
    );
    background-size: 200% 200%;
    animation: animateBackground 7.5s ease-in-out infinite;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
  }
  
  @keyframes animateBackground {
    25% {
      background-position: 0 100%;
    }
  
    50% {
      background-position: 100% 100%;
    }
  
    75% {
      background-position: 100% 0%;
    }
  
    100% {
      background-position: 0 0;
    }
  }
  