* {
    margin: 0;
    padding: 0;
}

/* loading bar */
#loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 4px;
    background-color: #ddd;
    z-index: 1000;
}

#loading-bar .bar {
    position: absolute;
    top: 0px;
    left: 0;
    width: 0%;
    height: 100%;
    background: #2A9D8F;
    animation: loading 6s ease-in-out infinite;
    z-index: 100;
}

@keyframes loading {
    0% {
        width: 0%;
    }

    50% {
        width: 50%;
    }

    75% {
        width: 75%;
    }

    100% {
        width: 97%;
    }
}




.box {
    animation: come 1s linear 1;
}

@keyframes come {
    0% {
        filter: blur(3px);
        opacity: 0;
    }

    100% {
        transform: translateX(0%);
    }
}

.progress-bar {
    transition: ease-in 1s;
    animation: mypulse 1s ease-in-out infinite;
}

@keyframes mypulse {


    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }

}