/*
    ======================================
    + Default Style CSS
    ======================================
*/

/* Common Style ( PC / Tablet / Mobile ) */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");

* {
    font-family: 'Pretendard';
    list-style: none; 
    text-decoration: none;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    color: #000;
}

body { background: linear-gradient(to top, #fff, #ebebeb); }

html { scroll-behavior: smooth; overflow: scroll; overflow-x: hidden; -ms-overflow-style: none; scrollbar-width: none; }

html::-webkit-scrollbar { display: none; }

.wrap {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    max-width: 2560px;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: #4263f7;
    transition: all 0.5s;
}

a:hover { color: #3047af; }

::-moz-selection { background: #0D0E12; color: #fff; }

::selection { background: #0D0E12; color: #fff; }
/* // Common Style */

/* Common Animation */
@-webkit-keyframes FadeUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes FadeUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes FadeDown {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes FadeDown {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes FadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes FadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes ToLeft {
    from {
        opacity: 0;
        transform: translateX(300px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes ToLeft {
    from {
        opacity: 0;
        transform: translateX(300px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@-webkit-keyframes ToRight {
    from {
        opacity: 0;
        transform: translateX(-300px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes ToRight {
    from {
        opacity: 0;
        transform: translateX(-300px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.animation-before {
    opacity: 0;
}

.animation-up {
    opacity: 0;
    -webkit-animation: FadeUp 1.5s;
            animation: FadeUp 1.5s;
    transition-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

.animation-down {
    opacity: 0;
    -webkit-animation: FadeDown 1.5s;
            animation: FadeDown 1.5s;
    transition-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

.animation-fade {
    opacity: 0;
    -webkit-animation: FadeIn 1.5s;
            animation: FadeIn 1.5s;
    transition-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

.animation-left {
    opacity: 0;
    -webkit-animation: ToLeft 1.5s;
            animation: ToLeft 1.5s;
    transition-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

.animation-right {
    opacity: 0;
    -webkit-animation: ToRight 1.5s;
            animation: ToRight 1.5s;
    transition-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}
/* // Common Animation */

/* Common Class */
.row {
    display: flex;
    flex-direction: row;
}

.col {
    display: flex;
    flex-direction: column;
}

.row.center,
.col.center {
    align-items: center;
    justify-content: center;
}
/* // Common Class */

/* Loading */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    z-index: 999;
}

.loading__spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid #fff;
    border-radius: 50%;
    -webkit-animation: Spin 1s linear infinite;
            animation: Spin 1s linear infinite;
}

@-webkit-keyframes Spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes Spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/* // Loading */