@charset "utf-8";

#gnb {
    display: flex;
    width: 100%;
    /* margin: 1em 0 1em; */
    padding: 0em 5em;
    align-items: center;
    position: absolute;
    z-index: 10;
    top: 0;
    /* visibility: hidden; */
    transition:
    all 0.5s;
    height: 80px;
    /*transition: 0.5s ease-in-out;*/
    background: #ffffff85;
    justify-content: space-between;
}
#gnb.hide {visibility: hidden; 
	height:0; top:-82px;
	transition: all 0.5s;
	}
#gnb.none {
	animation: fadeInDown .5s;
	position:
	absolute;
	transition: all 0.5s;
	top:0px;
	height: 80px;
}
#gnb.fixed {
	transition: all 0.5s;
	position:
	fixed;
	background-color: rgb(255 255 255);
	padding: 0px 5em;
	top: 0;
	/* border-bottom: 1px solid #ccc; */
	height: 80px;
	}
#gnb.fixed h1 {
	background-image: url(/img/logo/logo.png);
	}
#gnb.fixed > ul > li > a {color:#121212;}
#gnb.fixed > div a {/* color:#444; */}
#gnb h1{
    width: 10%;
    min-width: 63px;
    height: 45px;
    background-image: url(/img/logo/logo.png);
    /* background-position-x: center; */
    background-position-y: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}
#gnb h1 a {
    width: 100%;
    height: 100%;
    display: table;
}
#gnb ul{}
#gnb ul li{}
#gnb > ul{
    display: flex;
    width: 30%;
    justify-content: flex-start;
    /* position: absolute; */
    /* left: 50%; */
    /* margin-left: -251px; */
    /* top: 3em; */
    align-items: flex-start;
    /* margin-right: 40%; */
    /* overflow: hidden; */
    width: 70%;
}
#gnb > ul > li{
    position: relative;
    width: auto;
    min-width: 200px;
    display: flex;
    justify-content: flex-start;
    height: 100%;
    /* overflow: hidden; */
    flex-direction: column;
    align-items: center;
    border-radius: 1em 1em 0 0;
    /* box-shadow: 3px 3px 3px gray; */
    /* overflow: hidden; */
    transition:
    all 0.5s;
    /* margin-top: 0.4em; */
    padding: 1em 0 1em;
}
#gnb > ul > li:hover {/* background-color:#fff; */}
/*#gnb > ul > li:nth-of-type(2):hover {background-color:var(--color-point2); }
#gnb > ul > li:nth-of-type(3):hover {background-color:var(--color-point3); }
#gnb > ul > li:nth-of-type(4):hover {background-color:var(--color-point4); }*/
#gnb > ul > li > a{
    padding: .5em;
    width: 100%;
    text-align: center;
    /* z-index: -1; */
    position: relative;
    font-weight: 500;
    font-size: var(--font-size);
    /* box-shadow: 3px 3px 3px gray; */
    color: #222;
    /* border-radius: 1em 1em 0 0; */
    text-transform: capitalize;
}
#gnb > ul > li:after{content:"";border-bottom:4px solid var(--color-main);width:0;bottom: -1px;left: 50%;position: absolute;display: block;overflow: hidden;-webkit-transition: all 0.4s ease-in-out;transition: all 0.4s ease-in-out;transform:translateX(-50%);border-radius: 1em;}
/*#gnb > ul > li:hover > a {color: var(--color-main);}*/

#gnb > ul > li:hover::after {width: 60%;-webkit-transition: all 0.4s ease-in-out;transition: all 0.4s ease-in-out;}

#gnb > ul > li ul{
    /* display: none; */
    position: absolute;
    top: 81px;
    left: 0;
    height:0;
    width: 198px;
    background-color: #fff;
    visibility: hidden;
    opacity:0;
    height:0;
    overflow:
    hidden;
    /* padding: .1em; */
    /* transition:all 0.26s; */
    z-index: -1;
    border-radius: .5em;
    padding: 1em 0;
    box-shadow: 6px 6px 17px -4px rgb(0 0 0 / 12%);
    transition: 0.1s ease-in-out;
    /* animation: fadeOutUp .5s; */
    border: 1px solid #ccc;
    left: 50%;
    transform: translateX(-50%);
}

#gnb > ul > li.over ul {
	visibility:visible;
	opacity:1;
	height:auto;
	/* animation: fadeIn .5s; */
	transition: 0.5s cubic-bezier(0.47, 0, 0.75, 0.72);
}


