/* ===== Default minimal CSS ===== */

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

/* Device */
.DT {
    display: block;
}

.MB {
    display: none;
}

@media screen and (max-width:768px) {
    .DT {
        display: none;
    }

    .MB {
        display: block;
    }
}

/* base */
html,
body {
    width: 100%;
    overflow-x: hidden;
    /* height: 100%; */
}

body {
    margin: 0;
    font-family: "Escoredream", system-ui, -apple-system, "Apple SD Gothic Neo",
        "Malgun Gothic", "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.5;
    color: #111;
    background: #fff;
}

/* media */
img,
video,
svg,
canvas {
    max-width: 100%;
    height: auto;
    display: block;
}

/* links */
a {
    color: inherit;
    text-decoration: none;
}

/* a:hover {
    text-decoration: underline;
} */

/* list */
ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* spacing reset */
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

section {
    width: 100%;
    overflow: hidden;
}

/* form */
button,
input,
select,
textarea {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
}

/* table */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

html {
    --gold01: #C9A86A;
    --main: #0D132D;
}

html.open,
html.open body {
    overflow: hidden;
}

#wrapper {
    width: 100%;
    overflow: hidden;
}


/* old header */

/* header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    transition: .35s ease opacity, .35s ease transform;
    mix-blend-mode: difference;
}

header.open {
    mix-blend-mode: normal;
}

header:after {
    height: 1px;
    width: 100%;
    background-color: #e1e1e1;
    display: block;
    content: "";
    position: absolute;
    bottom: 0;
    transition: .35s all ease;
    --webkit-transition: .35s all ease;
    pointer-events: none;
    opacity: 0;
}

header.open:after {
    opacity: 1;
}

header #_logo {
    transition: .45s all ease;
    --webkit-transition: .45s all ease;
}

header.on {
    transform: translateY(0);
}

header.open {
    background: rgba(255, 255, 255, 1);
    border-bottom: solid 1px #e1e1e1;
}

header.open #_logo {
    filter: invert(1);
}

header #headerInner {
    width: 90%;
    height: 90px;
    max-width: 1520px;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

header #headerInner #_gnb,
header #headerInner #_gnb ul.list {
    height: 100%;
}

header #headerInner #_gnb h2 {
    font-size: 0;
    line-height: 0;
    position: absolute;
    overflow: hidden;
}

header #headerInner #_gnb ul.list {
    display: flex;
    flex-direction: row;
}

header #headerInner #_gnb ul.list a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-family: Pretendard;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.68px;
    height: 100%;
    width: 160px;
    text-align: center;
    transition: .45s all ease;
    --webkit-transition: .45s all ease;
}

header.open #headerInner #_gnb ul.list li a {
    color: #222;
}

header.open #headerInner #_gnb ul.list li:hover a {
    color: #fff;
}



header #headerInner #_gnb ul.list li {
    transition: .5s all ease;
    --webkit-transition: .5s all ease;
}

header #headerInner #_gnb ul.list>li:hover {
    background: var(--gold01);
}



header #headerInner #_gnb ul.list li .dropDown {
    height: 0;
    transition: 0.5s all ease;
    --webkit-transition: 0.5s all ease;
    padding-top: 16px;
    visibility: hidden;
    pointer-events: none;
}

header.open #headerInner #_gnb ul.list li .dropDown {
    visibility: visible;
    pointer-events: all;
}

header #headerInner #_gnb ul.list li .dropDown a {
    height: 42px;
    transition: 0.4s all ease;
    --webkit-transition: 0.4s all ease;
    opacity: 0;
    visibility: hidden;
}

header.open #headerInner #_gnb ul.list li .dropDown a {
    opacity: 1;
    visibility: visible;
}

header #headerInner #_gnb ul.list li:hover .dropDown {
    background: var(--gold01);
    height: 340px;
}

header #headerInner #gnbButton {
    width: 42px;
    height: 42px;
    position: relative;
    cursor: pointer;
}

header #headerInner #gnbButton span {
    width: 100%;
    height: 2px;
    background: #fff;
    display: block;
    position: absolute;
    transition: 0.4s all ease;
    --webkit-transition: 0.4s all ease;
}


header.open #headerInner #gnbButton span {
    background: #222;
}

header #headerInner #gnbButton span:nth-child(1) {
    left: 0;
    top: 14px;
}

header #headerInner #gnbButton span:nth-child(2) {
    width: 24px;
    left: 0;
    top: 26px;
}

header.open #headerInner #gnbButton span:nth-child(1) {
    transform: rotate(45deg);
    left: 0;
    top: 20px;

}


header.open #headerInner #gnbButton span:nth-child(2) {
    width: 100%;
    transform: rotate(-45deg);
    left: 0;
    top: 20px;
}

header .menuOveray {
    display: block;
    width: 100%;
    height: 0;
    left: 0;
    top: 0;
    transition: .45s all ease;
    --webkit-transition: .45s all ease;
    background: #fff;
    position: absolute;
    z-index: -1;
}

header .menuOveray.open {
    height: 430px;
}

@media screen and (min-width: 768px) {
    header #headerInner #gnbButton:hover span:nth-child(1) {
        transform: rotate(45deg);
        left: 0;
        top: 20px;
    }

    header #headerInner #gnbButton:hover span:nth-child(2) {
        width: 100%;
        transform: rotate(-45deg);
        left: 0;
        top: 20px;
    }
}

@media screen and (max-width: 768px) {
    html {
        overflow: hidden;
    }

    header #_logo {
        width: 160px
    }

    header #headerInner {
        height: 70px;
    }

    header #headerInner #_gnb {
        opacity: 0;
        visibility: hidden;
    }

    header.open #headerInner #_gnb {
        opacity: 1;
        visibility: visible;
    }

    header #headerInner #_gnb,
    header #headerInner #_gnb ul.list {
        height: auto;
    }

    header #headerInner #_gnb ul.list>li:hover,
    header #headerInner #_gnb ul.list li:hover .dropDown {
        background: transparent;
    }

    header #headerInner #_gnb ul.list li:hover .dropDown {
        height: auto;
    }

    header #headerInner #_gnb ul.list li .dropDown {
        padding: 0 2em;
        height: auto;
    }

    header #headerInner #_gnb ul.list li .dropDown a {
        height: 32px;
        color: #777;
    }

    header #headerInner #_gnb ul.list li {
        height: auto;
    }

    header #headerInner #_gnb ul.list>li>a {
        position: relative;
        height: 45px;
        border-bottom: 1px solid #e1e1e1;
    }

    header #headerInner #_gnb ul.list>li:nth-child(1)>a:after,
    header #headerInner #_gnb ul.list>li:nth-child(2)>a:after {
        display: block;
        content: "";
        background: url('/test/img/arrow_drop.svg') repeat;
        width: 24px;
        height: 24px;
        position: absolute;
        right: 0;
        transition: .3s all ease;
    }

    header #headerInner #_gnb ul.list>li:nth-child(1).on>a:after,
    header #headerInner #_gnb ul.list>li:nth-child(2).on>a:after {
        transform: rotate(180deg);
    }

    header.open #headerInner #_gnb ul.list li:hover a {
        color: #222;
    }

    header #headerInner #_gnb ul.list a {
        width: 90%;
        justify-content: start;
    }

    header #headerInner #_gnb {
        position: absolute;
        top: 90px;
        width: 100%;

    }

    header #headerInner #_gnb ul.list {
        flex-direction: column;
    }

    header #headerInner #_gnb ul.list li .dropDown a,
    header.open #headerInner #_gnb ul.list li .dropDown a {
        height: 0;
        visibility: hidden;
        opacity: 0;
    }

    header #headerInner #_gnb ul.list li .dropDown a,
    header.open #headerInner #_gnb ul.list li.on .dropDown a {
        height: 40px;
        visibility: visible;
        opacity: 1;
    }

    header #headerInner #gnbButton {
        width: 30px;
        height: 30px;
    }

    header.open #headerInner #gnbButton span {
        background: #222;
    }

    header #headerInner #gnbButton span:nth-child(1) {
        left: 0;
        top: 8px;
        transform: rotate(0);
    }

    header #headerInner #gnbButton span:nth-child(2) {
        width: 16px;
        left: 0;
        top: 18px;
        transform: rotate(0);
    }

    header.open #headerInner #gnbButton span:nth-child(1) {
        transform: rotate(45deg);
        left: 0;
        top: 12px;

    }

    header.open #headerInner #gnbButton span:nth-child(2) {
        width: 100%;
        transform: rotate(-45deg);
        left: 0;
        top: 12px;
    }

    header .menuOveray.open {
        height: var(--vh, 100vh);
    }

} */

