/* S Basic Setting */
:root {
    --color-wt: #ffffff;
    --color-gr00: #f8f9fa;
    --color-gr01: #f1f3f5;
    --color-gr02: #e9ecef;
    --color-gr03: #dee2e6;
    --color-gr04: #ced4da;
    --color-gr05: #adb5bd;
    --color-gr06: #868e96;
    --color-gr07: #495057;
    --color-gr08: #30353a;
    --color-gr09: #212529;
    --color-gr10: #141619;

    --color-purple01: #5d44da;
    --color-purple02: #8475ef;
    --color-purple03: #bab0ff;
}

@font-face {
    font-family: "regular";
    src: url("./font/Pretendard-Regular.woff");
}

@font-face {
    font-family: "medium";
    src: url("./font/Pretendard-Medium.woff");
}

html,
body {
    margin: 0;
    overflow-x: hidden;
}

.body {
    background-color: var(--color-gr10);
    color: white;
    font-family: regular;
}

.animation {
    opacity: 0;
    transition: all ease 1s;
}

/* E Basic Setting */

/* S Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 500;
}

.dark {
    background-color: rgba(0, 0, 0, 0.7);
    transition: all ease 1s;
}

.header_wrapper {
    max-width: 1920px;
    height: 100px;
    display: flex;
    width: 100%;
    padding: 0 2rem 0 2rem;
    justify-content: space-between;
    align-items: center;
}

.logo_box {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: white;
}

.menu_list {
    display: flex;
    gap: 4rem;
    list-style: none;
    align-items: center;
    font-size: 18px;
}

.menu_list>li>a {
    text-decoration: none;
    color: inherit;
}

.menu_list>li>a:hover {
    text-decoration: solid;
    color: var(--color-purple01);
}

.header_right_box {
    display: flex;
    gap: 8px;
}

.language_dropdown {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.img_language {
    padding-top: 5px;
    height: 40px;
}

#current_language {
    padding-left: 0.5rem;
}

.language_menu {
    display: none;
    flex-direction: column;
    font-size: 16px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background-color: var(--color-purple01);
}

.language_menu>div {
    padding: 1rem 1.5rem 1rem 1.5rem;
}

.language_menu>div:hover {
    background-color: var(--color-purple02);
}

/* .language_dropdown:hover .language_menu{
    display: inline-block;
} */
.language_menu.on {
    display: inline-block;
}

.btn_mobile_menu {
    display: none;
    z-index: 800;
    width: 32px;
}

.mobile_menu_container {
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: fixed;
    top: 0;
    z-index: 700;
    width: 100%;
    height: 100%;
    transition: 1s all;
    background-color: var(--color-gr08);
}

.mobile_menu_header_wrapper {
    width: 100%;
    height: 60px;
    padding: 0 1.5rem 0 1.5rem;
    display: flex;
    justify-content: flex-end;
}

.open {
    display: flex;
}

.mobile_menu_container>ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 2rem;
    font-size: 25px;
}

.mobile_menu_container>ul>li>a {
    text-decoration: none;
    color: inherit;
}

.mobile_menu_container>ul>li>a:hover {
    text-decoration: solid;
    color: var(--color-purple01);
}

/* E Header */

/* S Main Page Basig Setting */
.container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.container_wrapper {
    width: 100%;
    max-width: 1920px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem 0 2rem;
    overflow-x: hidden;
}

/* E Main Page Basig Setting */

/* S Home */
.img_box {
    width: 100%;
}

.powered_by_image{
    width: 200px;
    height: 48px;
    margin-top: 20px;
}

.main_img {
    max-width: 100%;
    height: auto;
}

.mobile_main_img {
    display: none;
}

.home_container {
    position: relative;
}

.home_inside {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -35%);
}

.main_bi_img {
    max-width: 100%;
    width: 875px;
}

.introduce_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 2;
}

.main_title_text {
    font-size: 20px;
}

.main_subtitle_text {
    font-size: 4rem;
    font-weight: 700;
    padding-bottom: 2rem;
}

.main_explain_text {
    text-align: center;
    font-size: 18px;
    line-height: 160%;
    color: var(--color-gr03);
    margin: 0;
}

.contract_address{
    font-size: 16px;
    width: 524px;
    height: 37px;
    padding: 5px 10px;
    background: rgba(255,255,255,0.16);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 8px;
}

.contract_link{
    color: var(--color-wt);
}

