<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Animate */

/*████████████████ ◢ Global ◣ ███████████████*/
/*████████████████ ◢ Global ◣ ███████████████*/

.all_in_1{
	opacity: 1;
	transform:
	perspective(100px)
	translate3d(0px,0px,0px)
	scale3d(1, 1, 1)
	rotate3d(0, 1, 0, 0deg)
	skewX(0deg) skewY(0deg);
	transition: all .9s cubic-bezier(0,.56,.31,.9);	
}

.all_in_2{
	opacity: 1;
	transform: translate3d(0px,0px,0px);
	transition: all 1.8s cubic-bezier(.06,.67,.26,.98);	
}

.all_in_3{
	opacity: 1;
	transform:
	translate3d(0px,0px,0px)
	scale3d(1, 1, 1)
	rotate3d(0, 1, 0, 0deg);
	transition: transform .8s cubic-bezier(.2,.49,.35,1.19);	
}


.all_in_4{
	opacity: 1;
	transform: translate3d(0px,0px,0px);
	transition: all 1s cubic-bezier(.06,.67,.26,.98);	
}


.zoom_in{
	transform: scale3d(3.5, 3.5, 1);
	transition: all .8s cubic-bezier(.68,-0.13,.67,.73);	
}

.all_out_1{
	opacity: 0;
	transform: translate3d(-30px,0px,0px);
	transition: all .6s cubic-bezier(.75,.07,.61,.61);	
}

.alpha_0{
	opacity: 0;
	transition: all .3s ease-in;	
}
.alpha_1{
	opacity: 1;
	transition: all .01s ease-in;	
}

/*████████████████ ◢ FIM ◣ ███████████████*/
/*▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ ◢ FIM ◣ ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓*/</pre></body></html>