@import url(https://fonts.googleapis.com/earlyaccess/notosanskr.css); 

@font-face {
    font-family: 'NanumSquareNeoLight';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-aLt.eot);
}

@font-face {
    font-family: 'NanumSquareNeo';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.eot);
}

@font-face {
    font-family: 'NanumSquareNeoBold';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-cBd.eot);
}

@font-face {
    font-family: 'NanumSquareNeoExtraBold';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-dEb.eot);
}

@font-face {
    font-family: 'NanumSquareNeoHeavy';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-eHv.eot);
}

@font-face {
    font-family: 'NanumSquareNeoVariable';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeo-Variable.eot);
}



* {
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
}

html {
    font-size:62.5%;
}
body {
    font-family: 'NanumSquareNeo';
    position: relative;
    margin: 0;
    padding: 0;
    position: relative;
    font-size: 1.6rem;
    font-weight: 300;
}
input, label, textarea, button {
    outline: none;
}
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}
p {
    margin-bottom: 1rem;
}
input, textarea, div {
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
ul {
    padding-left: 0;
    margin: 0;
}
li {
    list-style: none;
}

/* Start Subpage*/
/* #header */
#header {
    width: 100%;
    background-color: transparent;
    position: fixed;
    height: 80px;
    top: 0;
    z-index: 99;
    transition: background-color 1s ease;
}
    #header.active {
        background-color: rgba(0, 0, 0, 0.7);
    }
    #header.open {
        background-color: #FFFFFF;
    }
    #header.open .nav {
        border-bottom: 1px solid #eeeeee;
    }
    #header.open .nav .nav-left ul.nav-gnb > li > a {
        color: #232425;
    }
    #header.open .nav-logo img {
        content: url('../../../images/logo.png')
    }

#header .nav {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    padding: 0 10% 0 5.2%;
    background-color: white;
}
#header .nav > div {
    display: flex;
    align-items: center;
}
#header .nav .nav-left > div {
    display: flex;
    align-items: center;
}
#header .nav .nav-left > div:first-child {
    /* max-width: 35%; */
    max-width: 15%;
    margin-right: 3rem;
}
#header .nav .nav-left ul.nav-gnb {
    display: flex;
}
#header .nav .nav-left ul.nav-gnb li {
    position: relative;
    text-align: center;
}
#header .nav .nav-left ul.nav-gnb li a {
    padding: 10px;
}
#header .nav .nav-left ul.nav-gnb > li.active {
    position: relative;
}
#header .nav .nav-left ul.nav-gnb > li > a {
    display: block;
    box-sizing: border-box;
    transition: 0.5s ease-in-out;
    padding: 10px 50px;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1.7rem;
    font-weight: 500;
    color: #030303;
}
#header .nav .nav-left ul.nav-gnb > li > ul {
    width: 100%;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    padding-top: 3rem;
    z-index: 5;
}
    #header .nav .nav-left ul.nav-gnb > li.active > ul.nav-gnb-inner {
        opacity: 1;
        visibility: visible;
        transform:translateY(0px);
        display: block !important;
    }
    
#header .nav .nav-left ul.nav-gnb > li > ul > li {
    display: block;
    position: relative;
    /* margin-bottom: 5px; */
    margin-bottom: 0;
    padding: 8px;
}   
#header .nav .nav-left ul.nav-gnb > li > ul > li > a {
    padding: 5px 10px;
    color: #232425;
    letter-spacing: -0.5px;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 1.5rem;
}
    #header .nav .nav-left ul.nav-gnb > li > ul > li:hover {
        background: #29608F;
    }
    #header .nav .nav-left ul.nav-gnb > li > ul > li:hover a {
        color: white;
    }

#header .nav .nav-left .nav-logo {
    display: block;
    width: 100%;
}
#header .nav .nav-left .nav-logo > img {
    max-width: 100%;
    height: auto;
}
#header .nav .nav-right .nav-language {
    background-color: #FFFFFF;
    color: #215693;
    border-radius: 20px;
    margin-right: 2.2rem;
    padding: 1rem 1.5rem;
}
#header .nav .nav-right .nav-contact {
    background-color: #215693;
    color: #FFFFFF;
    border-radius: 20px;
    padding: 1rem 1.5rem;
}
#header .nav-bg {
    border-bottom: 1px solid #dddddd;
}
#header.open .nav-bg {
    width: 100%;
    position: absolute;
    background: white;
    z-index: 1;
    transition: all .2s;
}


