/*===========================================================================
	웹폰트
============================================================================*/

/* 폰트 */
@font-face {
    font-family: "Pretendard";
    font-weight: 100;
    font-style: normal;
    src: url("/fonts/Pretendard-Thin.woff2") format("woff2");
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    font-weight: 200;
    font-style: normal;
    src: url("/fonts/Pretendard-ExtraLight.woff2") format("woff2");
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    font-weight: 300;
    font-style: normal;
    src: url("/fonts/Pretendard-Light.woff2") format("woff2");
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    font-weight: 400;
    font-style: normal;
    src: url("/fonts/Pretendard-Regular.woff2") format("woff2");
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    font-weight: 500;
    font-style: normal;
    src: url("/fonts/Pretendard-Medium.woff2") format("woff2");
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    font-weight: 600;
    font-style: normal;
    src: url("/fonts/Pretendard-SemiBold.woff2") format("woff2");
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    font-weight: 700;
    font-style: normal;
    src: url("/fonts/Pretendard-Bold.woff2") format("woff2");
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    font-weight: 800;
    font-style: normal;
    src: url("/fonts/Pretendard-ExtraBold.woff2") format("woff2");
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    font-weight: 900;
    font-style: normal;
    src: url("/fonts/Pretendard-Black.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "Tenada , sans-serif";
    src: url("/fonts/Tenada.ttf");
}

/*===========================================================================
	CSS 초기화
============================================================================*/
@layer common {
    * {
        font-family: "Pretendard", sans-serif;
        box-sizing: border-box;
    }
    html,
    body,
    div,
    span,
    object,
    iframe,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    em,
    img,
    strong,
    b,
    i,
    dl,
    dt,
    dd,
    ol,
    ul,
    li,
    form,
    label,
    legend,
    caption,
    article,
    aside,
    footer,
    header,
    menu,
    nav,
    section,
    video,
    a {
        border: 0;
        outline: 0;
        line-height: 1;
        margin: 0;
        padding: 0;
    }
    html {
        scroll-behavior: smooth;
        color-scheme: light;
    }
    body {
        line-height: 1;
        -ms-overflow-style: none;
        height: 100%;
    }
    article,
    aside,
    details,
    figcaption,
    figure,
    footer,
    header,
    hgroup,
    menu,
    nav,
    section {
        display: block;
    }
    ul,
    ol,
    li {
        list-style: none;
    }
    strong {
        display: inline-block;
    }
    a {
        display: block;
        color: inherit;
    }
    pre {
        font-family: "Pretendard", sans-serif;
        white-space: pre-line;
        line-height: 1.5;
    }
    form {
        display: contents;
    }
    input,
    select {
        vertical-align: middle;
        outline: 0;
        border: 0;
        background: none;
        font-family: "Pretendard", sans-serif;
    }
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }
    input[type="file"],
    input[type="checkbox"],
    input[type="radio"] {
        display: none;
    }
    select {
        appearance: none;
        background-image: url(../images/icon_arrow_down.png);
        background-repeat: no-repeat;
        background-position: right 16px center;
        background-size: 24px;
    }
    select option[value="disabled"][disabled] {
        display: none;
    }
    label {
        cursor: pointer;
    }
    button {
        cursor: pointer;
    }
    a {
        text-decoration: none;
        display: block;
    }
    textarea {
        border: 0;
        outline: 0;
        resize: none;
        font-family: "Pretendard", sans-serif;
    }

    i {
        font-family: "xeicon";
        font-style: normal;
        color: inherit;
    }
}

/*===========================================================================
	Global
============================================================================*/

:root {
    /* 폰트 */
    --Pretendard: "Pretendard", sans-serif;

    /* 색상 */
    --1: #e30019;
    --2: #1d1e1e;
    --3: #484848;
    --4: #707070;
    --5: #aeaeae;
    --6: #e4e4e4;
    --7: #fcfcfc;

    /* 다크모드 해제 */
    color-scheme: light only;
}

/* 메인로고 */
.main-logo {
    display: flex;
    align-items: center;
    min-width: 191px;
}

.main-logo img {
    width: 100%;
}

/* header */

#header {
    position: fixed;
    top: 0px;
    height: 80px;
    width: 100%;
    z-index: 998;
    text-align: center;
    color: #f2f2f2;
    border-bottom: 1px solid #e4e4e4;
}

