.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #0A1C3B;
    visibility: hidden;
    opacity: 0;
    z-index: 99999999999999;
}

.preloader_inner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    font-family: 'TTInterphases-Bold';
    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004) !important;
    font-size: calc(5.0vw + 5.0vh + 4.0vmin);
    color: #00FF6D;
}

.show {
    visibility: visible !important;
    opacity: 1 !important;
}

.fadein {
    opacity: 1 !important;
    transition: all 0.9s ease;
}

.slide {
    -webkit-transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 1000ms cubic-bezier(0.77, 0, 0.175, 1);
    height: 0vh;
    transition-delay: 1.6s;
}

.hide {
    -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
    opacity: 0 !important;
    transition-delay: 0.2s;
}

.display_none {
    display: none;
}