.navigation_header__B0xIi {
    padding: 10px 20px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
    height: var(--header-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    place-items: center;
    grid-gap: 10px;
    gap: 10px;
    transition: all var(--theme-duration-1);
    background: transparent;
    z-index: 9999;
}

.navigation_header__B0xIi.navigation_active__jHOiA {
    height: var(--header-active-height);
}

.navigation_header__B0xIi:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    transition: opacity var(--theme-duration-1);
    opacity: 0;
}
.navigation_header__B0xIi.navigation_active__jHOiA:before {
    opacity: 1;
}

.navigation_left__side__PYYoH {
    width: 100%;
}

.navigation_menu__button__SI4h_ {
    position: fixed;
    left: var(--side-margin);
    top: var(--header-menu-top);
    cursor: pointer;
    transition: all var(--theme-duration-1);
    animation: navigation_fadeInTop__zoUse var(--theme-duration-1);
}
.navigation_header__B0xIi.navigation_active__jHOiA .navigation_menu__button__SI4h_ {
    top: var(--header-active-menu-top);
}

.navigation_logo__gMAZQ {
    position: fixed;
    left: 50%;
    top: var(--header-logo-top);
    cursor: pointer;
    width: max-content;
    transform: translateX(-50%);
}

.navigation_header__B0xIi.navigation_active__jHOiA .navigation_logo__gMAZQ {
    top: var(--header-active-logo-top);
}

.navigation_header__B0xIi .navigation_logo__gMAZQ img:first-child {
    animation: navigation_fadeInTop__zoUse var(--theme-duration-1);
    display: unset;
}

.navigation_header__B0xIi .navigation_logo__gMAZQ img:nth-child(2) {
    animation: navigation_fadeInBottom__bA2hB var(--theme-duration-1);
    display: none;
}

.navigation_header__B0xIi.navigation_active__jHOiA .navigation_logo__gMAZQ img:first-child {
    display: none;
}

.navigation_header__B0xIi.navigation_active__jHOiA .navigation_logo__gMAZQ img:nth-child(2) {
    display: unset;
}

.navigation_right__side__rzQ0_ {
    position: fixed;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--header-height);
    cursor: pointer;
    transition: all var(--theme-duration-1);
    animation: navigation_fadeInTop__zoUse var(--theme-duration-1);
}

.navigation_header__B0xIi.navigation_active__jHOiA .navigation_right__side__rzQ0_ {
    height: var(--header-active-height);
}

@media screen and (max-width: 500px) {
    .navigation_header__B0xIi {
        height:var(--header-active-height);
    }

    .navigation_header__B0xIi:before {
        opacity: 1;
    }

    .navigation_header__B0xIi .navigation_menu__button__SI4h_ {
        top: var(--header-active-menu-top);
    }

    .navigation_header__B0xIi .navigation_logo__gMAZQ {
        top: var(--header-active-logo-top);
    }

    .navigation_header__B0xIi .navigation_logo__gMAZQ img:first-child {
        display: none;
    }

    .navigation_header__B0xIi .navigation_logo__gMAZQ img:nth-child(2) {
        display: unset;
    }

    .navigation_header__B0xIi .navigation_right__side__rzQ0_ {
        top: 0!important;
        height: var(--header-active-height)!important
    }
}

@keyframes navigation_fadeInTop__zoUse {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navigation_fadeInBottom__bA2hB {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.langauge_selector__cOdwR {
    padding-right: 20px;
    padding-left: 16px;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: langauge_fadeIn__LTu6P var(--theme-duration);
}

.langauge_selector__cOdwR:hover .langauge_list__ZC_XL {
    display: flex;
}

.langauge_text__l22oP {
    font-family: var(--font-pretendard);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--font-white);
    cursor: pointer
}

.langauge_button__hEIX3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer
}

.langauge_icon__mrOt2 {
    max-width: 100%
}

.langauge_list__ZC_XL {
    padding: 8px 16px;
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    background: rgba(0,0,0,.6);
    cursor: default;
}

.langauge_list__ZC_XL.langauge_active__spF_y {
    display: flex;
}