#header .hd_bg {
    position: relative;
    left: 0;
}

#header .hd_bg img {
    display: none;
    position: absolute;
    max-width: 285px;
    bottom: 0;
    left: 19%;
    transform: translateX(-50%);
}

#header .hd_bg img.active {
    display: block;
}

#header .logo-b {
    display: none;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: unset;
    height: 100%;
    padding: 0 20px;
}

#header .gnb {
    text-align: right;
}

#header .nav .logo {
    display: flex;
    width: 200px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    cursor: pointer;
}

#header .menu_btn {
    position: absolute;
    right: 20px;
    top: 20px;
    display: none;
}

#header .nav ul.gnb {
    margin-bottom: 0px;
    padding-left: 0px;
    display: flex;
}

#header .nav ul.gnb li {
    margin-bottom: 0px;
    color: #000;
    text-align: center;
    position: relative;
}

#header .nav ul.gnb li a {
    box-sizing: border-box;
    display: flex;
    padding: 24px 0;
    justify-content: center;
    align-items: center;
    height: 64px;
}

#header .nav ul.gnb li a:hover {
    /* color: #496781; */
    /* text-decoration: underline; */
}

#header .nav ul.gnb > li {
    /* padding: 28px 31px; */
}

#header .nav ul.gnb > li > a {
    padding: 28px 30px;
    height: 100%;
    width: 200px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    max-height: 86px;
}

#header .nav ul.gnb li ul.sub {
    position: absolute;
    padding-left: 0px;
    opacity: 0;
    visibility: hidden;
    padding-top: 10px;
    z-index: 3;
    width: 100%;
    /* height: 210px; */
    /* border-left: 1px solid #e2e2e2; */
}

#header .nav ul.gnb li ul.sub li {
    display: block;
    position: relative;
}

#header .ri-wrap {
    display: flex;
    gap: 40px;
}

#header .ri-wrap .bar-icon {
    width: 40px;
    color: #fff;
}

/* 번역 셀랙트 박스 */
.tran-select-wrap {
    width: 96px;
    height: 40px;
    position: relative;
    border-radius: unset;
}

.tran-select-wrap.mb {
    display: none;
}

.tran-select-wrap .btn_select {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0 17px;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}

.tran-select-wrap .btn_select p {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.tran-select-wrap .btn_select svg {
    width: 18px;
    color: #fff;
}
.sub-header.open .tran-select-wrap .btn_select svg {
    color: #202020;
}

.tran-select-wrap .list_option {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    width: 100%;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 16px 0 rgba(0, 0, 0, 0.12);
    z-index: 1;
}

.tran-select-wrap .list_option li {
    display: flex;
    width: 100%;
    height: 32px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.tran-select-wrap .list_option li p {
    font-size: 17px;
    width: 100%;
    text-align: center;
    color: #333;
}

.tran-select-wrap .list_option li:hover {
    background-color: #fff;
}

.tran-select-wrap .list_option li:hover p {
    font-weight: 600;
}

.tran-select-wrap.open {
    box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.12);
}

.tran-select-wrap.open .btn_select {
    border-bottom: 1px solid #fff;
    background-color: #fff;
}

.tran-select-wrap.open .btn_select svg {
    transform: rotate(0.5turn);
}

.tran-select-wrap.open .list_option {
    display: block;
    background-color: #fff;
}

.tran-select-wrap.open .list_option li {
    background-color: #fff;
}

.tran-select-wrap.open .list_option li:hover {
    background-color: #f5f5f5;
}

.tran-select-wrap.open .btn_select p {
    color: #202020;
}

.tran-select-wrap.open .btn_select svg {
    color: #202020;
}

#header .trans-mb-btn {
    position: absolute;
    top: -32px;
    display: flex;
    align-items: center;
    gap: 18px;
}

#header .trans-mb-btn a {
    font-size: 13px;
    font-weight: 500;
    color: #e4e4e4;
}

#header .trans-mb-btn a.active {
    font-weight: bold;
    color: #000;
}

#header .trans-mb-btn li:first-child {
    position: relative;
}

#header .trans-mb-btn li:first-child:after {
    position: absolute;
    content: "";
    top: 0;
    right: -9.5px;
    width: 1px;
    height: 15.5px;
    background-color: #e5e5e5;
}

