@charset "UTF-8";
.effect-fade {
    opacity : 0;
    transform : translate(0, -200px);
    transition : all 1000ms;
}

.effect-fade.effect-scroll {
    opacity : 1;
    transform : translate(0, 0);
}

.animate-fade {
    opacity : 0;
}
.animate-fade span{
    display: none;
}
.animate {
    opacity : 1;
    margin: 100px 0 0;
}

.animate span {
    display: inline-block;
}

.animate span:nth-of-type(2) {
    animation-delay: calc(.08s*2) ;
}
.animate span:nth-of-type(3) {
    animation-delay: calc(.08s*3) ;
}
.animate span:nth-of-type(4) {
    animation-delay: calc(.08s*4) ;
}
.animate span:nth-of-type(5) {
    animation-delay: calc(.08s*5) ;
}
.animate span:nth-of-type(6) {
    animation-delay: calc(.08s*6) ;
}
.animate span:nth-of-type(7) {
    animation-delay: calc(.08s*7) ;
}
.animate span:nth-of-type(8) {
    animation-delay: calc(.08s*8) ;
}
.animate span:nth-of-type(9) {
    animation-delay: calc(.08s*9) ;
}
.animate span:nth-of-type(10) {
    animation-delay: calc(.08s*10) ;
}
.animate span:nth-of-type(11) {
    animation-delay: calc(.08s*11);
}
.animate span:nth-of-type(12) {
    animation-delay: calc(.08s*12) ;
}
.animate span:nth-of-type(13) {
    animation-delay: calc(.08s*13) ;
}
.animate span:nth-of-type(14) {
    animation-delay: calc(.08s*14) ;
}
.animate span:nth-of-type(15) {
    animation-delay: calc(.08s*15) ;
}
.animate span:nth-of-type(16) {
    animation-delay: calc(.08s*16) ;
}
.animate span:nth-of-type(17) {
    animation-delay: calc(.08s*17) ;
}
.animate span:nth-of-type(18) {
    animation-delay: calc(.08s*18) ;
}
.animate span:nth-of-type(19) {
    animation-delay: calc(.08s*19) ;
}
.animate span:nth-of-type(20) {
    animation-delay: calc(.08s*20) ;
}
/* Animation One */

.one span {
    color: #24a8e6;
    opacity: 0;
    transform: translate(-150px, -50px) rotate(-180deg) scale(3);
    animation: revolveScale .4s forwards;
}

@keyframes revolveScale {
    60% {
        transform: translate(20px, 20px) rotate(30deg) scale(.3);
    }

    100% {
        transform: translate(0) rotate(0) scale(1);
        opacity: 1;
    }
}


/* Animation Two */

.two span {
    color: #a5cb21;
    opacity: 0;
    transform: translate(200px, -100px) scale(2);
    animation: ballDrop .3s forwards;
}

@keyframes ballDrop {
    60% {
        transform: translate(0, 20px) rotate(-180deg) scale(.5);
    }

    100% {
        transform: translate(0) rotate(0deg) scale(1);
        opacity: 1;
    }
}


/* Animation Three */


.three span {
    color: #121212;
    opacity: 0;
    transform: translate(-300px, 0) scale(0);
    animation: sideSlide .5s forwards;
}

@keyframes sideSlide {
    60% {
        transform: translate(20px, 0) scale(1);
        color: #121212;
    }

    80% {
        transform: translate(20px, 0) scale(1);
        color: #121212;
    }

    99% {
        transform: translate(0) scale(1.2);
        color: #0f40ba;
    }

    100% {
        transform: translate(0) scale(1);
        opacity: 1;
        color: #121212;
    }
}


/* Animation Four */


.four span {
    color: #8d6a00;
    opacity: 0;
    transform: translate(0, -100px) rotate(360deg) scale(0);
    animation: revolveDrop .3s forwards;
}


@keyframes revolveDrop {
    30% {
        transform: translate(0, -50px) rotate(180deg) scale(1);
    }

    60% {
        transform: translate(0, 20px) scale(.8) rotate(0deg);
    }

    100% {
        transform: translate(0) scale(1) rotate(0deg);
        opacity: 1;
    }
}


/* Animation Five */


.five span {
    color: #dd3f0f;
    opacity: 0;
    transform: translate(0, -100px) rotate(360deg) scale(0);
    animation: dropVanish .5s forwards;
}


@keyframes dropVanish {
    30% {
        transform: translate(0, -50px) rotate(180deg) scale(1);
    }

    50% {
        transform: translate(0, 20px) scale(.8) rotate(0deg);
        opacity: 1;
    }

    80% {
        transform: translate(-100px, -100px) scale(1.5) rotate(-180deg);
        opacity: 0;
    }

    100% {
        transform: translate(0) scale(1) rotate(0deg);
        opacity: 1;
    }
}



/* Animation Six */


.six span {
    color: #ddb40f;
    opacity: 0;
    transform: rotate(-180deg) translate(150px, 0);
    animation: twister .5s forwards;
}


@keyframes twister {
    10% {
        opacity: 1;
    }
    100% {
        transform: rotate(0deg) translate(0);
        opacity: 1;
    }
}



/* Animation Seven */


.seven span {
    color: #888888;
    opacity: 0;
    transform: translate(-150px, 0) scale(.3);
    animation: leftRight .5s forwards;
}


@keyframes leftRight {
    40% {
        transform: translate(50px, 0) scale(.7);
        opacity: 1;
        color: #121212;
    }

    60% {
        color: #121212;
    }

    80% {
        transform: translate(0) scale(2);
        opacity: 0;
    }

    100% {
        transform: translate(0) scale(1);
        opacity: 1;
    }
}

