splash{
    position: fixed;
    top:0;
    left: 0;
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color:black;
    animation: h2sSplash 8s linear;
    z-index: 100000;
    transform: scale(0);
}
@keyframes h2sSplash {
    0% {transform: scale(1);opacity: 1;}
    95% {opacity: 1;}
    100% {transform: scale(1);opacity: 0;}
}
splash>div{
    width: 220px;
    height: 200px;
    margin: auto;
    position: relative;
}
splash .animation{
    opacity: 0;
    transform: scale(0.8);
    animation: h2s 7.5s ease;
}
@keyframes h2s {
    0% {opacity: 0;}
    28% {opacity: 1;}
    90% {opacity: 1;}
    100% {opacity: 0;}
}

splash img._D{
    width: 75px;
    position: absolute;
    background-color: black;
    z-index: 100;
    top: -10px;
    left: -15px;
    animation: img_D 2s ease;
}
@keyframes img_D {
    0% {transform: translate3d(95px, 25px, 0px);}
    50% {transform: translate3d(95px, 25px, 0px);}
    75% {transform: translate3d(95px, 0px, 0px);}
    100% {transform: translate3d(0px, 0px, 0px);}
}

splash img._ELIVERY{
    width: 165px;
    position: absolute;
    background-color: black;
    top: 0;
    left: 80px;
    z-index: 1;
    animation: img_ELIVERY 2s ease;
}
@keyframes img_ELIVERY {
    0% {transform: translate3d(-110px, 0px, 0px);}
    50% {transform: translate3d(-110px, 0px, 0px);}
    75% {transform: translate3d(-110px, 0px, 0px);}
    100% {transform: translate3d(0px, 0px, 0px);}
}

splash div._ELIVERY{
    width: 165px;
    position: absolute;
    background-color: black;
    top: 0;
    left: -110px;
    z-index: 2;
    height: 60px;
    animation: div_ELIVERY 2s ease;
}
@keyframes div_ELIVERY {
    0% {transform: translate3d(56px, 0px, 0px);box-shadow: 0px 0px 50px 40px black;}
    50% {transform: translate3d(56px, 0px, 0px);}
    75% {transform: translate3d(56px, 0px, 0px);box-shadow: 0px 0px 50px 40px black;}
    90% {box-shadow: 0px 0px 50px 40px black;}
    100% {transform: translate3d(0px, 0px, 0px);box-shadow: 0px 0px 0px 0px black;}
}

splash .loader{
    position: relative;
    width: 100%;
    border-radius: 100px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    top: 100px;
    left: 5px;
    animation: _loader 2.5s ease;
}
@keyframes _loader {
    0% {opacity: 0;}
    90% {opacity: 0;}
    100% {opacity: 1;}
}
splash .loader>span{
    position: relative;
    width: 100%;
    border-radius: 100px;
    height: 3px;
    display: block;
    animation: _loaderSpan 7s ease;
    background-color: rgba(255, 255, 255, 1);
}

@keyframes _loaderSpan {
    0% {width: 0%;}
    50% {width: 0%;}
    100% {width: 100%;}
}


splash ._LINE{
    position: absolute;
    left: 68px;
    top: -7px;
    width: 7px;
    z-index: 10000;
    animation: _LINE 1.95s ease;
}
@keyframes _LINE {
    0% {opacity: 0;}
    90% {opacity: 0;}
    100% {opacity: 1;}
}

splash label{
    color:white;
    font-family: font__1;
    font-size: 12pt;
    position: absolute;
    top: 115px;
    width: 100%;
    text-align: center;
    animation: _LABEL 3.5s ease;
}
@keyframes _LABEL {
    0% {opacity: 0;}
    90% {opacity: 0;}
    100% {opacity: 1;}
}