@charset "UTF-8";


/* ===== effects-zoomin Style ===== */


.effects-zoomin{
	visibility:hidden;
	opacity:0;
}
.effects-zoomin.active{
	visibility:visible;
	opacity:1;
	animation-name:zoomin;
	animation-duration:1s;
	animation-fill-mode:forwards;
}
@keyframes zoomin{
	from {
		transform: scale(1.1);
		opacity:0;
	}
	to {
		transform: scale(1);
		opacity:1;
	}
}



/* ===== effects-slidein-left Style ===== */


.effects-slidein-left{
	visibility:hidden;
	opacity:0;
}
.effects-slidein-left.active{
	visibility:visible;
	opacity:1;
	animation-name:slideinleft;
	animation-duration:1s;
	animation-fill-mode:forwards;
}
@keyframes slideinleft{
	from {
		transform: translateX(-20px);
		opacity:0;
	}
	to {
		transform: translateX(0px);
		opacity:1;
	}
}



/* ===== effects-slidein-right Style ===== */


.effects-slidein-right{
	visibility:hidden;
	opacity:0;
}
.effects-slidein-right.active{
	visibility:visible;
	opacity:1;
	animation-name:slideinright;
	animation-duration:1s;
	animation-fill-mode:forwards;
}
@keyframes slideinright{
	from {
		transform: translateX(20px);
		opacity:0;
	}
	to {
		transform: translateX(0px);
		opacity:1;
	}
}



/* ===== effects-slidein-bottom Style ===== */


.effects-slidein-bottom{
	visibility:hidden;
	opacity:0;
}
.effects-slidein-bottom.active{
	visibility:visible;
	opacity:1;
	animation-name:slideinbottom;
	animation-duration:1s;
	animation-fill-mode:forwards;
}
@keyframes slideinbottom{
	from {
		transform: translateY(20px);
		opacity:0;
	}
	to {
		transform: translateY(0px);
		opacity:1;
	}
}



/* ===== effects-fadein Style ===== */


.effects-fadein{
	visibility:hidden;
	opacity:0;
}
.effects-fadein.active{
	visibility:visible;
	opacity:1;
	animation-name:fadein;
	animation-duration:1s;
	animation-fill-mode:forwards;
}
@keyframes fadein{
	from {
		opacity:0;
	}
	to {
		opacity:1;
	}
}





@media screen and (max-width:2559px){}
@media screen and (max-width:2047px){}
@media screen and (max-width:1919px){}
@media screen and (max-width:1599px){}
@media screen and (max-width:1439px){}
@media screen and (max-width:1399px){}
@media screen and (max-width:1343px){}
@media screen and (max-width:1279px){}
@media screen and (max-width:1199px){}
@media screen and (max-width:1135px){}
@media screen and (max-width:1023px){}
@media screen and (max-width:959px){}
@media screen and (max-width:767px){}
@media screen and (max-width:639px){}
@media screen and (max-width:479px){}