.interface {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    z-index: 10;
    justify-content: center;
    align-items: center;
}

#logo {
    position: relative;
    width: calc(var(--index) * 13 * var(--scale-multiplier-b));
    height: calc(var(--index) * 16 * var(--scale-multiplier-b));
    background-image: url(./../img/Logo.png);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    transform: scale(1.5);
    z-index: 20;
}

#menu-button {
    position: absolute;
    width: calc(var(--index) * 6 * var(--scale-multiplier-b));
    height: calc(var(--index) * 6 * var(--scale-multiplier-b));
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    z-index: 200;
}

.pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-bottom: calc(var(--index) * 2 * var(--scale-multiplier-b));
    width: calc(var(--index) * 13 * var(--scale-multiplier-b));
    height: calc(var(--index) * 16 * var(--scale-multiplier-b));
    opacity: 0.6;
    pointer-events: none;
    z-index: 21;
    animation: pulseOut 2s ease-out forwards;
    filter: drop-shadow(0 0 6px #00ddff);
}

@keyframes pulseOut {
    0% {
        transform: translate(-50%, -50%) scale(.6);
        opacity: 0.4;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --scale-multiplier-b: 2;
    }

    @keyframes pulseOut {
        0% {
            transform: translate(-50%, -50%) scale(.8);
            opacity: 0.4;
        }

        100% {
            transform: translate(-50%, -50%) scale(1.2);
            opacity: 0;
        }
    }
}





.main-frameholder {
    display: grid;
    grid-template-columns: 0,1fr 0,1fr;
    grid-template-rows: 1fr auto auto 1fr;
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 10;
    pointer-events: none;
    transform-style: preserve-3d;
    transform: rotateX(var(--move-y)) rotateY(var(--move-x));
    will-change: transform;
    transition: 1s cubic-bezier(.14, .51, .37, .79);
    /* border: 1px solid red; */
}

.mfr-tl {
    width: 50px;
    height: 50px;
    grid-area: 1 / 1;
    margin-top: calc(var(--index) * 3);
    margin-left: calc(var(--index) * 3);
    /* border: 1px solid orange; */
}

.mfr-tr {
    width: 50px;
    height: 50px;
    grid-area: 1 / 2;
    justify-self: end;
    margin-top: calc(var(--index) * 3);
    margin-right: calc(var(--index) * 3);
    /* border: 1px solid orange; */
}

.mfr-bl {
    width: 50px;
    height: 50px;
    grid-area: 4 / 2;
    align-self: end;
    justify-self: end;
    margin-bottom: calc(var(--index) * 3);
    margin-right: calc(var(--index) * 3);
    /* border: 1px solid greenyellow; */
}

.mfr-br {
    width: 50px;
    height: 50px;
    grid-area: 4 / 1;
    align-self: end;
    justify-self: start;
    margin-bottom: calc(var(--index) * 3);
    margin-left: calc(var(--index) * 3);
    /* border: 1px solid aqua; */
}

.release {
    grid-area: 4 / 1;
    align-self: end;
    justify-self: start;
    margin-bottom: calc(var(--index) * 3 + 20px);
    margin-left: calc(var(--index) * 3 + 24px);
    position: absolute;
    width: 100px;
    height: auto;
    font-weight: bold;
    letter-spacing: 1px;
    color: #00aeef;
    font-size: 8px;
    opacity: 0;
}

.mfr-tr,
.mfr-tl,
.mfr-bl,
.mfr-br {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mfr-left {
    display: flex;
    width: 50px;
    height: 150px;
    grid-area: 2 / 1;
    justify-self: start;
    justify-content: center;
    align-items: flex-start;
    margin-left: calc(var(--index) * 10);
    /* border: 1px solid aqua; */
}

.mfr-left2 {
    display: flex;
    width: 50px;
    height: 150px;
    grid-area: 3 / 1;
    justify-self: start;
    justify-content: center;
    align-items: flex-end;
    margin-left: calc(var(--index) * 10);
    /* border: 1px solid aqua; */
}

.mfr-right {
    display: flex;
    width: 50px;
    height: 150px;
    grid-area: 2 / 2;
    justify-self: end;
    justify-content: center;
    align-items: flex-start;
    margin-right: calc(var(--index) * 10);
    /* border: 1px solid aqua; */
}

.mfr-right2 {
    display: flex;
    width: 50px;
    height: 150px;
    grid-area: 3 / 2;
    justify-self: end;
    justify-content: center;
    align-items: flex-end;
    margin-right: calc(var(--index) * 10);
    /* border: 1px solid aqua; */
}





#footer {
    position: absolute;
    display: none;
    flex-direction: column;
    width: calc(var(--index) * 9.16 * var(--scale-multiplier-f));
    height: calc(var(--index) * 2 * var(--scale-multiplier-f));
    margin: 0 0 calc(var(--index) * 3.5) 0;
    justify-content: center;
    align-self: end;
    justify-self: center;
    opacity: 0;
    /* border: 1px solid green; */
}