/*
#gnb > ul > li ul.none {
	visibility:hidden;
	height:0;
}*/

#gnb > ul > li:nth-of-type(1) ul{
    /* background-color: var(--color-point1); */
}
#gnb > ul > li:nth-of-type(2) ul{
    /*background-color: var(--color-point2);*/
}
#gnb > ul > li:nth-of-type(3) ul{
    /*background-color: var(--color-point3);*/
}
#gnb > ul > li:nth-of-type(4) ul{
    /*background-color: var(--color-point4);*/
}

#gnb > ul > li ul li{
    /* background-color: white; */
}
#gnb > ul > li ul li a{
    padding: .5em 0 .5em 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    /* color: #fff; */
    font-weight: 300;
}
#gnb > ul > li ul li:first-child a {padding-top:0;}
#gnb > ul > li ul li a:hover {color: var(--color-main);font-weight:500;}
/*#gnb > ul > li:nth-of-type(1) ul li a:hover {background-color:var(--color-point1);}
#gnb > ul > li:nth-of-type(2) ul li a:hover {background-color:var(--color-point2);}
#gnb > ul > li:nth-of-type(3) ul li a:hover {background-color:var(--color-point3);}
#gnb > ul > li:nth-of-type(4) ul li a:hover {background-color:var(--color-point4);}*/

#gnb > div {
    display: flex;
    margin-top: 0.2em;
    align-items: center;
    justify-content: space-between;
    width: auto;
}
#gnb > div iconify-icon,#gnb > div i {color: #222;font-size: 2em;/* margin-right: 5px; */cursor: pointer;/* margin-left: 5px; */}
#gnb > div a{
    padding: 0 5px;
    position: relative;
    color: #555;
    font-weight: 300;
    font-size: 16px;
}
#gnb > div a:nth-of-type(1){
    /* padding-left: 0; */
    width: 96px;
    margin-right: 10px;
}
#gnb > div a:after {content:"";display: table;width: 1px;height: 14px;background: #ccc;position: absolute;left: 0;top: 7px;}
#gnb > div a:first-child::after {display:none;}
#gnb > div a.sitemap{
    width: 40px;
    height: 40px;
    display: flex;
    align-content: space-between;
    flex-direction: column;
    padding: .5em .3em;
    border: 1px solid #ccc;
    position: relative;
    justify-content: space-between;
}
#gnb > div a.sitemap div {
    height: 2px;
    width: 100%;
    /* position: absolute; */
    background-color: var(--color-gray);
}
#gnb > div a.sitemap div:nth-of-type(1){}
#gnb > div a.sitemap div:nth-of-type(2){}
#gnb > div a.sitemap div:nth-of-type(3){}
#gnb > div button{
    padding: 0;
    border: 0 none;
    background: none;
    cursor: pointer;
    }
#gnb > div button i {
    font-size: 1.8em;
    transition: all 1s;
    transform: rotate(0);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #121212;
}
#gnb > div button.mobile_btn {
    width: 48px;
    height: 48px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
