/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 09 2026 | 06:22:59 */
.topNewHeroSection {
	--purple: #17214f;
	--primary: #d71920;
	--cyan: #ff4b4b;
}

.topNewHeroSection h1 .iyf-shimmer {
	padding: 0 4px 0 0;
	background: linear-gradient(
		135deg,
		var(--purple) 0%,
		var(--primary) 60%,
		var(--cyan) 100%
	);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: shimmer-text 6s linear infinite;
	display: inline;
}

@keyframes shimmer-text {
	0% {
		background-position: 0% center;
	}
	100% {
		background-position: 200% center;
	}
}