.footer-txt {
    display: flex;
    font-size: calc(var(--index) * 0.4 * var(--scale-multiplier-f));
    letter-spacing: 0.1em;
    justify-content: center;
    color: #00ddff;
    filter: drop-shadow(0 0 5px aqua);
    opacity: 0;
    /* border: 1px solid teal; */
}

.footer-sign {
    width: 100%;
    height: 100%;
    background-image: url(./../svg/copyright.svg);
    background-position: bottom;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    /* border: 1px solid  red; */
}


/* POP-UP */

.popup-wrapper {
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}


.mw-keeper {
    justify-content: center;
    width: 150px;
    height: 20px;
    position: relative;
    backdrop-filter: blur(10px);
    pointer-events: none;
    transition: none;
}

.main-window {
    height: 100%;
    background-color: rgba(3, 27, 41, 0.75);
    box-shadow: inset 0 0 35px 0px rgba(0, 170, 255, 0.5);
    border-radius: 20px;
    /* border: 1px solid yellowgreen; */
}

.main-window video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    z-index: 0;
}

.gradient-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
            rgba(0, 174, 239, 0) 0%,
            rgba(0, 174, 239, 0) 10%,
            #00aeef 30%,
            #00aeef 70%,
            rgba(0, 174, 239, 0) 90%,
            rgba(0, 174, 239, 0) 100%);
}

.top-frame {
    display: flex;
    flex-direction: column;
    height: 6px;
    width: 90%;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /* border: 1px solid greenyellow; */
}

.bottom-frame {
    display: flex;
    flex-direction: column;
    height: 6px;
    width: 90%;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    /* border: 1px solid greenyellow; */
}

.mw-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-image: url(./../img/GeoBG.png);
    background-size: 110px;
    background-position: center;
    opacity: 0.7;
}

.mw-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 170, 255, 0.5);
    box-shadow: 0 0 15px 0px rgba(0, 170, 255, 0.5);
    border-radius: 20px;
}


#close-button {
    display: flex;
    justify-self: center;
    margin-top: 10px;
    position: absolute;
    opacity: 0;
    pointer-events: auto;
    cursor: pointer;
    border-radius: 100%;
    transition: opacity 0.3s ease-out;
    z-index: 99;
    /* border: 1px solid red; */
}

#close-button:hover {
    opacity: 1;
}

.video-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    opacity: .1;
}


.zebra-wide {
    display: flex;
    justify-content: center;
    width: 50px;
    height: 0%;
    justify-self: end;
    margin-right: 20px;
    pointer-events: none;
}

.zebra-wide-bg {
    width: 100%;
    height: 100%;
    background-image: url(../img/zebra_wide.png);
    background-size: 50px;
    opacity: 0.15;
    mask-image: linear-gradient(to bottom, transparent, black 20%);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%);
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    pointer-events: none;

}

.zebra-thin {
    position: absolute;
    display: flex;
    width: 15px;
    height: 150px;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    /* border: 1px solid yellowgreen; */
}

.zebra-thin-bg {
    width: 100%;
    height: 100%;
    background-image: url(../img/zebra_wide.png);
    background-size: 50px;
    opacity: 0.15;

    mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;

    animation: scrollBg 10s linear infinite;
}

@keyframes scrollBg {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 -100%;
    }
}

.arrow-r {
    position: absolute;
    align-self: center;
    justify-self: flex-start;
    opacity: 0;
}

.arrow-r svg {
    box-shadow: 0 0 10px 0px rgba(0, 170, 255, 1);
}

.dot-3 {
    position: absolute;
    display: flex;
    justify-content: space-between;
    justify-self: center;
    align-items: center;
    width: 70%;
    height: 20px;
    opacity: 0;
    will-change: transform, opacity;

    /* border: 1px solid red; */
}

.dot-3 svg {
    display: flex;
    justify-content: center;
    box-shadow: 0 0 10px 0px rgba(0, 170, 255, 1);
}

.zebra-title {
    position: absolute;
    display: flex;
    font-family: android-GA;
    font-size: 45px;
    letter-spacing: -13px;
    color: #00aeef;
    opacity: 0;
    width: 30px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    align-self: flex-end;
    align-items: center;
    justify-content: center;
    bottom: 20px;
    /* border: 1px solid red; */
}

.wm-content {
    position: absolute;
    top: 50%;
    left: 30px;
    right: 75px;
    margin: auto;
    transform: translateY(-50%);
    height: 95%;
    /* border: 1px solid red; */
}