/* .side-nav */
.side-nav {
    width: 5.2%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    background-color: transparent;
    display: flex;
    justify-content: center;
    z-index: 101;
    display: none;
}
.side-nav-wrap {
    position: fixed;
    width: 75%;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background-color: white;
    transition: 1s ease;
    transform: translateX(100%);
    overflow-y: auto;
    scrollbar-width: none;
    z-index: 10;
}
.nav-active {
    transform: none;
}

.side-nav .side-nav-logo {
    display: block;
}
.side-nav .side-nav-logo img {
    width: 50px;
}

.side-nav .side-nav-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 3rem;
    padding-top: 30px;
    transition: 0.5s ease;
    z-index: 0;
}
.side-nav .side-nav-menu .side-nav-menu-close {
    width: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
}
.side-nav .side-nav-menu .side-nav-menu-btn {
    display: flex; 
    width: 85%;
    height: 100%;
}
.side-nav .side-nav-menu .side-nav-menu-btn > div {
    width: 50%;
    text-align: left;
}
.side-nav .side-nav-menu .side-nav-menu-btn > div > button {
    background-color: #005DAA;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 20px;
    cursor: pointer;
}
.side-nav .side-nav-menu .side-nav-menu-close a {
    display: block;
    width: 15%;
}
.side-nav .side-nav-menu .side-nav-menu-close a img {
    max-width: 100%;
    height: auto;
}


.side-nav .side-nav-menu ul li a {
    color: #585856;
    text-decoration: none;
}
.side-nav .side-nav-menu > ul > li > a {
    font-size: 2.0rem;
    font-weight: bold;
    color: #000000;
}
.side-nav .side-nav-menu > ul > li > ul {
    margin: 0;
}
.side-nav .side-nav-menu > ul > li > ul > li {
    display: block;
    margin-bottom: 1rem;
}


.side-nav-wrap {
    background-color: white;
}
.side-nav .side-nav-menu > ul > li {
    width: 100%;
    padding: 2rem 0;
    border-bottom: 1px solid gray;
}
.side-nav .side-nav-menu > ul > li:last-child {
    border-bottom: none;
}
.d-toggle, .d-content {
    cursor: pointer;
    font-size: 16px;
    position: relative;
    letter-spacing: 1px;
    padding: 1rem 0;
    color: black;
}
.d-toggle a:before, .d-toggle a:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 30px;
    width: 15px;
    height: 2px;
    margin-top: -1px;
    background-color: #505966;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s ease-out;
}
.d-toggle a.active:before {
    transform: rotate(0deg);
    background: #505966 !important;
}
.d-toggle a:before {
    transform: rotate(-90deg);
    opacity: 1;
    z-index: 2;
}
.side-nav .side-nav-menu > ul > li > ul > a {
    color: #030303;
    font-weight: 500;
}
.d-content {
    display: none;
}
.side-nav .side-nav-menu > ul > li > ul.d-content {
    text-indent: 3%;
}



