/*TITLE*/
.fadeInDown{
	opacity: 0;
	animation: titleFadeDown 3s forwards;
	animation-delay: 1s;
}
.fadeInUp2{
	opacity: 0;
	animation: titleFadeUp 3s forwards;
	animation-delay: 1s;
}
/*IMAGE COVER*/
.fragments{
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	display: flex;
	//flex-direction: column;
}
.fragment{
	background-color: white;
	width: 20%;
	height: 100%;
	animation: appear 1.25s forwards;
}
/*DELAY FOR CASCADE EFECT*/
.fragment:nth-child(1){animation-delay: 0.25s;}
.fragment:nth-child(2){animation-delay: 0.50s;}
.fragment:nth-child(3){animation-delay: 0.78s;}
.fragment:nth-child(4){animation-delay: 1s;}
.fragment:nth-child(5){animation-delay: 1.25s;}

/*NOT APPLIED*/
/*
.fragment:nth-child(6){animation-delay: 1.5s;}
		
.fragment:nth-child(4){
	animation-delay: 0.5s;
}

.fragment:nth-child(5){
	animation-delay: 0.4s;
}
.fragment:nth-child(6){
	animation-delay: 0.2s;
}
*/