@charset "utf-8";



/* header */
.header {
    position: fixed;
    width: 100%;
    height: 9vh;
    z-index: 10;
    box-sizing: content-box;
    transition: all 0.2s;
    margin: 0;
    top: 0;
}

.header.fixed {
	transition: all 0.5s;
	position:fixed;
	background-color: white;
	top: 0;
	border-bottom: 1px solid #ddd;
}
         
.header-bx {
    position: relative;
    height: 9vh;
    border-bottom: 1px solid rgba(255,255,255,0);
    /* background-color: rgba(255,255,255,0.7); */
    width: 100%;
}

.header-bx::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    background: rgb(255 255 255);
    transition: all .4s ease-out;
    z-index: -1;
    opacity: 0;
}

.header.fixed .header-bx::before { opacity: 1; height: 100%;}

#gnb.fixed {background-color: #ffffff;border-bottom:1px solid #ddd;}
#gnb.fixed h1 .sub {display:unset}
#gnb.fixed h1 .main {display:none}
#gnb.fixed .gnb1_ul li a {color: var(--color-black);}
#gnb.fixed > div button svg rect {fill:#000}
#gnb.fixed ul.lang > li {color:#111; border-color:#333}
#gnb.fixed ul.lang > li span i {color:#333}
#gnb.fixed ul.lang > li ul {background-color:#f2f2f2}
.header .inner01 {
				  display: flex;
				  justify-content: space-between;
				  position: relative;
				  height: 100%;
				  padding: 0em 2em;
				  align-items: center;
				  }

.header .inner01 h1 {
    /* width: 221px; */
    min-width: 218px;
    height: 27px;
    /* background-image: url(../img/logo/logo.png); */
    /* background-position-x: center; */
    /* background-position-y: center; */
    /* background-size: auto 100%; */
    /* background-repeat: no-repeat; */
    font-family: var(--font-logo);
    font-size: 1.7em;
}

.header .inner01 h1 a:{
    text-decoration: none;
    width: 100%;
    height: 64%;
    /* position: absolute; */
}
.header .inner01 h1 a:hover {color:unset;}
.header .logo { display: block; }

.header nav {
    width: 48%;
}

.header .gnb {display: flex;justify-content: flex-end;
			  align-items: center;height: 100%;width: 100%;}

.header .gnb .dep1 {
                    display: flex;
                    justify-content: center;
                    width: 25%;
                    align-items: center;
                    height: 100%;
                    position: relative;
                    text-align: center;
                    }

/* .header .gnb .dep1 > a { position: relative;} */

.header .gnb li a {
    display: block;
    /* color: #fff; */
    font-size: 18px;
    /* transition: all 9s; */
}

.header.fixed .gnb li a { color: #333;}

.header .gnb .dep2 {
    position: absolute;
    top: 80px;
    right: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
}

.header .gnb .dep2 li + li { padding-top: 20px;}

.header .gnb .dep2 a {/* color: #fff; */font-size: 16px;}

.header:hover .header-bx::before{
	height: 310px;
	opacity: 1;
	border-bottom:0;
	box-shadow: 1px 5px 10px #0000001c;
	}
.header:hover .header-bx, .header:hover #gnb, .header:hover #gnb.fixed {border-bottom: 1px solid #ddd;transition: all 1s ease-in-out;}

.header:hover .gnb li a {visibility: visible;color: black;}
.header .gnb .dep2 li.dep1:hover a {color:var(--color-main)}
.header:hover .gnb .dep2 {
						  display: block;
						  opacity: 1;
						  transition: all 1.1s ease-in-out;
						  }

.header .gnb .dep1:hover {}

.header .gnb > .dep1::after {
						   content: '';
						   position: absolute;
						   bottom: -30px;
						   left: 50%;
						   width: 0;
						   display: flex;
						   opacity: 0;
						   border-bottom: 3px solid var(--color-main);
						   transition: all .5s ease;
						   transform: translateX(-50%);
						   }

.header .gnb .dep1:hover::after {width: 50%;opacity: 1;}

.header > div a:first-child::after {display:none;}

#gnb .icon_box{
    width: 104px;
    height: 39px;
    background-color: #f6900d;
    border-radius: 50px;
    position: relative;
    top: 0;
    left: 0%;
    display: flex;
    align-items: center;
    padding-left: .5em;
}

#gnb .icon_box .icon{
    padding: 0;
    display: flex;
    width: 46%;
    justify-content: center;
    padding-bottom: .2em;
}

#gnb .icon_box .fa-instagram{
    color: #fff;
    font-size: 24px;
}

