#products-frames .frame-container{
	opacity: 0;
	transform: translateY(80px) rotate(45deg);
}
#products-frames .frame-container:nth-child(1){
	animation: appear 0.6s linear forwards;
}
#products-frames .frame-container:nth-child(2){
	animation: appear 0.6s linear .1s forwards;
}
#products-frames .frame-container:nth-child(3){
	animation: appear 0.6s linear .2s forwards;
}
#products-frames .frame-container:nth-child(4){
	animation: appear 0.6s linear .3s forwards;
}
#products-frames .frame-container:nth-child(5){
	animation: appear 0.6s linear .4s forwards;
}
#products-frames .frame-container:nth-child(6){
	animation: appear 0.6s linear .5s forwards;
}

@keyframes appear{
	100%{
		opacity: 1;
		transform: translateY(0px);
		transform: translateY(0px) rotate(45deg);
	}
}


/*

Mobile CSS

*/
@media screen and (max-width: 768px){
    #products-frames > div{
        margin-bottom: 20px;
    }
}