#header .logo-main {
    display: none;
}

#header .logo-w {
    display: flex;
    max-width: 191px;
}

/* 서브페이지 헤더  sub-header */
#header.sub-header {
    border-bottom: 1px solid #e4e4e44a;
    transition: .3s;
    /* position: relative; */
}

#header.sub-header .logo-main {
    display: none;
}

#header.sub-header .logo-w {
    display: flex;
    max-width: 191px;
}

#header.sub-header .ri-wrap .bar-icon {
    color: #fff;
}

/* 메인페이지 헤더 */
#header.main-header {
    border-bottom: 0;
    background: none;
}
#header.main-header.bg-white {
    background-color: #fff;
}
#header.main-header .logo-main {
    display: block;
    width: 191px;
}
#header.main-header .logo-w {
    display: none;
}
#header.main-header.open {
    background-color: #fff;
}
#header.main-header .ri-wrap .bar-icon,
#header.main-header .nav ul.gnb > li > a,
#header.main-header .tran-select-wrap .btn_select p,
#header.main-header .tran-select-wrap .btn_select svg,
#header.main-header .tran-select-wrap .list_option li p,
#header.white .tran-select-wrap.open .btn_select p,
#header.white .tran-select-wrap.open .btn_select svg {
    color: #202020;
}

#header.white .logo-main {
    display: none;
}
#header.white .logo-w {
    display: block;
}
#header.white .ri-wrap .bar-icon,
#header.white .nav ul.gnb > li > a,
#header.white .tran-select-wrap .btn_select p,
#header.white .tran-select-wrap .btn_select svg {
    color: #fff;
}

.mb-hd .tran-select-wrap {
    margin-left: auto;
}

.header .hd_bg {
    position: relative;
    left: 0;
}

@media (max-width: 1615px) {
    #header .nav ul.gnb > li > a {
        width: 150px;
    }
}

@media (max-width: 1306px) {
    #header .nav ul.gnb > li > a {
        width: 110px;
        padding: 14px 15px;
        font-size: 18px;
    }

    #header .nav ul.gnb li ul.sub li a {
        /* padding: 6px; */
    }

    #header .ri-wrap .user-icon {
        font-size: 30px;
    }

    #header .ri-wrap .bar-icon {
        width: 30px;
    }

    #header .ri-wrap {
        gap: 24px;
    }

    #header .nav ul.gnb li ul.sub {
        padding-top: 15px;
        margin-top: 20px;
    }

    #header .nav ul.gnb {
        padding: 16px 0px 20px;
    }
}

@media (max-width: 1080px) {
    nav {
        display: none;
    }

    .main-logo {
        min-width: 120px;
    }

    .main-logo img,
    #header .logo-w {
        max-width: 120px;
        object-fit: contain;
    }

    #header.sub-header .logo-w {
        max-width: 120px;
    }

    #header {
        height: 64px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 16px;
        border-bottom: 1px solid #7372724a;
    }

    #header .ri-wrap {
        gap: 8px;
    }

    #header .ri-wrap .user-icon {
        color: #fff;
    }

    #header .ri-wrap .bar-icon {
        width: 28px;
        color: #fff;
    }

    #header.open {
        background-color: unset;
    }

    #header .container {
        padding: unset;
    }

    .tran-select-wrap.pc {
        display: none;
    }

    .tran-select-wrap.mb {
        display: flex;
        align-items: center;
        width: unset;
        height: unset;
        position: unset;
    }

    .tran-select-wrap.mb .tran-btn {
        padding-bottom: 4px;
        border-bottom: 1px solid #fff;
        font-size: 14px;
        font-weight: bold;
        color: #fff;
    }

    .tran-select-wrap {
        width: 64px;
    }
    .tran-select-wrap .btn_select {
        padding: 0 4px;
    }

    .tran-select-wrap .btn_select p {
        font-size: 14px;
    }

    .tran-select-wrap .btn_select svg {
        width: 18px;
    }

    .tran-select-wrap .list_option li {
        height: 28px;
    }

    .tran-select-wrap .list_option li p {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    #header.open .nav .gnb li ul.sub {
        visibility: visible;
        opacity: 1;
        transform: translateY(0px);
    }

    #header .nav ul.gnb li:hover {
        display: inline-block;
        margin-bottom: 0px;
    }

    #header.open .hd_bg {
        position: absolute;
        width: 100%;
        background: #fff;
        z-index: 1;
        transition: all 0.3s;
        border-top: 1px solid #dcdcdc;
    }

    #header .nav ul.gnb li ul.sub li a {
        text-align: center;
    }

    #header .nav .active {
        position: relative;
    }

    #header .nav .active:hover:after {
        content: "";
        display: block;
        width: 100%;
        height: 2px;
        background: #000;
        position: absolute;
        left: 0;
        bottom: 0;
    }
}

