.preload {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: calc(100vh);
    width: 100%;
    /* background: rgba(255, 255, 255, 0.7); */
    background: rgba(244, 130, 33, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999999991;
}

.pageloader {
    margin: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /*
    height: calc(100vh);
    width: 100%;


    position: fixed;
    top: 0;
    left: 0;
    */
    /* background: rgba(255, 255, 255, 0.7); */
    background: rgba(5, 5, 5, 0.7);
    z-index: 99999999991;
}

.loaderITGroup {
    max-width: 10rem;
    width: 100%;
    height: auto;
    stroke-linecap: round;
}

.preload circle {
    fill: none;
    stroke-width: 3.5;
    -webkit-animation-name: preloader;
            animation-name: preloader;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    -webkit-transform-origin: 170px 170px;
            transform-origin: 170px 170px;
    will-change: transform;
}

.preload circle:nth-of-type(1) {
    stroke-dasharray: 550;
}

.preload circle:nth-of-type(2) {
    stroke-dasharray: 500;
}

.preload circle:nth-of-type(3) {
    stroke-dasharray: 450;
}

.preload circle:nth-of-type(4) {
    stroke-dasharray: 300;
}

.preload circle:nth-of-type(1) {
    -webkit-animation-delay: -0.15s;
    animation-delay: -0.15s;
}

.preload circle:nth-of-type(2) {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.preload circle:nth-of-type(3) {
    -webkit-animation-delay: -0.45s;
    -moz-animation-delay:  -0.45s;
    animation-delay: -0.45s;
}

.preload circle:nth-of-type(4) {
    -webkit-animation-delay: -0.6s;
    -moz-animation-delay: -0.6s;
        animation-delay: -0.6s;
}

@-webkit-keyframes preloader {
    50% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes preloader {
    50% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.preload.complete{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.5s all;
}