.side-nav .side-nav-buger {
    /* display: block; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 2%;
    transform: translateY(+50%);
    width: 45px;
    height: 42px;
    background-color: #FFFFFF;
    border-radius: 50%;
}
.side-nav .side-nav-buger span {
    display: block;
    height: 2px;
    background-color: #37679E;
    margin-bottom: 6px;
    width: 18px;
}
.side-nav .side-nav-buger span:nth-child(1) {
    transition: 0.3s ease;
}
.side-nav .side-nav-buger span:nth-child(2) {

}
.sidebar .side-nav-buger span:nth-child(3) {
    transition: 0.5s ease;
}


.menu-active {
    opacity: 1;
    transform: none;
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9;
}
#overlay.overlay-active {
    display: block;
}


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

        #header .nav .nav-left > div:first-child {
            width: 100%;
            max-width: 60%;
        }
        #header .nav .nav-left > div:last-child {
            display: none;
        }

        .side-nav {
            display: block;
            background: transparent;
        }
        .side-nav-wrap {
            width: 50%;
        }
    }

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

        #header .nav .nav-left > div:last-child, #header .nav .nav-right {
            display: none;
        }
        #header .nav .nav-left > div:first-child {
            width: 100%;
            max-width: 60%;
        }
        .side-nav {
            display: block;
            background-color: transparent;
        }
        .side-nav-wrap {
            width: 80%;
        }
        .side-nav .side-nav-menu .side-nav-menu-btn > div:first-child {
            width: 45%;
        }
        .side-nav .side-nav-menu .side-nav-menu-btn > div:last-child {
            width: 55%;
        }
        .side-nav .side-nav-menu .side-nav-menu-btn > div > button {
            background-color: transparent;
            color: #005DAA;
            padding: 1rem 0;
            font-weight: 500;
        }
    }


/* sub-Top Menu*/
.subTop {
    height: 500px;
}
#sub5-1 .subTop, #sub5-2 .subTop {
    position: relative;
    background-color: white;
    background-image: url(../../../images/sub5-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 10% 50%;
}
#sub6-1 .subTop {
    position: relative;
    background-color: white;
    background-image: url(../../../images/sub6-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 10% 50%;
}
.sub .subTop .subTop-bg {
    width: 100%;
    height: 82%;
    display: flex;
    align-items: center;
    padding-left: 5%;
}
.sub .subTop .subTop-bg .subTop-bg-title div {
    display: flex;
    flex-basis: 100%;
    align-items: center;
}
.sub .subTop .subTop-bg .subTop-bg-title div::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    margin: 0 0 0 8px;
    line-height: 0px;
    background: #FFFFFF;
    transform: translateY(15px);
}
.sub .subTop .subTop-bg .subTop-bg-title h2 {
    color: #FFFFFF;
    font-size: 4.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}
.sub .subTop .subTop-bg .subTop-bg-title h3 {
    color: #FFFFFF;
    font-size: 5.0rem;
    font-weight: bold;
}

.sub .subTop .subTop-btn {
    width: 100%;
    height: 18%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.sub .subTop .subTop-btn .sub-category {
    display: flex;
    flex-direction: row;
    background-color: #FFFFFF;
    /* width: 1520px; */
    /* width: 79.5%; */
    width: 60%;
    height: 100%;
    border-bottom: 1px solid #E1E1E1;
}
.sub .subTop .subTop-btn .sub-category .sub-category-depth1 {
    position: relative;
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #E1E1E1;
    cursor: pointer;
}
.sub .subTop .subTop-btn .sub-category > div:first-child {
    /* margin-left: 120px; */
    margin-left: 7.8%;
    border-left: 1px solid #E1E1E1;
}
.sub .subTop .subTop-btn .sub-category > .sub-category-depth1 a {
    display: flex;
    justify-content: flex-start;
    font-size: 1.8rem;
    color: #424242;
    padding-left: 11%;
    font-family: 'Libre Franklin', sans-serif;
    line-height: 160%;
}
.sub .subTop .subTop-btn .sub-category > .sub-category-depth1 a img {
    width: 25px;
    margin-right: 10%;
    margin-left: auto;
}
.sub .subTop .subTop-btn .sub-category .sub-category-depth1 ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    text-align: left;
    background-color: #FFFFFF;
    border: 1px solid #E1E1E1;
    z-index: 9;
}
.sub .subTop .subTop-btn .sub-category > .sub-category-depth1 > ul > li {
    padding: 0.5rem 0;
}
.sub .subTop .subTop-btn .sub-category > .sub-category-depth1 > ul > li > a {
    display: inline-block;
    width: 100%;
    color: #424242;
    font-size: 1.7rem;
}

    @media screen and (min-width: 1024px) and (max-width: 1440px) {

        #header .nav .nav-left > div:first-child {
            max-width: 15%;
        }
        #header .nav .nav-left ul.nav-gnb > li > a {
            font-size: 1.7rem;
            padding: 10px 30px;
        }
        #header .nav .nav-left ul.nav-gnb > li > ul > li > a {
            font-size: 1.4rem;
        }
        .side-nav {
            display: block;
        }
        .side-nav-wrap {
            width: 30%;
        }
        .side-nav .side-nav-menu .side-nav-menu-btn > div > button {
            padding: 1rem;
        }
        #overlay {
            z-index: 99;
        }

        .sub .subTop .subTop-bg .subTop-bg-title h2 {
            font-size: 4.0rem;
            margin-bottom: 1rem;
        }
        .sub .subTop .subTop-bg .subTop-bg-title div::after {
            transform: translateY(0px);
        }
        .sub .subTop .subTop-bg .subTop-bg-title h3 {
            font-size: 5.0rem;
        }
        .sub .subTop .subTop-btn .sub-category {
            width: 70%;
        }
        .sub .subTop .subTop-btn .sub-category .sub-category-depth1 {
            width: 35%;
        }
        .sub .subCont {
            width: 70%;
        }
        .sub .subCont .subCont-top {
            margin-bottom: 6rem;
        }
        .sub .subCont h2 {
            font-size: 3.8rem;
        }
        #sub-1-1 .subCont .subCont-top .overviewImg {
            width: 100%;
        }
        #sub-1-1 .subCont .overviewWrap {
            width: 100%;
        }
    }

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

        .subTop {
            height: 450px;
        }
        .sub .subTop .subTop-bg .subTop-bg-title h2 {
            font-size: 4.0rem;
            margin-bottom: 0;
        }
        .sub .subTop .subTop-bg .subTop-bg-title h3 {
            font-size: 5.0rem;
        }
        .sub .subTop .subTop-btn .sub-category {
            width: 80%;
        }
        .sub .subTop .subTop-btn .sub-category .sub-category-depth1 {
            width: 50%;
        }
    }

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

        .subTop {
            height: 500px;
        }
        .sub .subTop .subTop-btn .sub-category {
            width: 79.5%;
        }
        .sub .subTop .subTop-btn .sub-category > div:first-child {
            display: none;
        }
        .sub .subTop .subTop-btn .sub-category .sub-category-depth1 {
            width: 100%;
        }
        .sub .subTop .subTop-btn .sub-category > .sub-category-depth1 a {
            font-size: 1.8rem;
        }

        .sub .subTop .subTop-bg .subTop-bg-title h2 {
            font-size: 3.0rem;
            margin-bottom: 1rem;
        }
        .sub .subTop .subTop-bg .subTop-bg-title h3 {
            font-size: 4.0rem;
            line-height: 130%;
        }
    }


