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

.fadeIn {
    animation-name: fadeIn;
    animation-duration: 1.0s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
}
.fadeIn:nth-of-type(2) {
    animation-delay: .2s;
}
.fadeIn:nth-of-type(3) {
    animation-delay: 0.4s;
}
.fadeIn:nth-of-type(4) {
    animation-delay: 0.6s;
}
.fadeIn:nth-of-type(5) {
    animation-delay: 0.8s;
}
.fadeIn:nth-of-type(6) {
    animation-delay: 1.0s;
}
.fadeIn:nth-of-type(7) {
    animation-delay: 1.2s;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to{opacity: 1;}
}
.moveIn {
    animation: moveIn 1s;
}
@keyframes moveIn {
    from {right: -10px;}
    to{right: 0px;}
}