/*
Theme Name: JGDF
Theme URI: https://digitalsol.ca
Template: hello-elementor
Author: Sergei Davidov
Author URI: https://digitalsol.ca
Description: JGDF Theme based on Elementor Hello theme
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 1.0.0.1744433233
Updated: 2025-04-12 04:47:13

*/

/* Custom Slide Animations */
.custom-blur-out-up
{
	animation-name: customBlurOut;
}
.custom-blur-out-down
{
	animation-name: customBlurDown;
}
.custom-blur-out-left
{
	animation-name: customBlurLeft;
}
.custom-blur-out-right
{
	animation-name: customBlurRight;
}
@keyframes customBlurOut
{
	from
	{
		opacity: 0;
		transform: translateY(20px);
		filter: blur(10px);
	}

	to
	{
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}
@keyframes customBlurDown
{
	from
	{
		opacity: 0;
		transform: translateY(-20px);
		filter: blur(10px);
	}

	to
	{
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}
@keyframes customBlurLeft
{
	from
	{
		opacity: 0;
		transform: translateX(20px);
		filter: blur(10px);
	}

	to
	{
		opacity: 1;
		transform: translateX(0);
		filter: blur(0);
	}
}
@keyframes customBlurRight
{
	from
	{
		opacity: 0;
		transform: translateX(-20px);
		filter: blur(10px);
	}

	to
	{
		opacity: 1;
		transform: translateX(0);
		filter: blur(0);
	}
}

