/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 31 2025 | 07:06:30 */
.glow-animation .elementor-icon-list-icon {
    animation: glow-animation 3s infinite;
}

/* Keyframes for glowing animation */
@keyframes glow-animation {
    0%, 100% {
        filter: drop-shadow(0 0 1px #00e2ae) drop-shadow(0 0 2px #018f6e) drop-shadow(0 0 3px #003428);
    }
    50% {
        filter: drop-shadow(0 0 2px #00e2ae) drop-shadow(0 0 4px #018f6e) drop-shadow(0 0 6px #003428);
    }
}