/* New Header*/

header {
    width: 100%;
    position: absolute;
    height: 90px;
    top: 90px;
    left: 0;
    z-index: 9999;
    background: var(--main);
    display: flex;
    justify-content: center;
    align-items: center;
    /* transform: translateY(-100%); */
    transition: .35s ease opacity, .35s ease transform;
    /* mix-blend-mode: difference; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    margin-top: -90px;
}

header.on {
    position: fixed;
    top: 0;
    transform: translateY(90px);
    height: 50px;
}

header #_logo {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.20);
    transition: .3s all;
}

header #_logo img {
    width: 80px;
}

header.on #_logo img {
    width: 50px;
}

header #_logo {
    padding: 0 32px;
}

header.open .middle_logo {
    transition: .3s all;
}

header.open #_logo,
header.open .middle_logo {
    overflow: hidden;
    opacity: 0;
}

header .middle_logo img {
    width: 200px;
    transition: .3s all;
}

header.on .middle_logo img {
    width: 160px;
}

header #headerInner {
    max-width: 1920px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

header .menuOveray {
    display: flex;
    width: 0;
    height: var(--vh, 100vh);
    left: 0;
    top: 0;
    transition: .2s all ease;
    --webkit-transition: .2s all ease;
    background: var(--main);
    position: fixed;
    z-index: -1;
    justify-content: center;
    align-items: center;
}

header .menuOveray.open {
    width: 100vw;
}

header .menuOveray #_gnb {
    position: absolute;
    color: #D9DEE8;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    max-width: 1100px;
    width: 100vw;
}

header.open .menuOveray #_gnb {
    visibility: visible;
    opacity: 1;
}

header #headerInner #gnbButton {
    width: 20px;
    height: 100%;
    position: relative;
    cursor: pointer;
    padding: 0 32px;
    box-sizing: content-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.20);
    transition: .3s all;
}

header.open #headerInner #gnbButton {
    border-left: 1px solid rgba(255, 255, 255, 0);
}

header #headerInner .gnbBinner {
    width: 100%;
    height: 52px;
    position: relative;
}


header #headerInner #gnbButton span {
    width: 20px;
    height: 3px;
    background: #fff;
    display: block;
    position: absolute;
    transition: 0.4s all ease;
    --webkit-transition: 0.4s all ease;
}

@media screen and (min-width:768px) {
    header #headerInner #gnbButton {
        margin-left: 60px;
    }
}

@media screen and (max-width:768px) {

    header,
    header.on {
        top: 50px;
        position: fixed;
        top: 0;
        transform: translateY(50px);
        height: 50px;
        margin-top: -50px;
    }

    header.on {
        transform: translateY(50px);
    }

    header .middle_logo img,
    header.on .middle_logo img {
        width: 120px;
    }

    header #_logo img {
        width: 50px;
    }

    header .menuOveray.open {}

}


/* header.open #headerInner #gnbButton span {
    background: #222;
} */

header #headerInner #gnbButton span:nth-child(1) {
    left: 0;
    top: 20px;
}