#gnb > div .my {
    display: flex;
    justify-content: space-between;
}
#gnb > div .my li {
    font-size: 16px;
    margin-right: 1rem;
    text-transform: uppercase;
}
#gnb.fixed > div button i,
#gnb.fixed > div iconify-icon, 
#gnb.fixed > div i {}
#gnb > div button i.ri-close-fill{transform: rotate(180deg);}
#gnb .menu {
    display: flex;
    align-items: center;
    margin-right: 10px;
}
#gnb .menu a {padding: 0;font-weight: 500;color: #fff;border-radius: 4px;display: inline-flex;align-items: center;justify-content: center;}
#gnb .menu a img {width: 100%;}
#gnb .menu .fm {/* margin-left:1rem; */}
.family-site {position: relative;float: right;width: 100%;height: 48px;font-size: 16px;background-color: #000;color: #fff;border: none;font-family: var(--font-point);padding: 0 .5rem;border-radius: 10px;}
.family::focus, .family:hover {outline:none; border:none;}
.family-site::focus {outline:none; border:none;}

.btn_m_open {display:none}

.nav_float * :hover {transition:all 0.4s;}
.nav_float {
    display: flex;
    height: 75px;
    width: 100%;
    /* border-bottom: 1px solid #ddd; */
    justify-content: center;
    position: relative;
}
.nav_float ul{
    display: flex;
    width: 100%;
    justify-content: center;
    height: 100%;
    border-bottom: 1px solid #ddd;
}
.nav_float ul li{
    width: 175px;
    display: flex;
    /* background-color: white; */
    border-right: 1px solid #e4e4e4;
    /* border-bottom: 1px solid #e4e4e4; */
    overflow: hidden;
    align-items: center;
    justify-content: center;
    /* visibility: hidden; */
    position: relative;
}
.nav_float ul li:nth-of-type(1){
    border-left: 1px solid #e4e4e4;
}
.nav_float ul li:nth-last-of-type(1){
    /* border-radius: 0 1em 1em 0; */
}
.nav_float ul li:after {content:"";border-bottom:4px solid var(--color-main);width:0;bottom: 0;left: 50%;position: absolute;display: block;overflow: hidden;-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;transform:translateX(-50%);}
.nav_float ul li a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 1em;
    font-weight: 500;
    font-size: 1.1em;
    background-repeat: no-repeat;
    background-position: 50% 30%;
}
.nav_float ul li.on:after, .nav_float ul li:hover::after{width:100%;-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;}
.nav_float ul li.on a, .nav_float ul li a:hover {color:var(--color-main);}