@media (max-width: 1024px) {
    #header .menu_btn {
        display: block;
        top: 50%;
        transform: translateY(-50%);
    }

    #header .menu_btn.lijo {
        top: 30%;
    }

    #header .nav ul.gnb {
        position: absolute;
        top: 65px;
        transform: translateX(100%);
        left: 0;
        transition: 0.8s ease;
        width: 100%;
        height: calc(100vh - 65px);
        background: #fff;
        overflow-y: auto;
        display: block;
    }

    #header .nav ul.gnb li a {
        text-align: left;
    }

    #header .nav ul.gnb.surya {
        transform: translateX(0%);
    }

    #header .nav ul.gnb li ul.sub {
        opacity: 1;
        visibility: visible;
        display: none;
        position: relative;
        padding-top: 0px;
        width: 100%;
        transition: 0s;
        transform: translateY(0px);
    }

    #header .nav ul.gnb li ul.sub:after {
        display: none;
    }

    .hd_bg {
        display: none !important;
    }
}

/* header hover */

#header.open .nav ul.gnb > li > a,
#header.open .tran-select-wrap .btn_select p,
#header.open .tran-select-wrap .btn_select svg {
    color: #202020;
}

#header.open .ri-wrap .bar-icon {
    color: #496781;
}

#header.open .logo-w {
    display: none;
}

#header.open .logo-main {
    display: flex;
    max-width: 191px;
}

#header.main-header.open .logo-w {
    display: none;
}

#header.main-header.open .logo-main {
    display: flex;
    max-width: 191px;
}

#header.main-header.open .tran-select-wrap .btn_select p {
    color: #202020;
}

#header.main-header.open .tran-select-wrap .btn_select svg {
    color: #202020;
}

#header.main-header.open .ri-wrap .bar-icon {
    color: #496781;
}

/* 서브페이지 헤더  sub-header */
#header.sub-header {
    border-bottom: 1px solid #e4e4e4;
}

#header.sub-header .logo-w {
    /* display: none; */
}

#header.sub-header .logo-b {
    display: flex;
}

#header.sub-header .nav-list {
    display: flex;
}

#header.sub-header.open {
    background-color: #fff;
}
#header.sub-header.open .nav ul.gnb > li > a,
#header.sub-header.open .tran-select-wrap .btn_select p,
#header.sub-header.open .tran-select-wrap .btn_select svg {
    color: #202020;
}

#header.sub-header.open .ri-wrap .bar-icon {
    color: #496781;
}

#header.sub-header.open .logo-w {
    display: none;
}

/* #header.sub-header.open .logo-main {
    display: flex;
    max-width: 191px;
} */

/* 첫번째 섹션이 아닐경우 header : ver2 클래스 추가 */

#header.ver2 .nav-list {
    display: flex;
}

#header.ver2 .logo-w {
    display: none;
}

#header.ver2 .logo-main {
    display: flex;
    max-width: 191px;
}

#header.ver2 .nav ul.gnb > li > a {
    color: #202020;
}

#header.ver2 .tran-select-wrap .btn_select p {
    color: #202020;
}

#header.ver2 .tran-select-wrap .btn_select svg {
    color: #202020;
}

#header.ver2 .ri-wrap .bar-icon {
    color: #496781;
}

/* 디테일페이지 header */

#header.detail-header {
    background: #fff;
}

#header.detail-header .logo-w {
    display: none;
}

#header.detail-header .logo-main {
    display: flex;
    max-width: 190px;
}

#header.detail-header .nav ul.gnb > li > a {
    color: #202020;
}

#header.detail-header .tran-select-wrap .btn_select p {
    color: #202020;
}

#header.detail-header .tran-select-wrap .btn_select svg {
    color: #202020;
}

