@keyframes do-levitation {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(0, 0.5em);
    }
}

@keyframes do-floating {
    0% {
        translate: 0 0;
    }

    100% {
        translate: 0 0.5em;
    }
}

@keyframes do-dance {
    0% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes scale-up-animation {
    0% {
        transform: scale(1.0) translateY(0);
        opacity: 1;
    }

    50% {
        transform: scale(7.5) translateY(150px);
        opacity: .5;
    }

    100% {
        transform: scale(15.0) translateY(250px);
        opacity: 0;
    }
}

.levitate {
    animation: do-levitation 1.2s alternate ease-in-out infinite;
}

.floatate {
    animation: do-floating 1.2s alternate ease-in-out infinite;
}

.scale-up-animation {
    animation: scale-up-animation 4s ease-in;
}

.hover-dance:hover {
    animation: do-dance 1.2s alternate ease-in-out infinite;
}

.circle-container-content img {
    box-shadow: 0px 5px 80px 0px white, 2px 8px 2px 1px rgb(0 0 0 / 40%);
    border-radius: 50% !important;
    transition: .2s ease-in;
}

.shadow-light {
    box-shadow: 0pc 5px 8px 0px white;
}

.circle-container-content img:hover {
    animation: none !important;
    box-shadow: 0px 5px 80px 0px white, 2px 2px 20px 5px rgb(0 0 0 / 40%);
}

/* open home page animation */
#scroller {
    position: relative;
}

#scroller {
    --scrollerOpacity: 1;
    --scrollerDisplay: block;
}

#scroller::after {
    position: fixed;
    content: ' ';
    bottom: 0;
    left: 0;
    display: var(--scrollerDisplay);
    opacity: var(--scrollerOpacity);
    background-color: #111111;
    width: 100vw;
    height: 100vh;
    z-index: 1250;
    overflow: hidden;
    transition: .3s ease-in-out;
}

/* 3001x1106  */
#logoSpinner {
    --logoSpinnerRatio: 12;
    --width: calc(3001px / var(--logoSpinnerRatio));
    --height: calc(1106px / var(--logoSpinnerRatio));
    position: fixed;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: var(--width);
    height: var(--height);
    left: calc(50% - (var(--width)/2));
    bottom: calc(50% - (var(--height)/2));
    z-index: 1280;
}

#logoSpinnerLoading{
    margin-top: .5em;
    color: white;
    font-weight: normal;
    font-family: 'Courier New', Courier, monospace;
}

#logoSpinner img {
    filter:  drop-shadow(1px 1px 35px #e2372531);
    /* animation: logoSpinner 4s ease-in-out infinite alternate-reverse; */
}

#logoSpinnerLoading{
    width: 100px;
}

@keyframes logoSpinner {
    100% {
        filter:  drop-shadow(1px 1px 15px #e237258f);
    }
}

.loader-spinner,
#spinner {
    position: fixed;
    left: calc(50% - 20px);
    bottom: calc(50% - 20px);
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(farthest-side, var(--primaryColor) 94%, #0000) top/4px 4px no-repeat,
        conic-gradient(#0000 30%, var(--primaryColor));
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 4px), #000 0);
    mask: radial-gradient(farthest-side, #0000 calc(100% - 4px), #000 0);
    animation: spinner-c7wet2 1s infinite linear;
    z-index: 1260;
}

@keyframes spinner-c7wet2 {
    100% {
        transform: rotate(1turn);
    }
}