@charset "utf-8";
/* CSS Document */

/* handles initial setup */
.anime-view .to-animate,
.anime-scroll .to-animate {
    -webkit-transition: transform 0.4s linear, opacity 0.4s linear;
    -moz-transition: transform 0.4s linear, opacity 0.4s linear;
    -ms-transition: transform 0.4s linear, opacity 0.4s linear;
    -o-transition: transform 0.4s linear, opacity 0.4s linear;
    transition: transform 0.4s linear, opacity 0.4s linear;
    transform: translate3d(0,40px,0);
	-webkit-transform: translate3d(0,40px,0);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden; 
	position:relative;
	opacity:0 !important;
	visibility:hidden;
    transform-style: preserve-3d;
}

/* adds your animation effect */
.anime-view.active .to-animate,
.anime-scroll.active .to-animate {
    transform: translate3d(0,0px,0);
	-webkit-transform: translate3d(0,0px,0);
	opacity:1!important;
	visibility:visible;
}

/* sets all your transition delays here */
.anime-view .to-animate:nth-of-type(1),
.anime-scroll .to-animate:nth-of-type(1) {
	transition-delay: 0s;
}

.anime-view .to-animate:nth-of-type(2),
.anime-scroll .to-animate:nth-of-type(2),
.anime-scroll .to-animate.d-2,
.anime-view .to-animate.d-2 {
	transition-delay: 0.3s;
}

.anime-view .to-animate:nth-of-type(3),
.anime-scroll .to-animate:nth-of-type(3) {
	transition-delay: 0.6s;
}

.anime-view .to-animate:nth-of-type(4),
.anime-scroll .to-animate:nth-of-type(4) {
	transition-delay: 0.9s;
}

.anime-view .to-animate:nth-of-type(5),
.anime-scroll .to-animate:nth-of-type(5) {
	transition-delay: 1.2s;
}

.anime-view .to-animate:nth-of-type(6),
.anime-scroll .to-animate:nth-of-type(6) {
	transition-delay: 1.5s;
}

.anime-view .to-animate:nth-of-type(7),
.anime-scroll .to-animate:nth-of-type(7) {
	transition-delay: 1.8s;
}

.anime-view .to-animate:nth-of-type(8),
.anime-scroll .to-animate:nth-of-type(8) {
	transition-delay: 2.1s;
}

.anime-view .to-animate:nth-of-type(9),
.anime-scroll .to-animate:nth-of-type(9) {
	transition-delay: 2.4s;
}

.anime-view .to-animate:nth-of-type(10),
.anime-scroll .to-animate:nth-of-type(10) {
	transition-delay: 2.7s;
}

.anime-view .to-animate:nth-of-type(11),
.anime-scroll .to-animate:nth-of-type(11) {
	transition-delay: 3.0s;
}

.anime-view .to-animate:nth-of-type(12),
.anime-scroll .to-animate:nth-of-type(12) {
	transition-delay: 3.1s;
}

.anime-view .to-animate.no-delay,
.anime-scroll .to-animate.no-delay {
	transition-delay: 0s !important;
}
