.body-load {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #454342;
    z-index: 9999;
}


.body-load {
    left: 100%;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    visibility: visible;
}


.body-load,
.body-load {
    content: '';
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 10005;
    background: #001752;
    -webkit-transition: 1s cubic-bezier(.858, .01, .068, .99);
    -o-transition: 1s cubic-bezier(.858, .01, .068, .99);
    transition: 1s cubic-bezier(.858, .01, .068, .99);
}


.loader-circle {

    position: fixed;
    top: calc(50%);
    left: calc(50%);
    transform: translate(-50%, -50%);
    visibility: visible;
    -webkit-transition: .5s cubic-bezier(.76, .06, .85, .07);
    -o-transition: .5s cubic-bezier(.76, .06, .85, .07);
    transition: .5s cubic-bezier(.76, .06, .85, .07);
    z-index: 101;
    width: 200px;
    height: 200px;


}


.loader-circle:before {
    content: '';
    width: 100%;
    height: 100%;
    border: 1px solid #7a8081;
    border-left-color: white;
    -webkit-animation: 1.2s loader cubic-bezier(.767, .01, .18, 1.01) infinite both;
    border-radius: 50%;
    display: block;
    background-color: rgb(255, 255, 255);
}

#logo-load{
    color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: 0;
}

.body-load div#logo-load {
    width: 115px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.body-load div#logo-load h1 {
    font-size: 30px;
        font-weight: 100;
            font-size: 35px;
}

.body-load div#logo-load h6 {
    font-size: 8px;
        font-weight: 30;
    font-family: 'Open Sans', sans-serif;
   
    letter-spacing: 8px;
    padding-left: 11px;
}

@keyframes loader {

    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }

}

@media (max-width: 1000px) {


 

    .loader-circle {

        width: 180px ;
        height: 180px ;
    }
}

@media (max-width:450px){

    .loader-circle{
        width: 130px;
        height: 130px;
    }

    .body-load div#logo-load h1 {
        font-size: 22px;
    }

    .body-load div#logo-load h6 {
        font-size: 6px;
        padding-left: 8px;
        letter-spacing: 6px;
    }

}