header #headerInner #gnbButton span:nth-child(2) {
    width: 20px;
    left: 0;
    top: 28px;
}

header #headerInner #gnbButton:hover span:nth-child(1) {
    left: -3px;
}

header #headerInner #gnbButton:hover span:nth-child(2) {
    left: 3px;
}

header.open #headerInner #gnbButton span:nth-child(1) {
    transform: rotate(45deg);
    left: 0;
    top: 22px;

}


header.open #headerInner #gnbButton span:nth-child(2) {
    width: 100%;
    transform: rotate(-45deg);
    left: 0;
    top: 22px;
}

header .menuOveray #_gnb h2 {
    font-size: 0;
    line-height: 0;
    position: absolute;
    overflow: hidden;
}

header .menuOveray #_gnb .list {
    display: flex;
    position: relative;
    flex-direction: column;
    transition: .3s all ease;
}

header .menuOveray #_gnb .list .list_1deps {
    display: flex;
}

header .menuOveray #_gnb .list.on .list_1deps>a,
header .menuOveray #_gnb .list.on .list_1deps>.dropDownMenu {
    border-right: 2px solid #D9DEE8;
}

header .menuOveray #_gnb .list .list_1deps>a,
header .menuOveray #_gnb .list .list_1deps>.dropDownMenu {
    width: 400px;
    padding: 22px 52px;
    transition: .3s all ease;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 12px;
    font-size: 20px;
}
header .menuOveray #_gnb .list .list_1deps>.dropDownMenu {
    cursor: pointer;
}

header .menuOveray #_gnb .slog {
    position: absolute;
    right: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.05);
    text-align: center;
    font-family: "Noto Serif SC";
    font-size: 329.552px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    transform: translateY(-30%);
    /* 362.507px */
}

header .menuOveray #_gnb .list .list_1deps:nth-child(1)>a:after {}

header .menuOveray #_gnb .list .list_1deps.on>a,
header .menuOveray #_gnb .list .list_1deps.on>.dropDownMenu {
    background: #D9DEE8;
    color: var(--main);
}

header .menuOveray #_gnb .list .list_1deps .dropDown {
    position: absolute;
    left: 400px;
    top: 0;
    display: flex;
    flex-direction: column;
    padding-left: 40px;
    opacity: 0;
    visibility: hidden;
    transition: .2s all ease;
}

header .menuOveray #_gnb .list .list_1deps.on .dropDown {
    opacity: 1;
    visibility: visible;
}