/* Footer */
#footer {
    width: 100%;
    background-color: #00021B !important;
    background-image: url(../../../images/main04.jpg);
    background-position: center;
    /* padding-top: 50px; */
    padding-top: 2.65%;
}
/* #footer .footer-wrap {
    padding-left: 5.2%;
    padding-right: 10.4%;
} */
#footer .footer-up, #footer .footer-down {
    width: 100%;
}
#footer .footer-up > ul > li {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    width: calc(100% / 6 - 10px);
}
#footer .footer-up ul li a {
    color: #FFFFFF;
    font-size: 1.6rem;
}
#footer .footer-up > ul > li > a {
    font-weight: bold;
}
#footer .footer-up > ul > li > ul {
    /*padding-top: 32px; */
    padding-top: 14.5%;
}
#footer .footer-up > ul > li > ul > li {
    line-height: 200%;
}
#footer .footer-blank {
    width: 100%;
    height: 350px;
}
#footer .footer-down {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* padding-bottom: 50px; */
    padding-bottom: 3%;
}
#footer .footer-down p {
    color: #FFFFFF;
}
#footer .footer-down .footer-down-right {
    display: flex;
    flex-direction: column;
    justify-content: end;
}
#footer .footer-down .footer-down-right > div:first-child {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

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

        #footer {
            padding: 3rem 0;
        }
        #footer .footer-up, #footer .footer-blank {
            display: none;
        }
        #footer .footer-down {
            flex-direction: column;
            padding-bottom: 0;
        }
    }

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

        #footer {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }
        #footer p {
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }
        #footer .footer-up, #footer .footer-blank {
            display: none;
        }
        #footer .footer-down {
            flex-direction: column;
            padding-bottom: 0;
        }
        #footer .footer-down .footer-down-left {
            margin-bottom: 3%;
        }
        #footer .footer-down .footer-down-right > div:first-child {
            justify-content: left;
        }
    }

/*241203 추가 수정*/
#header.open .nav {
    border-bottom: 1px solid #eeeeee;
}

#section2 .section2-right-list p a {
    color: #FFFFFF;
    font-size: 1.5rem;
    line-height: 150%;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
            
    #section2 .section2-left h2, #section3 .section3-left h2 {
        font-size: 5.0rem;
    }
}


#footer .footer-up > ul > li > a {
    color: #FFFFFF;
}
#footer .footer-up > ul > li > ul > li > a {
    color: #C1C3CD;
}
#footer .footer-up > ul > li > ul > li:hover > a {
    color: #FFFFFF;
}

