/* 
    문자 초기화
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
*/
/* 
    트랜지션
    transition: All .2s ease-out;
    -webkit-transition: All .2s ease-out;
    -moz-transition: All .2s ease-out;
    -o-transition: All .2s ease-out
*/

@import url(./fonts.css);

html,body,div,ul,li,p,h3,h1,h2,h4,h5{padding:0;margin:0;line-height:1}
ul,li{list-style:none}
a{text-decoration:none;color:#000}
textarea,input{font-family: 'Noto Sans KR', sans-serif;}
optgroup,select,button{cursor:pointer}
input::-webkit-input-placeholder{color:#AAAAAA;font-weight:400}
textarea::-webkit-input-placeholder{color:#AAAAAA;font-weight:400}
input::-ms-input-placeholder{color:#AAAAAA;font-weight:400}
textarea::-ms-input-placeholder{color:#AAAAAA;font-weight:400}
input::-moz-placeholder{color:#AAAAAA;font-weight:400}
textarea::-moz-placeholder{color:#AAAAAA;font-weight:400}
input:-webkit-autofill{-webkit-box-shadow:0 0 0 1000px #fff inset}
input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none}
input[type=number]::-webkit-inner-spin-button{-webkit-appearance:none}
select::-ms-expand{display:none}
select{-moz-appearance:none;-webkit-appearance:none;appearance:none}
img{vertical-align:top}
body{width:100%;position:relative;box-sizing:border-box;}
caption{display:none}
*{margin:0;padding:0;text-decoration:none;-webkit-text-size-adjust:none;outline:0;-webkit-appearance:none; -webkit-tap-highlight-color:transparent; -webkit-font-smoothing:antialiased}
*{font-family: 'Noto Sans KR', sans-serif;line-height:1em;color:#000;box-sizing: border-box;font-weight: normal;letter-spacing: -0.02em;}
i,em {line-height: inherit;font-style: normal}
.blind {display: none  !important;}
span,i,strong,q {font-size: inherit;font-weight: inherit;line-height: inherit;color: inherit; letter-spacing: inherit; font-family: inherit;}
q::before,q::after {content: none;}
b {font-size: inherit;font-weight: 500;line-height: inherit;color: inherit; letter-spacing: inherit; font-family: inherit;}
table {width: 100%;table-layout: fixed;border-collapse: collapse;border-spacing: 0;}
.hidden {height:100%; min-height:100%; overflow:hidden !important; touch-action:none;}


@-webkit-keyframes showUp {
0% {opacity: 0;-webkit-transform: translateY(30px)}
100% {opacity: 1;-webkit-transform: translateY(0)}
}

@keyframes showUp {
0% {opacity: 0;transform: translateY(30px)}
100% {opacity: 1;transform: translateY(0)}
}

body {
    background-color: #000;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #070707;
}

#header .inner {
    width: 100%;
    max-width: 1920px;
    padding: 0 40px;
    margin: 0 auto;
    position: relative;
}

#header .inner .logo {
    display: inline-block;
    vertical-align: top;
    position: absolute;
    top: 0;
    left: 40px;
}

#header .inner .logo a {
    display: block;
    width: 84px;
    height: 75px;
    background-image: url(../img/assets/logo-header.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#header .inner .gnb {
    vertical-align: top;
    display: inline-block;
    text-align: center;
    width: 100%;
}

#header .inner .gnb > ul {
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#header .inner .gnb > ul > li > a {
    display: block;
    font-size: 18px;
    line-height: 75px;
    width: 175px;
    text-align: center;
    color: #fff;
    position: relative;
    transition: All .2s ease-out;
    -webkit-transition: All .2s ease-out;
    -moz-transition: All .2s ease-out;
    -o-transition: All .2s ease-out
}

#header .inner .gnb > ul > li.current > a {
    background-color: #5e4518;
    color: #fff;
}

#header .inner .gnb > ul > li > a:hover {
    color: rgba(255,255,255,1);
    text-shadow: 0 0 6px #fff;
}

#header .inner .gnb > ul > li.current > a::after {
    opacity: 1;
}

#header .inner .gnb > ul > li .sub {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.9);
    text-align: center;
    height: 0;
    overflow: hidden;
    transition: All .2s ease-out;
    -webkit-transition: All .2s ease-out;
    -moz-transition: All .2s ease-out;
    -o-transition: All .2s ease-out
}

#header .inner .gnb > ul > li:hover .sub {
    height: 120px;
}

#header .inner .gnb .sub {
    position: fixed;
}

#header .inner .gnb .sub ul {
    display: inline-block;
    margin-left: 172px;
    padding: 15px;
}

#header .inner .gnb .sub ul li a {
    font-size: 18px;
    color: #5d5d5d;
    line-height: 30px;
    transition: All .2s ease-out;
    -webkit-transition: All .2s ease-out;
    -moz-transition: All .2s ease-out;
    -o-transition: All .2s ease-out
}

#header .inner .gnb .sub ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

#header .inner .gnb .sub ul li.current a {
    color: #fff;
}

#header .inner .lnb {
    position: absolute;
    right: 40px;
    top: 0;
    height: 70px;
}

#header .inner .lnb ul {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

#header .inner .lnb ul li {
    position: relative;
}

#header .inner .lnb ul li + li {
    margin-left: 42px;
}

#header .inner .lnb ul li a {
    display: block;
    font-size: 15px;
    color: rgb(255, 255, 255);
    opacity: 0.7;
}

#header .inner .lnb ul li + li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -21.5px;
    width: 1px;
    height: 14px;
    margin-top: -6px;
    background: rgb(57, 63, 68);
}