@charset "utf-8";
@import url("./reset.css");
@import url("./default.css");
*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both
}

.js-fadein {
    opacity: 0;
    transition: all 1s;
}

.scroll-in {
    opacity: 1;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        transform: translate(0, 50px);
    }
    to {
        transform: translate(0, 0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate(0, 50px);
    }
    to {
        transform: translate(0, 0);
        opacity: 1
    }
}