Animated Gradient Background in Elementor Pro

Assign ‘animate-bg CSS Class to Section or Column.

.animate-bg .elementor-background-overlay  {
    background-image: linear-gradient(-45deg, #1A1A75,#002DAC,#00C9FC,#01E0B5) !important;
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}