@keyframes langauge_fadeIn__LTu6P {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.menu_container__IB4QG {
    padding: 36px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 105;
    display: none;
    grid-template-columns: 1fr;
    grid-template-rows: min(26.37%,164px) 72.03% 20px;
    gap: 10px;
    background: #fff;
    z-index: 10000;
}

.menu_container__IB4QG.menu_active__3w2pn {
    display: grid;
}

.menu_background__HEnI0 {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: none;
    background: rgba(0,0,0,.5)
}

.menu_header__A8OeU {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    overflow: hidden
}

.menu_cancel__btn__l0V97 {
    cursor: pointer
}

.menu_contents__thNYG {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    place-items: flex-start;
    grid-gap: 32px;
    gap: 32px;
    overflow: hidden
}

.menu_back__XHkrr {
    width: max-content;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.menu_back__XHkrr img {
    width: 5px
}

.menu_back__XHkrr span {
    font-family: var(--font-eb-garamond);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: var(--font-black);
}
.menu_sub_list,
.menu_list__M6Z78 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: min-content;
    grid-gap: 32px;
    gap: 32px;
}
.menu_line__TOO3D,.menu_list__M6Z78 {
    animation: menu_fadeInLeft__TidHw var(--theme-duration-1)
}

.menu_line__TOO3D {
    width: 1px;
    height: 100%;
    background: rgba(0,0,0,.5)
}

.menu_footer__hv7zU {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 32px
}

@media screen and (max-width: 700px) {
    .menu_container__IB4QG {
        padding:36px 56px 36px 36px;
    }

    .menu_header__A8OeU {
        flex-direction: row-reverse;
    }

    .menu_contents__thNYG {
        grid-template-columns: 1fr;
    }

    .menu_back__XHkrr {
        display: flex;
    }

    .menu_list__M6Z78 {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: var(--font-white);
    }
}

@keyframes menu_fadeInLeft__TidHw {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menuItem_item__Ce0d0 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 10px;
    place-items: center flex-start;
    grid-gap: 10px;
    gap: 10px;
    cursor: pointer;
}

.menuItem_item__Ce0d0.menuItem_active__V5e6X .menuItem_title__VpPXm:after,
.menuItem_item__Ce0d0:hover .menuItem_title__VpPXm:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.menuItem_item__Ce0d0.menuItem_disable__RKntC .menuItem_title__VpPXm {
    color: rgba(0,0,0,.5);
}

.menuItem_item__Ce0d0.menuItem_disable__RKntC .menuItem_subtitle__EbVhN {
    visibility: hidden;
}

.menuItem_info__b8jVV,
.menuItem_info__b8jVV a {
    width: 100%;
    display: flex;
    align-items: center;
    align-self: stretch;
    gap: 10px;
}

.menuItem_title__VpPXm {
    position: relative;
    white-space: pre;
    font-family: var(--font-eb-garamond);
    font-size: 16px;
    font-style: normal;
    font-weight: 450;
    line-height: normal;
    color: var(--font-black);
}

.menuItem_title__VpPXm:after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transform-origin: bottom left;
    transition: transform .25s ease-out;
}

.menuItem_subtitle__EbVhN {
    position: relative;
    white-space: pre;
    font-family: var(--font-pretendard);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: rgba(0,0,0,.5)
}

@font-face {
    font-family: Pretendard Variable;
    font-weight: 45 920;
    font-style: normal;
    font-display: swap;
    src: url(/fonts/Pretendard/woff2/PretendardVariable.woff2) format("woff2-variations")
}

@font-face {
    font-family: EB Garamond;
    font-weight: 800;
    font-display: swap;
    font-style: normal;
    src: local("EBGaramond ExtraBold"),url(/fonts/EBGaramond/EBGaramond-ExtraBold.ttf) format("truetype")
}

@font-face {
    font-family: EB Garamond;
    font-weight: 800;
    font-display: swap;
    font-style: Italic;
    src: local("EBGaramond ExtraBold"),url(/fonts/EBGaramond/EBGaramond-ExtraBoldItalic.ttf) format("truetype")
}

