@keyframes gradientMove {
  0% {
    background-position: 0% 50%; /* Start from the left */
  }
  100% {
    background-position: 200% 50%; /* Move left, off-screen */
  }
}
.background-animated {
  background: linear-gradient(100deg, 
    var(--brand-bg-color) 40%, 
    var(--territory-color) 60%, 
    var(--brand-bg-color) 100%
  );
  background-size: 200% 1%; /* Make the gradient larger than the element’s width */
  animation: gradientMove 7s linear ; /* Continuous animation */
}
   .background-animated h2,.background-animated p,.background-animated .ani_bg_text{
     color:aliceblue;
   }