#loader-wrapper {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    clip-path: circle(200%);
    background: #080808;
}
#loader {
    width: 100vw;
    z-index: 1001;
}

.load-txt{
    text-align: center;
    color: #fff;
    font-size: 2.7vw;
}
.load-txt2{
    text-align: center;
    color: #fff;
    font-size: 1vw;
}
.load-title{
    position: absolute;
    top: 5vw;
    left: 5vw;
    text-align: center;
    color: #fff;
    font-size: 50px;
}
.load-gif{
    align-items: center;
    width: 20vw;
    margin-left: 40vw;
}

    /* Loaded */
    
    .loaded #loader {
        opacity: 0;
        -webkit-transition: all 1s ease-out;  
                transition: all 1s ease-out;
    }
    .loaded #loader-wrapper {
        visibility: hidden;
        clip-path: circle(0%);


        -webkit-transition: all 1s ease-out;  
                transition: all 1s ease-out;
    }
    
    /* JavaScript Turned Off */
    .no-js #loader-wrapper {
        display: none;
    }
    .no-js h1 {
        color: #ffffff;
    }

    #content {
        margin: 0 auto;
        padding-bottom: 50px;
        width: 80%;
        max-width: 978px;
    }
    
    

