@charset 'utf-8';
@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

html {
    scroll-behavior: smooth;
}
/*reset*/
html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, cite, code, del, em, img, ins, q, small, strong, sub, sup, dl, dt, dd, ol, ul, li, fieldset, form, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, nav, section, summary, time, mark, audio, video, button {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font-weight: normal;
    vertical-align: baseline;
}
body {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    color: #424242;
    line-height: 1;
}
/* 새로운 html5 태그 IE 구버전에서 정상적으로 작동하도록 설정*/
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
    display: block;
}
ul,li {
    list-style: none;
}
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    color: inherit;
}
img {
    vertical-align: top;
    text-decoration: none;
}
hr {
    display: block;
    margin: 0;
    padding: 0;
    height: 2px;
    border: 0;
}
input, textarea {
    margin: 0;
    padding: 0;
    border: 0;
    width: 100%;
    vertical-align: top;
    border-radius: 0;   
}
/* 플롯 해제*/
.cf:after {
    content: "";
    display: block;
    clear: both;
}
/* IE 8이하 버전 float해제*/
.clear_both {
    zoom:1;
}

.mont{
    font-family: 'Montserrat', sans-serif;
}




/*0. 헤더영역*/
header{
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    /*포지션*/
    position: fixed;
    z-index: 999;
}
header .logo {
    padding: 24px 32px;
    /*플롯*/
    float: left;
}

.nav_bg {
    display: none;
    /*포지션*/
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    z-index: 998;
}

nav {
    display: none;
    /*포지션*/
    position: fixed;
    right: 0;
    width: 66.66666666666667%;
    height: 100%;
    background-color: #488bb7;
    z-index: 999;
}

.gnb {
    /*포지션*/
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.gnb li {
    margin-bottom: 40px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}


/*호버 애니메이션 관련*/
*, *:before, *:after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}
.gnb li a{
    display: inline-block;
    /*포지션 기준값*/
    position: relative;
    transition: all .2s;
    overflow: hidden;
}
.gnb li a::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #245283;
  z-index: 99;
  transition: all .4s cubic-bezier(0.7, 0, 0.3, 1);
}
.gnb li a:hover::before {
  left: 100%;
}

.gnb li a::after {
  content: "";
  position: absolute;
  top: 100%;
  margin-top: -2px;
  left: 100%;
  width: 100%;
  height: 3px;
  background: #245283;
  transition: all .3s;
  transition-delay: .4s;
}
.gnb li a:hover::after {
  left: 0%;
}

.lang {
    /*포지션*/
    position: absolute;
    width: 48px;
    height: 20px;
    margin: 24px 32px;
    line-height: 20px;
    text-align: center;
    border: 1px solid #fff;
    color: #fff;
    font-size: 14px;
}
.lang a{
    display: block;
    width: 100%;
}


/*모바일 햄버거메뉴*/
input[id="gnb_check"] {
    display: none;
}

input[id="gnb_check"] + label {
    display: block;
    width: 20px;
    height: 18px;
    margin: 25px 32px;
    /* 포지션 기준값*/
    position: relative;
    cursor: pointer;
    /*플롯*/
    float: right;
}

input[id="gnb_check"] + label span {
    display: block;
    /*포지션*/
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.4s;
    z-index: 999999;
}

input[id="gnb_check"] + label span:nth-child(1) {
    top: 0;
}

input[id="gnb_check"] + label span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

input[id="gnb_check"] + label span:nth-child(3) {
    bottom: 0;
}

/*클릭시 X자로 변경*/
/* input[id="gnb_check"]:checked + label span {
    background-color: #fff;
} */

input[id="gnb_check"]:checked + label span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

input[id="gnb_check"]:checked + label span:nth-child(2) {
    opacity: 0;
}

input[id="gnb_check"]:checked + label span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}


/*0.푸터영역*/
footer{
    /*포지션*/
    position: absolute;
    z-index: 10;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #090d10;
}
footer .footer_wrap{
    width: 90%;
    margin: 0 auto;
}
footer .left{
    display: none;
}
/* select 박스 초기화 */
select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;    
}
/* ie 브라우저에서 select 기본 화살표 없애기 */
select::-ms-expand {display:none}

footer select{
    width: 100%;
    padding: 8px;
    padding-right: 28px;
    background: none;
    border: 1px solid #bbb;
    color: #bbb;
    font-size: 12px;
    letter-spacing: -1px;
    margin-top: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: url(../images/arrow.png) no-repeat 97% 50%/15px auto;
}
footer select option{
    font-size: 16px;
    color: #262626;
}
footer .info{
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.75;
    letter-spacing: -0.5px;
    color: #bbb;
}
footer .info address{
    font-style: normal;
}
footer .copy{
    line-height: 0;
    margin-top: 20px;
    padding-bottom: 24px;
    letter-spacing: 0px;
    font-size: 10px;
}

/*TOP 버튼 영역*/
aside{
    width: 40px;
    height: 40px;
    position: fixed;
    right: 5%;
    bottom: 3%;
    background-color: #aaaaaa;
    font-size: 48px;
    opacity: .6;
    display: none;
}
aside:hover{
    background-color: #488bb7;
}




@media all and (min-width:768px) {
    /*헤더영역*/
    nav{
        width: 50%;
    }
    /*푸터영역*/
    footer p{
        /*플롯*/
        float: left;
        margin-right: 20px;
    }
    footer select{
        margin-top: 24px;
    }
    footer .copy{
        float: none;
        margin-right: 0;
        padding-bottom: 28px;
        font-size: 12px;
    }

}




@media all and (min-width:1132px) {
    .header{
        width: 1132px;
        height: 20px;
        margin: 0 auto;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
    }
    header .logo {
        padding: 24px 0px;
        /*플롯*/
        float: none;
    }
    .nav_bg{
        display: none !important;
    }
    nav{
        /*포지션*/
        position: static;
        display: -webkit-flex !important;
        display: -moz-flex !important;
        display: -ms-flex !important;
        display: -o-flex !important;
        display: flex !important;
        flex-flow: row nowrap;
        justify-content: space-between;
        background: none;
        width: 600px;
    }
    input[id="gnb_check"] + label{
        display: none;
    }
    .gnb {
        /*포지션*/
        position:static;
        width: 460px;
        top: 0px;
        transform: translateY(0%);
        text-align: left;
        /*플렉스*/
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
    }
    .gnb li {
        margin-top: 32px;
        margin-bottom: 0px;
        font-size: 16px;
    }
    .lang {
        /*포지션*/
        position: static;
        margin: 0;
        margin-top: 28px;
        border: 1px solid #488bb7;
    }
    
    
    /*호버 관련*/
    .gnb li a::before {
      background: #488bb7;
    }

    .gnb li a::after {
      background: #488bb7;
    }
    
    
    
    /*푸터영역*/
    footer .footer_wrap{
        width: 1132px;
        padding-top: 24px;
    }
    footer .left{
        display: block;
        /*플롯*/
        float: left;
    }
    footer select{
        width: 196px;
        margin-top: 0;
        display: block;
        /*플롯*/
        float: right;
    }
    footer .info{
        margin-top: -2px;
        margin-left: 60px;
        /* width: 620px; */
        width: 668px;
        /*플롯*/
        float: left;
        font-size: 14px;
    }
    footer .copy{
        font-size: 12px;
    }
}