/* reset */
* {
    margin: 0;
    padding: 0;
    word-break: keep-all;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

b,
strong {
    font-weight: inherit;
}

i,
em,
address {
    font-style: inherit;
}

img {
    max-width: 100%;
}


/* common */
html {
    /* scroll-behavior: smooth; */
    font-family: "Paperlogy", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-weight: 400;
    font-size: 10px;
    background: #10151D;
    color: #FBFBFB;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

html *.Paperlogy {
    font-family: 'Paperlogy';
}

.container {
    max-width: 1520px;
    width: 95%;
    margin: 0 auto;
}

.page {
    overflow: hidden;
    width: 100%;
}

.innertop {
    padding-top: 160px;
}

.innerbottom {
    padding-bottom: 160px;
}

b {
    font-weight: 700;
}

p {
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: -0.02em;
}

*.m50 {
    margin-bottom: 5rem;
}

*.m20 {
    margin-bottom: 2rem;
}

*.m10 {
    margin-bottom: 1rem;
}

/* header */

#top_btn {
    cursor: pointer;
}

/* popup */
.popups {
    position: absolute;
    z-index: 9999999;
}

#popup_10 {
    z-index: 999999101;
}

#popup_9 {
    z-index: 999999102;
}

#popup_8 {
    z-index: 999999103;
}

#popup_7 {
    z-index: 999999104;
}

#popup_6 {
    z-index: 999999105;
}

#popup_5 {
    z-index: 999999106;
}

#popup_4 {
    z-index: 999999107;
}

#popup_3 {
    z-index: 999999108;
}

#popup_2 {
    z-index: 999999109;
}

#popup_1 {
    z-index: 999999110;
}

.popup_wrap {
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.popup_foot {
    padding: 10px;
    font-size: 1.5rem;
}

.popup_foot>div {
    display: flex;
    justify-content: space-between;
}

.popup_foot label span {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.popup_close {
    cursor: pointer;
}

.popup_wrap.introani {
    animation: introanimation .8s forwards ease;
}

/* quick-placeholder */
#quick-placeholder {
    position: fixed;
    right: 3vw;
    bottom: 3vw;
    z-index: 99;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    filter: drop-shadow(0 0 7px rgba(0, 0, 0, 0.60));
    cursor: pointer;
}

#quick-placeholder img {
    max-width: 80px;
    animation: quick_scale 2s infinite;
}

@keyframes quick_scale {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }
}

/*  */
footer {
    background: #000;
    color: #FBFBFB;
    font-size: 16px;
}

/* .f_top ul li{flex-grow: 1;} */
.f_top ul a {
    border: 1px solid #fff;
    border-radius: 3rem;
    display: inline-block;
    padding: .8rem 3rem;
    line-height: 1;
}

.f_bot .container {
    padding: 50px 0;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    text-align: end;
}

.f_logo {
    max-width: 240px;
}

.f_bot ul {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 5px;
    max-width: 600px;
}

.f_bot ul li {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-weight: 400;
}

.f_bot ul li em {
    opacity: 0.7;

}





@media (min-width:0px) and (max-width:1281px) {
    .innerbottom {
        padding-bottom: 120px;
    }

    .innertop {
        padding-top: 120px;
    }


    .f_logo {
        width: 180px;
        margin-bottom: 1.5rem;
    }

    .f_bot {
        flex-direction: column;
        gap: 1rem;
    }

}

@media (min-width:0px) and (max-width:1081px) {
    .innerbottom {
        padding-bottom: 100px;
    }

    .innertop {
        padding-top: 100px;
    }
}
@media (min-width:0px) and (max-width:900px) {
    .innerbottom {
        padding-bottom: 100px;
    }

    .innertop {
        padding-top: 100px;
    }
    /* popup */
    .popup_wrap {
        top: 65px !important;
        left: 0 !important;
    }


    .innertop {
        padding-top: 100px;
    }

    .innerbottom {
        padding-bottom: 100px;
    }


    .f_top ul {
        gap: 1rem;
    }

    .f_top ul a {
        padding: 0.6rem 2rem;
    }
}

@media (min-width:0px) and (max-width:500px) {
#quick-placeholder {
    font-size: 4vw;
}
#quick-placeholder img {
    max-width: 60px;
}


    /* common */
    .innertop {
        padding-top: 5rem;
    }

    .innerbottom {
        padding-bottom: 5rem;
    }

    /* popup */

    /* footer */
    .f_bot .container{
        flex-direction: column;
    }
}