#sandwich li:nth-child(7) p { 
    -webkit-animation-delay: 0.5s; 
    animation-delay: 0.5s;
} 

#sandwich li:nth-child(6) p { 
    -webkit-animation-delay: 1s; 
    animation-delay: 1s;
} 

#sandwich li:nth-child(5) p { 
    -webkit-animation-delay: 1.5s; 
    animation-delay: 1.5s;
} 

#sandwich li:nth-child(4) p { 
    -webkit-animation-delay: 2s; 
    animation-delay: 2s;
} 

#sandwich li:nth-child(3) p { 
    -webkit-animation-delay: 2.5s; 
    animation-delay: 2.5s;
} 

#sandwich li:nth-child(2) p { 
    -webkit-animation-delay: 3s; 
    animation-delay: 3s;
} 

#sandwich li:nth-child(1) p { 
    -webkit-animation-delay: 3.5s; 
    animation-delay: 3.5s;
}

#sandwich > li:nth-child(1) {
	animation-name: fadeIn;
	-webkit-animation-name: fadeIn;	

	animation-duration: 1.5s;	
	-webkit-animation-duration: 1.5s;

	animation-timing-function: ease-in-out;	
	-webkit-animation-timing-function: ease-in-out;		

	visibility: visible !important;	
}

@-webkit-keyframes bounceInDown { 
   0% { 
       opacity: 0; 
        -webkit-transform: translateY(-2000px); 
    } 
    60% { 
        opacity: 1; 
        -webkit-transform: translateY(30px); 
    } 
    80% { 
        -webkit-transform: translateY(-10px); 
    } 
    100% { 
        -webkit-transform: translateY(0); 
    } 
} 

@keyframes bounceInDown { 
    0% { 
        opacity: 0; 
        transform: translateY(-2000px); 
    } 
    60% { 
        opacity: 1; 
        transform: translateY(30px); 
    } 
    80% { 
        transform: translateY(-10px); 
    } 
    100% { 
        transform: translateY(0); 
    } 
} 

@keyframes fadeIn {
	0% {
		transform: scale(0);
		opacity: 0.0;		
	}
	60% {
		transform: scale(1.1);	
	}
	80% {
		transform: scale(0.9);
		opacity: 1;	
	}	
	100% {
		transform: scale(1);
		opacity: 1;	
	}		
}

@-webkit-keyframes fadeIn {
	0% {
		-webkit-transform: scale(0);
		opacity: 0.0;		
	}
	60% {
		-webkit-transform: scale(1.1);
	}
	80% {
		-webkit-transform: scale(0.9);
		opacity: 1;	
	}	
	100% {
		-webkit-transform: scale(1);
		opacity: 1;	
	}		
}

#sandwich li p { 
    -webkit-animation-name: bounceInDown; 
    animation-name: bounceInDown; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both;     
    -webkit-animation-duration: 1s; 
    animation-duration: 1s;     
}

#sandwich li:nth-child(7) {
	animation-name: fadeIn;
	-webkit-animation-name: fadeIn;	

	animation-duration: 1.5s;	
	-webkit-animation-duration: 1.5s;

	animation-timing-function: ease-in-out;	
	-webkit-animation-timing-function: ease-in-out;		

	visibility: visible !important;	
}