@charset "utf-8";
/*
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
=-=-=-=- DESIGNED AND BUILT BY IAN BESLER =-=-=-=-
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
*/

@keyframes animation-scale-up-from-center {
	0%		{transform: scale(0.0);}
	100%	{transform: scale(1.0);}
}

.animation-scale-up-from-center {
	animation: animation-scale-up-from-center 1s;
	animation-fill-mode: backwards;
	transform-origin: center center;
}

	.animation-scale-up-from-center:nth-of-type(1){animation-delay: 0.25s;}
	.animation-scale-up-from-center:nth-of-type(2){animation-delay: 0.50s;}
	.animation-scale-up-from-center:nth-of-type(3){animation-delay: 0.75s;}

@keyframes animation-pop-up {
	0%		{transform: scale(0.0)translateY(200px);}
	100%	{transform: scale(1.0)translateY(0px);}
}

section:hover .animation-pop-up {
	animation: animation-pop-up 0.25s;
}