.icon_10 ul li.on a,.icon_10 ul li a:hover {}
.icon_20 ul li.on a,.icon_20 ul li a:hover {
    background-color: #0b98d3;
}
.icon_30 ul li.on a,.icon_30 ul li a:hover {background-color: #e98612;}
.icon_50 ul li.on a,.icon_50 ul li a:hover {background-color: #048d4c;}

/*.icon_10 ul li:nth-of-type(1) a{background-image:url(/img/icon/10_icon1.png);}
.icon_10 ul li.on:nth-of-type(1) a,.icon_10 ul li:nth-of-type(1) a:hover{background-image:url(/img/icon/10_icon1_over.png);}
.icon_10 ul li:nth-of-type(2) a{background-image:url(/img/icon/10_icon2.png);}
.icon_10 ul li.on:nth-of-type(2) a,.icon_10 ul li:nth-of-type(2) a:hover{background-image:url(/img/icon/10_icon2_over.png);}
.icon_10 ul li:nth-of-type(3) a{background-image:url(/img/icon/10_icon3.png);}
.icon_10 ul li.on:nth-of-type(3) a,.icon_10 ul li:nth-of-type(3) a:hover{background-image:url(/img/icon/10_icon3_over.png);}
.icon_10 ul li:nth-of-type(4) a{background-image:url(/img/icon/10_icon4.png);}
.icon_10 ul li.on:nth-of-type(4) a,.icon_10 ul li:nth-of-type(4) a:hover{background-image:url(/img/icon/10_icon4_over.png);}
.icon_10 ul li:nth-of-type(5) a{background-image:url(/img/icon/10_icon5.png);}
.icon_10 ul li.on:nth-of-type(5) a,.icon_10 ul li:nth-of-type(5) a:hover{background-image:url(/img/icon/10_icon5_over.png);}
.icon_10 ul li:nth-of-type(6) a{background-image:url(/img/icon/10_icon6.png);}
.icon_10 ul li.on:nth-of-type(6) a,.icon_10 ul li:nth-of-type(6) a:hover{background-image:url(/img/icon/10_icon6_over.png);}
.icon_10 ul li:nth-of-type(7) a{background-image:url(/img/icon/10_icon7.png);}
.icon_10 ul li.on:nth-of-type(7) a,.icon_10 ul li:nth-of-type(7) a:hover{background-image:url(/img/icon/10_icon7_over.png);}

.icon_20 ul li:nth-of-type(1) a{background-image:url(/img/icon/20_icon1.png);}
.icon_20 ul li.on:nth-of-type(1) a,.icon_20 ul li:nth-of-type(1) a:hover{background-image:url(/img/icon/20_icon1_over.png);}
.icon_20 ul li:nth-of-type(2) a{background-image:url(/img/icon/20_icon2.png);}
.icon_20 ul li.on:nth-of-type(2) a,.icon_20 ul li:nth-of-type(2) a:hover{background-image:url(/img/icon/20_icon2_over.png);}
.icon_20 ul li:nth-of-type(3) a{background-image:url(/img/icon/20_icon3.png);}
.icon_20 ul li.on:nth-of-type(3) a,.icon_20 ul li:nth-of-type(3) a:hover{background-image:url(/img/icon/20_icon3_over.png);}
.icon_20 ul li:nth-of-type(4) a{background-image:url(/img/icon/20_icon4.png);}
.icon_20 ul li.on:nth-of-type(4) a,.icon_20 ul li:nth-of-type(4) a:hover{background-image:url(/img/icon/20_icon4_over.png);}
.icon_20 ul li:nth-of-type(5) a{background-image:url(/img/icon/20_icon5.png);}
.icon_20 ul li.on:nth-of-type(5) a,.icon_20 ul li:nth-of-type(5) a:hover{background-image:url(/img/icon/20_icon5_over.png);}
.icon_20 ul li:nth-of-type(6) a{background-image:url(/img/icon/20_icon6.png);}
.icon_20 ul li.on:nth-of-type(6) a,.icon_20 ul li:nth-of-type(6) a:hover{background-image:url(/img/icon/20_icon6_over.png);}

.icon_30 ul li:nth-of-type(1) a{background-image:url(/img/icon/30_icon1.png);}
.icon_30 ul li.on:nth-of-type(1) a,.icon_30 ul li:nth-of-type(1) a:hover{background-image:url(/img/icon/30_icon1_over.png);}
.icon_30 ul li:nth-of-type(2) a{background-image:url(/img/icon/30_icon2.png);}
.icon_30 ul li.on:nth-of-type(2) a,
.icon_30 ul li:nth-of-type(2) a:hover{background-image:url(/img/icon/30_icon2_over.png);}

.icon_30 ul li:nth-of-type(3) a{background-image:url(/img/icon/30_icon3.png);}
.icon_30 ul li.on:nth-of-type(3) a,
.icon_30 ul li:nth-of-type(3) a:hover{background-image:url(/img/icon/30_icon3_over.png);}

.icon_30 ul li:nth-of-type(4) a{background-image:url(/img/icon/30_icon4.png);}
.icon_30 ul li.on:nth-of-type(4) a,
.icon_30 ul li:nth-of-type(4) a:hover{background-image:url(/img/icon/30_icon4_over.png);}

.icon_30 ul li:nth-of-type(5) a{background-image:url(/img/icon/30_icon5.png);}
.icon_30 ul li.on:nth-of-type(5) a,
.icon_30 ul li:nth-of-type(5) a:hover{background-image:url(/img/icon/30_icon5_over.png);}*/




.icon_50 ul li:nth-of-type(1) a{background-image:url(/img/icon/50_icon1.png);}
.icon_50 ul li.on:nth-of-type(1) a,.icon_50 ul li:nth-of-type(1) a:hover{background-image:url(/img/icon/50_icon1_over.png);}
.icon_50 ul li:nth-of-type(2) a{background-image:url(/img/icon/50_icon2.png);}
.icon_50 ul li.on:nth-of-type(2) a,.icon_50 ul li:nth-of-type(2) a:hover{background-image:url(/img/icon/50_icon2_over.png);}

.icon_50 ul li:nth-of-type(3) a{background-image:url(/img/icon/50_icon3.png);}
.icon_50 ul li.on:nth-of-type(3) a,.icon_50 ul li:nth-of-type(3) a:hover{background-image:url(/img/icon/50_icon3_over.png);}
.icon_50 ul li:nth-of-type(4) a{background-image:url(/img/icon/50_icon4.png);}
.icon_50 ul li.on:nth-of-type(4) a,.icon_50 ul li:nth-of-type(4) a:hover{background-image:url(/img/icon/50_icon4_over.png);}
.icon_50 ul li:nth-of-type(5) a{background-image:url(/img/icon/50_icon5.png);}
.icon_50 ul li.on:nth-of-type(5) a,.icon_50 ul li:nth-of-type(5) a:hover{background-image:url(/img/icon/50_icon5_over.png);}
.icon_50 ul li:nth-of-type(6) a{background-image:url(/img/icon/50_icon6.png);}
.icon_50 ul li.on:nth-of-type(6) a,.icon_50 ul li:nth-of-type(6) a:hover{background-image:url(/img/icon/50_icon6_over.png);}
.icon_50 ul li:nth-of-type(7) a{background-image:url(/img/icon/50_icon7.png);}
.icon_50 ul li.on:nth-of-type(7) a,.icon_50 ul li:nth-of-type(7) a:hover{background-image:url(/img/icon/50_icon7_over.png);}
.icon_50 ul li:nth-of-type(8) a{background-image:url(/img/icon/50_icon8.png);}
.icon_50 ul li.on:nth-of-type(8) a,.icon_50 ul li:nth-of-type(8) a:hover{background-image:url(/img/icon/50_icon8_over.png);}




.global_search {
    display: none;
    position: fixed;
    top: 6em;
    z-index: 1111111111111111;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,.8);
}
.global_search > div{position: fixed;top: 6em;width: 100%;height: 32vh;background: rgba(255,255,255,1);}
.global_search > div >div{
    display: flex;
    width: 26em;
    flex-direction: column;
    align-items: center;
    /* margin: 0 auto; */
    position: absolute;
    top: 40%;
    left: 50%;
    margin-left: -13em;
    border: 1px solid gray;
    background: white;
    padding: 1em;
}
.global_search > div > div h3{
    font-size: 1.4em;
    font-weight: 700;
    color: #d36868;
}
.global_search > div > div ul{
    display: flex;
    margin-top: 1em;
}
.global_search > div > div ul li{
}
.global_search > div > div ul li input{}
.global_search > div > div ul li input[type=text]{
    /* height: 3.5em; */
    padding: .5em;
    font-size: 1.2em;
    background: #f3f3f3;
    border: 1px solid #d8d8d8;
}
.global_search > div > div ul li input[type=submit]{
    padding: .7em 2em;
}
.global_search > div > div img {
    position: absolute;
    bottom: -8em;
    cursor: pointer;
}

.sub_content_s, .sub_all_wrab {
    visibility: hidden;
}

#gnb ul.lang {
    width: 92px;
    /* margin-left: .0em; */
    height: 48px;
}
#gnb ul.lang > li{
    text-align: center;
    position: relative;
    padding: .2em .5em;
    border: 1px solid gray;
    width: 100%;
    cursor: pointer;
    height: 100%;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    border-radius: .5rem;
}
#gnb ul.lang > li i {font-size: 1em;display:inline-block}
#gnb ul.lang > li:nth-child(2) {
    padding: 0;
    border: 0;
}
#gnb ul.lang > li ul{
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid gray;
    /* padding: .5em; */
    display: none;
    width: 100%;
}
#gnb ul.lang > li ul li{
    border-bottom: 1px solid gray;
    padding: .2em .5em;
    cursor: pointer;
    background-color: white;
}
#gnb ul.lang > li:hover,#gnb ul.lang > li ul li:hover {background-color:#f3f3f3;}


