.splash-screen{
    position: initial !important
}

.splash-img{
    top: 50%;
    transform: translateY(-55%);
    position: absolute;
    width: 97%;
    z-index: 1;
}

.loader-frame{
    width: 80px;
    height: 80px;
    margin: auto;
    z-index: 10;
    position: relative;
}

.loader2{
    border: 5px solid transparent;
    border-radius: 50%;
}

.loader2{
    width: 50px;
    height: 50px;
    border-left: 5px solid black;
    border-right: 5px solid darkslategrey;
    animation: clockwisespin 2s linear 3;
}

@keyframes clockwisespin{
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

@keyframes fradeout{
    from {opacity: 1;}
    to {opacity: 0;}
}