#gnb .icon_box .ri-kakao-talk-line{
    color: #Fff;
    font-size: 24px;
}


.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;
}

@media screen and (max-width: 1000px) {
	.global_search {}
	.global_search div{}
	.global_search div h3{}
	.global_search div ul{}
	.global_search div ul li{}
	.global_search div ul li input{}
	.global_search div ul li input[type=text]{}
	.global_search div ul li input[type=submit]{}
	
}


/* 서브타이틀 */

.sub_title_con {
	height: 500px;
	width: 100%;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	flex-direction: column;
	background-repeat: no-repeat;
}
.sub_title_con .title_txt {width: 100%;height: 100%;text-align: center;display: flex;align-items: center;position: relative;justify-content: center;flex-direction: column;/* padding-top: 66px; */}
.sub_title_con h2 {font-size: 3.0em;color: #fff;}
.sub_title_con .txt_nav {color: rgb(255 255 255 / 70%);font-weight: 300;font-size: 0.9em;display: flex;align-items: center;height: 30px;margin-top: 1rem;}
.sub_title_con .txt_nav li {
    padding: 0 .3em;
    line-height: 0;
}
.sub_title_con .txt_nav li br {display:none}
.sub_title_con .title_txt .nav {
    color: #fff;
}

.bgimg_company {background-image: url(/img/page/subtitle10.jpg);}
.bgimg_20 {background-image: url(/img/page/subtitle20.jpg);}
.bgimg_30 {background-image: url(/img/page/subtitle30.jpg);}
.bgimg_40 {background-image: url(/img/page/subtitle40.jpg);}
.bgimg_50 {background-image: url(/img/page/subtitle50.jpg);}
.bgimg_60 {background-image: url(/img/page/subtitle50.jpg);}
.bgimg_99 {background-image: url(/img/page/subtitle99.jpg);}
.bgimg_pr {background-image: url(/img/page/subtitlepr.jpg);}


.nav_float * :hover {transition:all 0.4s;}
.nav_float {
    width: 100%;
    background-color: rgb(0 0 0 / 30%);
    position: absolute;
    /* border-bottom: 1px solid #ffffff; */
    /* height: 94px; */
    bottom: 0;
    backdrop-filter: blur(20px);
}
.nav_float h3 {
    font-size: 25px;
    width: 30%;
    margin-bottom: 20px;
}
.nav_float ul{
    display: flex;
    height: 70px;
    justify-content: center;
}
.nav_float ul li:before {content:"";position: absolute;width: 1px;height: 25%;background-color: rgb(255 255 255 / 20%);top: 50%;transform: translateY(-50%);right: 0;}
.nav_float ul li:last-of-type::before {display:none}
.nav_float ul li:after {content:"";/* background-color: var(--color-main); */width:0;height: 3px;top: 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 {
    font-weight: 400;
    font-size: 1em;
    position: relative;
    color: rgb(255 255 255 / 50%);
    width: 100%;
    display: inline-flex;
    height: 100%;
    align-items: center;
    text-transform: uppercase;
}
.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:hover a {color: var(--color-main);font-weight: 600;/* color: #ffffff; */}
.soon {
    margin: auto;
    /* height: 500px; */
    font-size: 50px;
    text-align: center;
    /* padding: 18rem; */
}
.soon i {
    color: #004ea2;
}
.soon p {
    font-size: 24px;
    color: #004ea2;
    font-weight: 500;
}

.sub_con {/* padding: 8% 14%; */max-width: 1400px;margin: 8% auto;}
.sub_con h3 {
    font-size: var(--font-size50);
    margin-bottom: 6rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

/* PC */ 
@media only screen and (min-width:1025px) and (max-width: 1500px)  {
}
/* 테블릿 가로, 테블릿 세로 (해상도 768px ~ 1024px)*/ 
@media all and (max-width:1024px) {
    .sub_title_con {height: 20rem;}
	.sub_con {width:100%;padding:0 5%;margin: 10% auto;}
    .sub_con h3 {margin-bottom:3rem;font-size: 2.5rem;}
}
/* 모바일 가로, 모바일 세로 (해상도 480px ~ 767px)*/
@media screen and (max-width:767px) {
	.sub_title_con {background-position-x: 64%;height: 15rem;padding-top: 40px;}
    .sub_title_con h2 {font-size: 2.5rem;}
	.sub_con {margin:4rem auto}
	.sub_con h3 {font-size: 2.2rem;}
    .sub_title_con .txt_nav {margin-top: 0;}
	.sub_title_con .txt_nav li {font-size:16px}
    
}