 *
{margin: 0px; padding: 0px;}

html, body
{
    background-color: #000;
    height: 100%;
}

.none
{
    display: none !important;
}
.loading
{
    color: #fff;
    text-align: center;
    background-color: #000;
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    .text1, .text2
    {
        line-height: .8em;;
    }

    .video
    {
        
        position: absolute;
        overflow: clip;
        left: 0px;
        top: 0px;
       
        width: 100%;
        height: -webkit-fill-available;
        opacity: 0;
        z-index: 1;

        &.start
        {
             animation-name: flipOver;
            animation-duration: 3s;
            animation-delay: 1s;
            animation-fill-mode: forwards;
        }
    }

    div
    {
       
        
        &.up
        {
            animation-name: loadingUp;
            animation-duration: .7s;
            animation-delay: 1s;
            animation-fill-mode: forwards;
            
        }

        &.down
        {
            animation-name: loadingDown;
            animation-duration: .7s;
            animation-delay: 1s;
            animation-fill-mode: forwards;
            
        }
    }

    .hh1
    {
        font-size: 60px;
       
        
        animation-name: loadingText;
        animation-duration: .5s;
        animation-fill-mode: forwards;
        transform: translateY(100px); 
        opacity: 0;
        z-index: -1;

        &.delay
        {
            animation-delay: .1s;
        }

    }
}

@keyframes loadingText
{
    0%
    { 
        opacity: 0;
        transform: translateY(100px);
    }

    
    100%
    {
            opacity: 1;
        transform: translateY(0px); 
    }
}
@keyframes flipOver
{
    0%
    {           
        opacity: 0;     
        transform: scale(0) rotateX(142deg);
    }

    50%
    {
        opacity: 1;
        transform: scale(.3) rotateX(0deg);
    }
    80%
    {
        opacity: 1;
        transform: scale(.3) rotateX(0deg);
    }

    100%
    {
        opacity: 1;
        transform: scale(1) rotateX(0deg);
    }
}

@keyframes loadingUp
{
    0%
    {   transform: translateY(0px); }

    100%
    {   transform: translateY(-14.8dvh);  }
    
}

@keyframes loadingDown
{
    0%
    {   transform: translateY(0px); }

    100%
    {   transform: translateY(15dvh);  }
    
}