@charset "utf-8";

/*
.over-con {
    opacity: 0;
    transition: all 2s ease;
    transform: translateY(40px);
}
    @media(max-width:767px) {
        .over-con {
            transform: translateY(0);
        }
    }
*/

#coverall {
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height: 100%;
    display:visible;
    /*background: url(img/loading.svg) no-repeat 50% 56%;*/
    background-color: #fff;
    background-size:25px auto;
    z-index:999;
}
#coverall .inner {
    content: url(img/logo-intro.png);
    color:#fff;
    position: absolute;
    top:50%;
    left: 50%;
    font-weight: bold;
    text-align: center;
    transform: translateY(-50%) translateX(-50%);
    filter: blur(3px);
    transition: 0.2s ease-in;
}