header .menuOveray #_gnb .list .list_1deps.on .dropDown a {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 12px;
}
header .menuOveray #_gnb .list .list_1deps.on .dropDown a svg {
    transform: rotate(180deg);
}

header .menuOveray #_gnb .list .list_1deps .dropDown li.back {
    display: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

header .menuOveray #_gnb .list .dropDown li {
    display: flex;
}

header .menuOveray #_gnb .list .dropDown a {
    padding: 22px 52px;
    width: 400px;
    opacity: .33;
    transition: .2s all ease;
    font-size: 20px;
    font-weight: 600;
}

header .menuOveray #_gnb .list .dropDown a.on {
    opacity: 1;
}

@media screen and (max-width:768px) {

    header #headerInner #gnbButton,
    header #_logo {
        padding: 0 16px
    }

    header .menuOveray #_gnb {
        top: 82px;
        height: 100%;
    }

    header .menuOveray #_gnb .list.on .list_1deps>a,
    header .menuOveray #_gnb .list.on .list_1deps>.dropDownMenu {
        border-right: none;
    }

    header .menuOveray #_gnb .list .list_1deps>a,
    header .menuOveray #_gnb .list .list_1deps>.dropDownMenu {
        font-size: 15px;
        padding: 16px 38px;
    }

    header .menuOveray #_gnb .slog {
        font-size: 200px;
        left: 50%;
        bottom: 10%;
        top: auto;
        transform: translate(-50%, 0);
        /* 362.507px */
        pointer-events: none;
        width: fit-content;
    }

    header .menuOveray #_gnb .list .list_1deps.on>a,
    header .menuOveray #_gnb .list .list_1deps.on>.dropDownMenu {
        background: transparent;
        color: #D9DEE8;
    }

    header .menuOveray #_gnb .list.open {
        transform: translateX(-100%);
    }

    header .menuOveray #_gnb .list .list_1deps .dropDown {
        padding-left: 0;
        left: 100vw;
        width: 100%;
    }

    header .menuOveray #_gnb .list .dropDown a {
        font-size: 15px;
        padding: 16px 38px;
        opacity: 1;
    }

    header .menuOveray #_gnb .list .list_1deps .dropDown li.back {
        display: flex;
    }

}

/* basic */

.basicButton {
    color: var(--wh, #FFF);
    font-family: "noto serif KR";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.56px;
    display: flex;
    padding: 6px 6px 6px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 9999px;
    border: 1px solid var(--gold01, #C9A86A);
    background: var(--gold01, #C9A86A);
    width: fit-content;
    transition: .3s all ease;
    --webkit-transition: .3s all ease;
    filter: brightness(1);
}

.basicButton::after {
    width: 40px;
    height: 40px;
    content: "";
    display: block;
    background: url('/test/img/common/basicButton.svg') no-repeat;
    background-size: cover;
}

.basicButton:hover {
    filter: brightness(1.1);
}

/* FOOTER START */

#footer {
    width: 100%;
    height: auto;
    padding: 60px 330px 140px;
    position: relative;
    background: #0D132D;
    margin-top: -1px;
}

#footer .inner-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

#footer .title {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

#footer .title h2 {
    color: #FFF;
    text-align: center;
    font-family: 'Escoredream';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 20px */
    letter-spacing: 1px;
}

#footer .title h1 {
    color: var(--gold01, #C9A86A);
    text-align: center;
    font-family: 'Escoredream';
    font-size: 42px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    /* 42px */
    letter-spacing: 2.1px;
}

#footer .body {
    color: var(--wh, #FFF);
    font-family: "Escoredream";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 170%;
    /* 25.2px */
    text-align: center;
}

#footer .government {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

#footer .slog {
    position: absolute;
    right: 96px;
    top: 38px;
    color: rgba(255, 255, 255, 0.20);
    text-align: center;
    font-family: "Noto Serif SC";
    font-size: 329.552px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 362.507px */
}

/* 노트북 (15~16인치) */
@media (min-width: 1024px) and (max-width: 1600px) {
    #footer .slog {
        right: 60px;
        top: 0px;
        font-size: 16rem;
        /* 362.507px */
    }
}

@media screen and (max-width:768px) {
    #footer .inner-content {
        gap: 40px;
    }

    #footer {
        padding: 40px 18.75px 200px;
    }

    #footer .title h2 {
        font-size: 14px;
    }

    #footer .title h1 {
        font-size: 20px;
    }

    #footer .body {
        font-size: 12px;
    }

    #footer .slog {
        position: absolute;
        right: 0;
        top: auto;
        bottom: 0;
        color: rgba(255, 255, 255, 0.12);
        font-size: 200px;
    }

    #footer .government {
        flex-direction: column;
        width: 100%;
    }

    #footer .government img {
        width: 60%;
    }


}

/* FOOTER END */