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

body {
    animation: fadeIn 1.5s ease 0s 1 normal;
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

.scroll-space {
 box-sizing: border-box;
 overflow: hidden;
}
.fadein {
 opacity: 0;
 transform: translate(0, 0);
 transition: all 1.5s;
}
.fadein.fadein-left {
 transform: translate(-30px, 0);
}
.fadein.fadein-right {
 transform: translate(30px, 0);
}
.fadein.fadein-up {
 transform: translate(0, -30px);
}
.fadein.fadein-bottom {
 transform: translate(0, 30px);
}
.fadein.scrollin {
 opacity: 1 !important;
 transform: translate(0, 0) !important;
}