#header.detail-header .ri-wrap .bar-icon {
    color: #496781;
}

@media (max-width: 1080px) {
    #header.detail-header .logo-main {
        max-width: 120px;
    }
}

/* 모바일 메뉴 */
.mb-hd {
    display: none;
}

.mb-hd-wrap {
    display: none;
}

.header-wrap .gnb-wrap {
    background-color: #2c2c2c;
}

#header .mb-hd {
    display: block;
}

#header .mb-hd .mb-hd-wrap {
    position: fixed;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #333333e6;
    display: none;
    justify-content: flex-end;
    z-index: 99999;
    height: 100vh;
}

#header .mb-hd .scoll-wrap {
    height: 100svh;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#header .mb-hd .mb-hd-wrap.open {
    display: flex;
}

#header .mb-hd .mb-hd-box {
    width: 375px;
    background-color: #fff;
    box-shadow: -5px 0 5px 0 rgba(0, 0, 0, 0.3);
    position: relative;
}

#header .mb-hd .mb-hd-box .mb-logo {
    max-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 12px 0;
}

#header .mb-hd .mb-hd-box .mb-login {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
    font-weight: 400;
}

#header .mb-hd .mb-hd-box .mb-login > a {
    color: #7d7d7d;
    width: 50%;
    text-align: center;
    cursor: pointer;
}

#header .mb-hd .mb-nav .mb-sm-nav-top {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    border-bottom: 1px solid #efefef;
    cursor: pointer;
}

#header .mb-hd .mb-nav .mb-sm-nav-top p,
#header .mb-hd .mb-nav .mb-sm-nav-top a {
    color: #496781;
    font-size: 17px;
    font-weight: bold;
}

#header .mb-hd .mb-nav .mb-sm-nav-top svg {
    width: 18px;
    color: #496781;
    transition: transform 0.3s ease;
}

#header .mb-hd .mb-nav .mb-sm-nav-top.active svg {
    transform: rotate(180deg);
}

#header .mb-hd .mb-nav .mb-sm-nav {
    flex-direction: column;
    display: none;
}

#header .mb-hd .mb-nav .mb-sm-nav a {
    padding: 0 24px;
    font-size: 14px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    line-height: 40px;
    color: #333;
}

#header .mb-hd .mb-nav .instant a {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    color: #333;
    letter-spacing: -0.4px;
    font-weight: bold;
    border-bottom: 1px solid #efefef;
}

#header .mb-hd .mb-nav .instant .counsel-btn {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    color: #333;
    letter-spacing: -0.4px;
    font-weight: bold;
    border-bottom: 1px solid #efefef;
    font-size: 16px;
}

#header .mb-hd .sns-wrap-mb {
    display: flex;
    gap: 16px;
    position: absolute;
    right: 24px;
    bottom: 24px;
}

#header .mb-hd .menubar-wrap {
    cursor: pointer;
}

#header .mb-hd .close-btn {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e30019;
    position: absolute;
    top: 0;
    left: -56px;
}

#header .mb-hd .close-btn i {
    font-size: 30px;
    color: #fff;
}

#header .mb-hd-top {
    background-color: #fff;
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    margin-bottom: 8px;
    position: sticky;
    top: 0;
}

#header .mb-hd .main-logo .logo-main {
    display: flex;
}

#header .mb-hd .main-logo {
    min-width: 120px;
}

#header .mb-hd .main-logo img {
    max-width: 120px;
    object-fit: contain;
}

#header .mb-hd .main-logo .logo-w {
    display: none;
}

#header .mb-hd .tran-select-wrap {
    width: 64px;
    margin-right: 8px;
    padding: 0 4px;
}

#header .mb-hd .tran-select-wrap .btn_select p,
#header .mb-hd .tran-select-wrap .btn_select svg {
    color: #333;
    font-size: 14px;
    width: 18px;
}

#header .mb-hd .tran-select-wrap .list_option li p {
    font-size: 14px;
}

#header .mb-hd .tran-select-wrap .btn_select p {
    margin-right: 4px;
}

#header .mb-hd .tran-select-wrap .btn_select {
    padding: 0;
}

#header .mb-hd .bar-icon {
    width: 28px;
    color: #496781;
}

#header .mb-hd .mb-nav .mb-dep-nav-top {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 9.8px;
    border-bottom: 1px solid #d4d4d4;
    cursor: pointer;
}