@font-face {
    font-family: EB Garamond;
    font-weight: 700;
    font-display: swap;
    font-style: normal;
    src: local("EBGaramond Bold"),url(/fonts/EBGaramond/EBGaramond-Bold.ttf) format("truetype")
}

@font-face {
    font-family: EB Garamond;
    font-weight: 700;
    font-display: swap;
    font-style: Italic;
    src: local("EBGaramond Bold"),url(/fonts/EBGaramond/EBGaramond-BoldItalic.ttf) format("truetype")
}

@font-face {
    font-family: EB Garamond;
    font-weight: 600;
    font-display: swap;
    font-style: normal;
    src: local("EBGaramond SemiBold"),url(/fonts/EBGaramond/EBGaramond-SemiBold.ttf) format("truetype")
}

@font-face {
    font-family: EB Garamond;
    font-weight: 600;
    font-display: swap;
    font-style: Italic;
    src: local("EBGaramond SemiBold"),url(/fonts/EBGaramond/EBGaramond-SemiBoldItalic.ttf) format("truetype")
}

@font-face {
    font-family: EB Garamond;
    font-weight: 500;
    font-display: swap;
    font-style: normal;
    src: local("EBGaramond Medium"),url(/fonts/EBGaramond/EBGaramond-Medium.ttf) format("truetype")
}

@font-face {
    font-family: EB Garamond;
    font-weight: 500;
    font-display: swap;
    font-style: Italic;
    src: local("EBGaramond Medium"),url(/fonts/EBGaramond/EBGaramond-MediumItalic.ttf) format("truetype")
}

@font-face {
    font-family: EB Garamond;
    font-weight: 400;
    font-display: swap;
    font-style: normal;
    src: local("EBGaramond Regular"),url(/fonts/EBGaramond/EBGaramond-Regular.ttf) format("truetype")
}

@font-face {
    font-family: EB Garamond;
    font-weight: 400;
    font-display: swap;
    font-style: Italic;
    src: local("EBGaramond Regular"),url(/fonts/EBGaramond/EBGaramond-RegularItalic.ttf) format("truetype")
}

@font-face {
    font-family: optima;
    font-weight: 800;
    font-display: swap;
    font-style: normal;
    src: local("optima 12506"),url(/fonts/optima/12506.ttf) format("truetype")
}

:root {
    --side-margin: 20px;
    --section-padding-1: 160px;
    --section-padding-2: 80px;
    --section-padding-3: 60px;
    --section-padding-4: 40px;
    --section-padding-5: 100px;
    --theme-duration-1: 600ms;
    --theme-duration-2: 300ms;
    --header-height: 93px;
    --header-active-height: 60px;
    --header-menu-top: 36px;
    --header-active-menu-top: 21px;
    --header-logo-top: 17.5px;
    --header-active-logo-top: 14px;
    --contents-gap-1: 46px;
    --contents-gap-2: 30px;
    --contents-gap-3: 27px;
    --max-width: 1100px;
    --img-max-width: 820px;
    --font-pretendard: "Pretendard Variable";
    --font-eb-garamond: "optima";
    --font-black: #333;
    --font-white: #fff;
    --font-sepia: #544e43;
    --font-warmgrey4: #746f66;
    --font-warmgrey5: #97928a;
    --bg-warmgrey: #746f66;
    --bg-sepia: #2f2a21;
    --bg-ivory: #f6f5f4;
    --bg-remote: hsla(0,0%,100%,.9);
    --circle-step-1: #f6f5f4;
    --circle-step-2: #dbd9d6;
    --circle-step-3: #b3afa9;
    --circle-step-4: #97928a;
    --circle-step-5: #746f66;
    --circle-step-6: #534e43;
    --circle-step-7: #2e2920
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
    background: transparent;
    word-break: keep-all;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-pretendard),sans-serif;
    color: #000
}

::-webkit-scrollbar {
    display: none
}

img,svg {
    max-width: 100%
}

b,h1,h3,h4,h5,img,p,span,svg {
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none
}

.container {
    margin: 0 auto;
    position: relative;
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--contents-gap-2);
    overflow: hidden;
    animation: fadeIn var(--theme-duration-1)
}

.title {
    font-family: var(--font-eb-garamond),var(--font-pretendard);
    text-align: center;
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    color: var(--font-black)
}

