header {
    position: fixed;
    z-index: 10000;
    width: 100%;
    height: 70px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FAFAFA;
    box-shadow: 0px 15px 15px rgba(190.96, 190.96, 190.96, 0.07);
}

.logo-box {
    width: 170px;
    height: 30px;
}

.logo-box img {
    width: 100%;
    object-fit: cover;
}

.animation-wrap {
    width: 100vw;
    /* height: 1000px; */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.animation-section-text-box {
    color: #0064FF;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 40px;
}


.anmation-container {
    width: 90%;
    max-width: 1280px;
    height: 500px;
    position: relative; 
    top: 0;
}

.ani-img-box {
    position: absolute;   
    width: 100%;
    height: 500px;
    opacity: 0;
    display: flex;
}

.ani-img-box :nth-of-type(1) {
    width: 80%;
}
.ani-img-box :nth-of-type(2) {
    width: 20%;
}

.ani-img-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}


.lean-img-box {
    animation: showLean 10s infinite;
}

.game-img-box {
    animation: showGame 10s infinite;
}

.talkPlay-img-box {
    animation: showTalkPlay 10s infinite;
}


@keyframes showLean {
    0%, 33.33% {
        opacity: 1;
        transform: translateY(0);
    }
    33.34%, 100% {
        opacity: 0;
        transform: translateY(-50px); 
    }
}


@keyframes showGame {
    0%, 33.33% {
        opacity: 0;
        transform: translateY(80px);
    }
    33.34%, 66.66% {
        opacity: 1;
        transform: translateY(0);
    }
    66.67%, 100% {
        opacity: 0;
        transform: translateY(-50px);
    }
}


@keyframes showTalkPlay {
    0%, 66.66% {
        opacity: 0;
        transform: translateY(80px);
    }
    66.67%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
} 

footer {
    border-top: 1px solid #e8e9ea;
    width: 100%;
    height: 150px;
    padding: 30px 0px 50px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.company-logo-box {
    width: 197px;
    margin-bottom: 10px;
}

.company-logo-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.company-info-box {
    margin-bottom: 7px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}
