@import url('https://cdn-uicons.flaticon.com/4.0.0/uicons-solid-rounded/css/uicons-solid-rounded.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    width: 100vw;
        width: 100dvw;
    height: 100vh;
        height: 100dvh;
    background: white;
    display: flex;
        justify-content: center;
        align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.Core-Interface {
    width: inherit;
    height: inherit;
    background: inherit;
    display: inherit;
    position: inherit;
    overflow: inherit;
    z-index: 2;
}

.Splash {
    width: inherit;
    height: inherit;
    background: inherit;
    display: inherit;
        align-items: center;
        justify-content: center;
    position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    overflow: inherit;
    z-index: 5;
}

.Splash .Fx-Framer {
    width: inherit;
    height: inherit;
    background: inherit;
    display: inherit;
        align-items: center;
        justify-content: center;
    position: relative;
    overflow: inherit;
}

.Splash .Fx-Framer .Fx-2 {
    width: inherit;
    height: inherit;
    background: rgb(21, 21, 21);
    display: inherit;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    position: relative;
    overflow: inherit;
    opacity: 0%;
    animation: Fx-Fade 1500ms ease-out 8000ms forwards;
}

.Splash .Fx-Framer .Fx-2 .Fx-2-Source {
    width: 300px;
    height: 300px;
}

.Splash .Fx-Framer .Fx-2 .Fx-2-Text {
    margin-bottom: 20px;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 16px;
    text-align: center;
    text-transform:uppercase;
}

.Splash .Fx-Framer .Fx-2 .Fx-2-Loader {
    width: 40px;
    aspect-ratio: 1;
    --_c:no-repeat radial-gradient(farthest-side,#ffffff 92%,#0000);
    background:  var(--_c) top, var(--_c) left, var(--_c) right, var(--_c) bottom;
    background-size: 10px 10px;
    animation: Fx-2-Loader-Frame 1s infinite;
}

@keyframes Fx-2-Loader-Frame {
    to {
        transform : rotate(.5turn);
    }
}

.Splash .Fx-Framer .Fx-1 {
    width: inherit;
    height: inherit;
    background: inherit;
    display: inherit;
        align-items: center;
        justify-content: center;
    position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    overflow: inherit;
    opacity: 100%;
    animation: Fx-Fade 1500ms ease-out 8000ms reverse forwards;
}

.Splash .Fx-Framer .Fx-1 .Fx-1-Source {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

@keyframes Fx-Fade {
    0% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}

@media screen and (max-width: 768px) {
    .Splash .Fx-Framer .Fx-2 .Fx-2-Source {
        width: 180px;
        height: 180px;
    }
    .Splash .Fx-Framer .Fx-1 .Fx-1-Source {
        width: inherit;
        height: auto !important;
        mix-blend-mode:hard-light !important;
    }
}