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

/* ----- Scroll Fadein ----- */
.effect-fade {
    opacity : 0;
    transform : translate(0, 100px);
    transition : all 1s 0.1s;
}

.effect-fade.effect-scroll {
    opacity : 1;
    transform : translate(0, 0);
}
/* ----- Scroll Fadein END ----- */