@charset "utf-8";


/*==========================
loading view
==========================*/
body {
    transition: 1s;
}
#loading,
#loadingMain {
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    outline: 1px solid var(--blglay, #6A6759);
    position: fixed;
    z-index: 1000;
}

.loadingBox {
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeIn 2s ease .5s 1 normal backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.Toptitle {
    display: inline-block;
    color: var(--green, #38676C);
    font-size: 2.8rem;
    letter-spacing: 2.8px;
}

.dtxt {
    color: var(--green, #38676C);
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 2px;
}

.dot {
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0;
    animation: fadeIn 2s ease 1s 1 normal backwards;
    
    gap: 20px;
    
}
.dot__item {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: solid 2px;
    border-color: #38676C #00000010 #00000010;
    position: relative;
    
    animation: spin 1.5s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@media screen and (min-width:769px) {
    .Toptitle {
        font-size: 4.8rem;
        letter-spacing: 4.8px;
    }
    
    .dtxt {
        font-size: 2.4rem;
        letter-spacing: 2.4px;
    }
    
    .dot {
        margin-top: 50px;
    }
    
    .dot__item {
        width: 40px;
        height: 40px;
        border: solid 3px;
        border-color: #38676C #00000010 #00000010;
    }
}


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


/* end of loading */
.loaded {
    transform: translateY(-200%);
    transition: 2.8s;
}

/* fade in container */
.container {
    opacity: 0;
}

.container.open {
    opacity: 1;
}