.btn_mint {
    margin-top: 80px;
    color: var(--color-wt);
    font-size: 18px;
    background: linear-gradient(-45deg, #518eee, #825cf9, #d669cd);
    padding: 1.2rem 3.2rem 1.2rem 3.2rem;
    border: 0px;
    cursor: pointer;
    font-family: regular;
}

.btn_mint:hover {
    background: var(--color-purple01);
}

.btn_soon {
    margin-top: 3rem;
    color: var(--color-wt);
    font-size: 18px;
    background: var(--color-gr06);
    padding: 1.2rem 3.2rem 1.2rem 3.2rem;
    border: 0px;
    font-family: regular;
}

/* E Home */

/* S My Square? */
.mysquare_container_wrapper {
    display: flex;
    gap: 8rem;
    margin-top: 8rem;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.mysquare_left_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mysquare_subtitle_text {
    font-size: 18px;
    color: var(--color-gr07);
    margin-bottom: 8px;
}

.mysquare_title_text {
    font-size: 56px;
    font-weight: 700;
    line-height: 100%;
    padding-bottom: 40px;
}

.mysquare_explain_text {
    font-size: 18px;
    line-height: 170%;
    color: var(--color-gr03);
    margin: 0;
    max-width: 480px;
}

.mysquare_image_box{
    position: relative;
    z-index: 1;
}

.main_image_deco_top{
    position: absolute;
    top: -70px;
    right: -90px;
    z-index: -1;
}

.main_image_deco_bottom{
    position: absolute;
    bottom: -70px;
    right: -70px; 
    z-index: -1;
}

/* E My Square? */

/* S Artist */
.artist_container_wrapper {
    display: flex;
    gap: 8rem;
    margin-top: 15rem;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.artist_right_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artist_subtitle_text {
    font-size: 18px;
    color: var(--color-gr07);
    margin-bottom: 8px;
}

.artist_title_text {
    font-size: 56px;
    font-weight: 700;
    line-height: 100%;
    padding-bottom: 40px;
}

.artist_explain_text {
    font-size: 18px;
    line-height: 170%;
    color: var(--color-gr03);
    margin: 0;
    max-width: 620px;
}

/* E Artist */

/* S Roadmap */
.roadmap_container {
    width: 100%;
}

.roadmap_container_wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 15rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.roadmap_subtitle_text {
    font-size: 18px;
    color: var(--color-gr07);
}

.roadmap_title_text {
    font-size: 56px;
    font-weight: 700;
    line-height: 100%;
    padding-bottom: 2rem;
    padding-top: 0.6rem;
}

.phase_explain_text {
    text-align: center;
    font-size: 18px;
    line-height: 170%;
    margin: 0;
    margin-bottom: 6rem;
    color: var(--color-gr01);
}

.phase_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
}

.phase_title_round_box {
    font-size: 18px;
    padding: 0.6rem 2.3rem 0.6rem 2.3rem;
    border-radius: 1.5rem;
    background: linear-gradient(-45deg, #794fef, #d669cd);
}

.phase_title_round_box.gray {
    background: var(--color-gr08);
    color: var(--color-gr07);
}

.phase_line {
    width: 4px;
    background: linear-gradient(-45deg, #794fef, #9C59E2);
}

.phase_line.gray {
    background: var(--color-gr08);
}

.phase_line.short {
    height: 40px;
}

.phase_line.round {
    border-radius: 0 0 2px 2px;
}

.phase_contents {
    position: absolute;
    top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 510px;
    padding: 20px 0 20px 0;
    border-radius: 1.5rem;
    border: 1px solid var(--color-purple03);
    background-color: #23262b;
}
.phase_contents.gray{
    border: none;
}

.phase_text_gr01 {
    color: var(--color-gr01);
    font-size: 16px;
}

.phase_text_gr05 {
    color: var(--color-gr05);
    font-size: 16px;
    padding-top: 4px;
}

.phase_text_gr06 {
    color: var(--color-gr06);
    font-size: 16px;
}

.phase_text_gr07 {
    color: var(--color-gr07);
    font-size: 16px;
}

.phase_text_top_padding {
    padding-top: 12px;
}

.phase_text_more {
    margin-top: 1rem;
    font-size: 18px;
    color: transparent;
    background: linear-gradient(-45deg, #794eff, #d669cd);
    -webkit-background-clip: text;
}

.roadmap_blur_circle {
    position: absolute;
    bottom: -30%;
    right: -60%;
}

/* E Roadmap */

/* S FAQ */
.faq_container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    position: relative;

}

.faq_container_wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 15rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 2rem 0 2rem;
}

.faq_title_text {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 4rem;
}

.qna_box {
    width: 100%;
    padding: 2rem;
    border-bottom: solid 1px var(--color-gr08);
    margin-bottom: 1rem;
}

.question_box {
    display: flex;
    font-size: 20px;
    color: var(--color-gr01);
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.btn_down {
    height: 32px;
    transform: rotate(180deg);
    transition: all 0.3s;
}

.btn_down.show {
    transform: rotate(0deg);
}

.answer_box {
    padding-top: 2rem;
    padding-bottom: 1rem;
    display: none;
    font-size: 16px;
    line-height: 170%;
    color: var(--color-gr04);
}

.answer_box.show {
    display: block;
}

.faq_blur_circle {
    position: absolute;
    top: 0%;
    left: -40%;
    z-index: -100;
}

/* E FAQ */
/* S Footer */
.footer {
    position: relative;
    width: 100%;
    height: 215px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15rem;
    border-top: 1px solid var(--color-gr07);
}

.footer_wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    padding: 0 2rem 0 2rem;
}

.footer_top_box {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.footer_logo_box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer_logo_img {
    height: 66px;
}

.mobile_footer_logo_img {
    display: none;
}

.footer_icon_img {
    height: 24px;
}

.footer_menu_list {
    display: flex;
    padding: 0;
    gap: 1rem;
    list-style: none;
    align-items: center;
    justify-content: center;
}

.footer_menu_list>li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid var(--color-gr07);
    padding: 0;
    cursor: pointer;
}

.footer_menu_list>li>a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 0.4rem 1.5rem 0.4rem 1.5rem;
    color: var(--color-wt);
    font-size: 14px;
    width: 100%;
    height: 100%;
    gap: 4px;
}

.footer_menu_list>li:hover {
    background: var(--color-purple01);
    border: 1px solid var(--color-purple01);
}

.footer_bottom_box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer_copyright {
    color: var(--color-gr06);
    font-size: 14px;
}

.footer_policy {
    color: var(--color-gr04);
    font-size: 14px;
}

.footer_blur_circle {
    position: absolute;
    bottom: 10%;
    right: 15%;
    z-index: -100;
    width: 400px;
}

/* E Footer */

/* S Privacy */
.container_privacy {
    margin-top: 200px;
    max-width: 1180px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.privacy_main_title {
    font-size: 36px;
    font-weight: 500;
    color: var(--color-gr03);
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
}

.privacy_main_title > br {
    display: none
}

.privacy_line {
    width: 100%;
    height: 0;
    border-bottom: 1px solid var(--color-gr06);
    margin-top: 63  px;
}

.mobile_privacy_line {
    display: none;
}

.privacy_article_long {
    font-weight: 300;
    font-size: 16px;
    line-height: 170%;
    color: var(--color-gr04);
    margin-top: 40px;
}

.privacy_article {
    font-weight: 300;
    font-size: 16px;
    line-height: 170%;
    color: var(--color-gr04);
    margin-top: 10px;
}

.mobile_privacy_box{
    display: none;
}

.privacy_box {
    display: flex;
    box-sizing: border-box;
    width: 100%;
    padding: 46px 80px 56px 80px;
    border: 1px solid var(--color-gr07);
    gap: 20px;
}

.privacy_small_box {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.privacy_title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-gr03);
    margin-top: 60px;
    margin-bottom: 10px;
}

.privacy_sub_title {
    font-size: 16px;
    color: var(--color-gr04);
    font-weight: 600;
    margin-top: 16px;
}

.privacy_article {
    font-weight: 300;
    font-size: 16px;
    line-height: 170%;
    color: var(--color-gr04);
}

.privacy_article > a{
    color: var(--color-gr04);
}

.ml_1{
    margin-left: 20px;
}

.ml_2{
    margin-left: 40px;
}

.ml_3{
    margin-left: 60px;
}

/* S Table */
.wrapper_table{
    width: 100%;
    display: flex;
    justify-content: center;
}

.pravacy_table{
    border-top: 2px solid var(--color-gr06);
    width: 100%;
    table-layout: fixed;
    max-width: 1120px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.privacy_table_head{
    height: 45px;
    color: var(--color-gr04);
    font-size: 14px;
    font-weight: 600;
}

tr{
    height: 45px;
}

td{
    padding-left: 15px;
    padding-right: 15px;
    font-size: 14px;
    font-weight: 300;
    color: var(--color-gr04);
}

.ptb{
    padding-top: 12px;
    padding-bottom: 12px;
}

.rb{
    border-right: 1px solid var(--color-gr08);
}

.bb{
    border-bottom: 1px solid var(--color-gr08);
}

.ct{
    text-align: center;
}
/* E Table */