#header .mb-hd .mb-dep-nav {
    display: none;
}

#header .mb-hd .mb-dep {
    padding: 0 24px;
    margin-top: 9.8px;
}

#header .mb-hd .mb-dep.btm {
    margin-top: 16px;
}

#header .mb-hd .mb-dep p {
    font-size: 14px;
    color: #333;
}

#header .mb-hd .mb-nav .mb-dep-nav {
    margin-top: 9.8px;
}

#header .mb-hd .mb-nav .mb-dep-nav a {
    padding: unset;
    font-size: 14px;
    font-weight: 300;
    color: #707070;
    height: unset;
    line-height: unset;
    margin-bottom: 8px;
}

#header .mb-hd .mb-nav .mb-dep-nav-top svg {
    width: 18px;
    color: #496781;
}

/* 모바일 - 헤더 변화 */

.color-change {
    background: #fff;
}

.color-change .logo-w {
    display: none;
}

#header.color-change .logo-main {
    display: flex;
    max-width: 128px;
}

.color-change .logo-main {
    display: flex;
    max-width: 190px;
}

.color-change .nav ul.gnb > li > a {
    color: #202020;
}

.color-change .tran-select-wrap .btn_select p {
    color: #202020;
}

.color-change .tran-select-wrap .btn_select svg {
    color: #202020;
}

#header.color-change .ri-wrap .bar-icon {
    color: #496781;
}

@media (max-width: 1080px) {
    #header.sub-header {
        border-bottom: unset;
    }

    .color-change .tran-select-wrap.mb .tran-btn {
        color: #333;
        border-bottom: 1px solid #333;
    }
    
}

/* @media (prefers-color-scheme: dark) {
    .main-header .logo-main {
        display: none !important;
    }
    .main-header .logo-w {
        display: block !important;
    }
    #header .mb-hd .main-logo .logo-main {
        display: none !important;
    }
    #header .mb-hd .main-logo .logo-w {
        display: block !important;
    }
} */

/* footer */

/* 풀페이지 푸터 높이를 위한 속성 추가 */
.fp-auto-height.fp-section,
.fp-auto-height .fp-slide {
    height: auto !important;
}

.fp-auto-height .fp-tableCell {
    height: auto !important;
}

.footer {
    padding: 32px 0 38px;
    background-color: #484848;
    z-index: 9;
}

.footer .container {
    max-width: 1440px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer .logo-f {
    max-width: 148px;
    margin-bottom: 24px;
}

.footer .footer-txt {
    font-size: 14px;
    font-weight: 300;
    color: #fcfcfc;
    line-height: 1.29;
    text-align: center;
}

.footer .footer-txt.top {
    margin-bottom: 8px;
}

.footer .footer-copy {
    font-size: 14px;
    font-weight: 300;
    color: #fcfcfc;
    opacity: 0.5;
    line-height: 1.29;
    margin-top: 24px;
}

.footer .mb {
    display: none;
}

@media screen and (max-width: 1080px) {
    .footer {
        padding: 45px 0;
    }

    .footer .logo-f {
        max-width: 128px;
    }

    .footer .footer-txt {
        text-align: center;
        font-size: 12px;
        line-height: 1.33;
    }

    .footer .footer-txt.top {
        margin-bottom: 10px;
    }

    .footer .footer-copy {
        margin-top: 16px;
        font-size: 10px;
    }

    .footer .mb {
        display: flex;
    }
}

/* 사이드매뉴 */
.Header_Side_menu {
    position: fixed;
    right: 32px;
    bottom: 60px;
    z-index: 997;
    display: flex;
    flex-direction: column;
}

.Header_Side_menu .Top_Scroll_btn {
    width: 48px;
    height: 48px;
    border-radius: 100%;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
    background-color: #aeaeae;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Header_Side_menu .Top_Scroll_btn i {
    font-size: 29px;
    color: #fff;
    z-index: 2;
}

.Header_Side_menu .Top_Scroll_btn .progress_bar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.Header_Side_menu .Top_Scroll_btn .progress_bar::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background-color: #aeaeae;
    border-radius: 100%;
}

@media (max-width: 768px) {
    .Header_Side_menu {
        bottom: 28px;
        right: 22px;
    }
}

html.open-modal {
    overflow: hidden !important;
}