.mobile {
    display: none!important
}

@media screen and (max-width: 700px) {
    .pc {
        display:none!important
    }

    .mobile {
        display: block!important
    }

    .title {
        text-align: center;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 32px
    }
}

@media screen and (max-width: 500px) {
    .container {
        gap:var(--contents-gap-3)
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.footer_footer__Ir89g {
    padding: 40px 20px 80px;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--bg-sepia)
}

.footer_contents__JquaO {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    place-items: center;
    grid-gap: 28px;
    gap: 28px;
    overflow: hidden
}

.footer_left__LHB8B {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    place-items: center;
    grid-gap: 24px;
    gap: 24px
}

.footer_logo__eX5OJ {
    flex-direction: column;
    gap: 20px
}

.footer_logo__eX5OJ,.footer_menu__Y7kOM {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.footer_menu__Y7kOM {
    gap: 10px
}

.footer_text__title__SYubx {
    font-family: var(--font-pretendard);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    color: var(--font-white)
}

.footer_text__content__LM7eC {
    text-align: center;
}

.footer_text__content__LM7eC,.footer_text__description___CnGB {
    font-family: var(--font-pretendard);
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px;
    color: var(--font-white) !important;
    text-decoration: none !important;
}

.footer_line__vectical__4_AFT {
    width: 1px;
    height: 16px;
    background: #fff
}

.footer_center__Tra0B {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    place-items: flex-start;
    grid-gap: 4px;
    gap: 4px
}

.footer_docs__wBKZ2 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px
}

.footer_docs__item__Hh5sS {
    font-family: var(--font-pretendard);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    color: var(--font-white)
}

.footer_right__hQzNo {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: min-content;
    place-items: flex-start;
    grid-gap: 6px;
    gap: 6px;
    overflow: hidden
}

.footer_info__LMzLs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: max-content 1fr;
    grid-gap: 2px;
    gap: 2px
}

.footer_copyright__TC9pN {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    place-items: center;
    grid-gap: 6px;
    gap: 6px
}

.footer_copyright__text__8Dyx0 {
    text-align: center;
    font-family: var(--font-eb-garamond);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    color: var(--font-white)
}

.footer_line__12tUs,.footer_separator__HX1c_ {
    width: 100%;
    height: 1px;
    background: #fff
}

.footer_separator__HX1c_ {
    display: none
}

@media screen and (max-width: 500px) {
    .footer_footer__Ir89g {
        padding:var(--section-padding-3) 20px
    }

    .footer_contents__JquaO {
        grid-template-columns: 1fr;
        grid-auto-rows: max-content;
        gap: var(--contents-gap-3)
    }

    .footer_separator__HX1c_ {
        display: unset
    }
}

.remote_remote__5rpcJ {
    position: fixed;
    right: 20px;
    top: 75%;
    z-index: 15;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,.25);
    transform: translateY(-50%)
}

.remote_item__mSJ4E,.remote_remote__5rpcJ {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.remote_item__mSJ4E {
    width: 60px;
    height: 60px;
    gap: 6px;
    background: var(--bg-remote);
    text-decoration: none !important;
}

.remote_item__mSJ4E span {
    font-family: var(--font-pretendard);
    font-size: 10px;
    font-style: normal;
    font-weight: 300;
    line-height: 13px;
    color: var(--font-black);
}

@media screen and (max-width: 500px) {
    .remote_remote__5rpcJ {
        right:0;
        top: unset;
        bottom: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(5,1fr);
        place-items: center;
        grid-gap: 0;
        gap: 0;
        transform: unset
    }

    .remote_item__mSJ4E {
        width: 100%
    }
}

.remote_contacBtnGroup__492KD {
    height: 160px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    right: 16px;
    bottom: 80px;
    z-index: 9999
}

.remote_contactBtn__AcSxG {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 1px 0 10px 1px rgba(51,50,47,.3)
}

.remote_contactBtn__AcSxG img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media (min-width: 500px) {
    .remote_contacBtnGroup__492KD {
        height:160px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: fixed;
        right: 10px;
        top: -160px;
        z-index: 9999
    }
}
