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

<!-- ANIMATION CODE -->
@keyframes fadeInUp {
    from {transform: translate3d(0,80px,0)}
	to {transform: translate3d(0,0,0); opacity: 1}
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(-40px,0,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

.animated {
    animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: both
}

.animatedFadeInUp {
    opacity: 0
}

.fadeInUp {
    opacity: 0;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
}

#page-container {
  position: relative;
  min-height: 100vh;
}

#content-wrap {
  padding-bottom: 2.5rem;  
}