.Animate {
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes fadeInUp {

    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 80px, 0);
        transform: translate3d(0, 80px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.FadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.Smalltext {
    font-size: 12px;
    line-height: 18px;
}

.Container {
    margin: 0 auto;
    width: 1000px;
}