@media all and (min-width:1024px) and (max-width: 1600px)  {
	#gnb {padding:0 5%}
	#gnb, #gnb.fixed {
    display: flex;
    /* flex-wrap: wrap; */
    padding: 0 3rem;
}
	#gnb h1 {width: 6%;}
	#gnb > ul {
    width: auto;
}
	#gnb > ul > li {width:auto;min-width: 100px;margin-right: 2rem;}
	#gnb > div {/* width: 27%; */}
	
}

@media only screen and (max-width: 1023px) {
	#gnb ul.lang {
    margin-right: 10px;
    height: 40px;
}
	.nav_float {
    /* margin-top: 87px; */
    /* border-bottom: 0; */
    display: none;
}
	.nav_float ul{
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
}
	.nav_float ul li{
    width: 33.333%;
    height: auto;
    margin-bottom: 0;
    border-radius: 0;
    border-bottom: 1px solid #ccc;
}
	.nav_float ul li:nth-last-of-type(1), .nav_float ul li:nth-of-type(1){
    }
	.nav_float ul li:nth-last-of-type(1), .nav_float ul li:nth-of-type(3n) {margin-right:0;}
	.nav_float ul li:nth-of-type(1){border-left:0;}
	.nav_float ul li:nth-last-of-type(1){}
	.nav_float ul li a {
    text-align: center;
    font-size: 1em;
    padding: .5em 0;
 }
	.family-site {height:40px}
	#gnb > ul {display:none;}
	.btn_m_open {display:unset;}
	#gnb, #gnb.fixed {padding:0 3%}
}

@media only screen and (max-width: 767px)  {
	#gnb > div {}
	#gnb .menu, #gnb > ul {display:none;}
}