@charset "utf-8";
/* *******************************************************
 * filename : layout_responsive.css
 * description : 전체 레이아웃 반응형 CSS
 * date : 2020-11-25
******************************************************** */

/* ****************** 공통레이아웃 ********************** */
@media all and (max-width:1420px){	/* max-width : (area-box width) + 20px */
	.area-box,.area{padding:0 0px 0 30px; }
}
@media all and (max-width:1024px){
	.area-box,
	.area{padding:0 15px}
}

/* ****************** HEADER ********************** */
@media all and ( max-width: 1420px ){	
	/* -------- Header :: UTIL BOX -------- */
	.header-util-box{right:15px;}
	.header-util-box .header-btn.free{margin-left:8px}
	/* -------- Header :: GNB(PC) -------- */
/* 	#gnb > ul{margin-left:0} */
/* 	#gnb > ul > li > a{padding:0 20px; font-size:16px} */
}

@media all and ( max-width: 1220px ){
	#header,#headerInnerWrap{height:65px;}
	.fullpage-wrapper #header{position:relative;}
	#headerInnerWrap{position:fixed; z-index:99;}
	#headerInner{padding:0 15px;}
	#header .logo{padding:20px 0;}	/* padding값 적절히 바꿔주세요 */
	#header.top-fixed #headerInnerWrap{background-color:#fff; border-bottom:1px solid #eee;}
	
	/* -------- Header :: UTIL BOX -------- */
	.header-util-box{right:70px; }
/* 	.header-util-box .header-btn{font-size:15px; height:44px} */

	/* -------- Header :: GNB(Pc) -------- */
	#gnb{display:none;}
	.gnb-overlay-bg{display:none}

	/* -------- Header :: GNB(Mobile/기본스타일) -------- */
	.gnb-overlay-bg-m{display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.5); z-index:9998;}	
	#gnbM{ 
		display:block; 
		position:fixed; 
		top:0px; 
		right:-82%;
		width:80%; 
		height:100%;  
		max-width:280px; 
		background-color:#fff; 
		z-index:9999; 
		transition:all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715); 
		-webkit-transition:all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);  
		visibility:hidden;
	}
	#gnbM.open{
		right:0px; 
		visibility:visible;
	}
	/* GNB Mobile :: 레이아웃 */
	.gnb-navigation-wrapper{position:relative; height:100%; box-sizing:border-box; padding-top:80px; overflow-y:auto;}	/* padding-top : Header 높이값 */
	.header-util-menu-box + .gnb-navigation-wrapper{padding-top:0}
	
	/* GNB Mobile :: 메뉴영역 :: 1차 */
	#navigation > li{border-bottom:1px solid #e7e7e7;}
	#navigation > li:first-child{border-top:1px solid #e7e7e7}
	#navigation > li > a {position:relative; display:block; padding:15px; color:#333; font-size:17px; font-weight:500; }
	#navigation > li.active > a{color:#589446;}
	#navigation > li.has-2dep > a span{position:relative; display:inline-block}
	/*#navigation > li.has-2dep > a span:before{font-family:xeicon; content: "\e914"; position:absolute; top:50%; right:-35px; font-size:1.3em; transform:translateY(-50%);}
	#navigation > li.has-2dep.active > a span:before{content: "\e91b";}*/
	/* GNB Mobile ::  메뉴영역 :: 2차 */
	#navigation > li .gnb-2dep{display:none; padding: 0 0; background-color:#f2f2f2; }
	#navigation > li .gnb-2dep > li{height:auto !important; border-bottom: 1px solid #ffffff;}
	#navigation > li .gnb-2dep > li > a{display:block; color:#444; font-size:14px; padding:12px 15px; opacity:0.7;filter:Alpha(opacity=70);}
	#navigation > li .gnb-2dep > li.on > a{opacity:1.0;filter:Alpha(opacity=100); font-weight:500;}
	#navigation > li .gnb-2dep > li > a .icon{display:none}
	/* GNB Mobile :: 메뉴영역 ::  3차 */
	#navigation > li .gnb-2dep > li > .gnb-3dep{display:none; padding:10px; background-color:#aaa; margin:0 10px}
	#navigation > li .gnb-2dep > li > .gnb-3dep > li > a{display:block; padding:8px 0; font-size:13px; color:#fff;}
	#navigation > li .gnb-2dep > li > .gnb-3dep > li > a:before{display:inline-block; content:"-"; margin-right:5px;}
	
	/* -------- GNB Mobile :: 스타일2 (Full Style) -------- */
	#gnbM.gnb-style-full{ 
		top:-100%; 
		right:0;
		width:100%; 
		height:100%;  
		max-width:none; 
	}
	#gnbM.gnb-style-full.open{
		top:0px; 
	}
	.gnb-style-full .gnb-navigation-wrapper{height:auto; width:100%; position:absolute; top:0px; bottom:0px; left:0; padding-top:0;}
	.gnb-style-full .header-util-menu-box + .gnb-navigation-wrapper{top:80px; }
	.gnb-style-full-member .gnb-navigation-wrapper{bottom:80px;}
	.gnb-style-full .gnb-navigation-inner{display:table; width:100%; height:100%;}
	.gnb-style-full #navigation{
		display:table-cell;
		vertical-align:middle;
	}
	.gnb-style-full #navigation > li{
		text-align:center; 
/* 		border:0;  */
		opacity:0;filter:Alpha(opacity=0); 
		-webkit-transform:translateY(-20px);
		transform:translateY(-20px);
		-webkit-transition:all 0s 0s;
		transition:all 0s 0s;
	}
/* 	.gnb-style-full #navigation > li:first-child {border:0} */
	.gnb-style-full #navigation > li > a {}
	.gnb-style-full #navigation > li .gnb-icon i{display:none;}
	.gnb-style-full.open #navigation > li{
		opacity:1.0;filter:Alpha(opacity=100); 
		-webkit-transform:translateY(0px); 
		transform:translateY(0px); 
		-webkit-transition:transform 0.8s, opacity 0.8s;
		transition:transform 0.8s, opacity 0.8s;
	}
	.gnb-style-full.open #navigation > li:nth-child(1){-webkit-transition-delay: 0.3s; transition-delay:0.3s;}
	.gnb-style-full.open #navigation > li:nth-child(2){-webkit-transition-delay: 0.4s; transition-delay:0.4s;}
	.gnb-style-full.open #navigation > li:nth-child(3){-webkit-transition-delay: 0.6s; transition-delay:0.6s;}
	.gnb-style-full.open #navigation > li:nth-child(4){-webkit-transition-delay: 0.7s; transition-delay:0.7s;}
	.gnb-style-full.open #navigation > li:nth-child(5){-webkit-transition-delay: 0.9s; transition-delay:0.9s;}
	.gnb-style-full.open #navigation > li:nth-child(6){-webkit-transition-delay: 0.9s; transition-delay:0.9s;}
	.gnb-style-full.open #navigation > li:nth-child(7){-webkit-transition-delay: 0.9s; transition-delay:0.9s;}
	.gnb-style-full.open #navigation > li:nth-child(8){-webkit-transition-delay: 0.9s; transition-delay:0.9s;}
	.gnb-style-full.open #navigation > li:nth-child(9){-webkit-transition-delay: 0.9s; transition-delay:0.9s;}
	.gnb-style-full.open #navigation > li:nth-child(10){-webkit-transition-delay: 0.9s; transition-delay:0.9s;}
	

	/* -------- Header :: 네비게이션 오픈 버튼 -------- */
	.nav-open-btn{
		display:block; position:fixed; top:17px;  right:15px; z-index:10000; 
		height:30px;
		-webkit-transition:all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
		transition:all 0.3s cubic-bezier(0.47, 0, 0.745, 0.715); 
	}
	.nav-open-btn .line{
		display:block; width:28px; height:3px; background-color:#333; border-radius:5px; margin: 4px auto;
		-webkit-transition: all 0.3s ease-in-out;
	     transition: all 0.3s ease-in-out;
	}
	.nav-open-btn.active .line{background-color:#333;}
	.nav-open-btn.active .line:nth-child(2), .nav-open-btn.active .line:nth-child(4){opacity: 0;}
	.nav-open-btn.active .line:nth-child(1){
		 -webkit-transform: translateY(7px) rotate(45deg);
		  transform: translateY(7px) rotate(45deg);
	}
	.nav-open-btn.active .line:nth-child(3){
		 -webkit-transform: translateY(-7px) rotate(-45deg);
		  transform: translateY(-7px) rotate(-45deg);
	}
	
	#header.top-fixed .nav-open-btn .line{background-color:#333}
}

@media all and ( max-width: 800px ){	
	/* -------- Header :: UTIL BOX -------- */
	.mobileNone { display: none !important; }
	
	.header-util-box{ right:56px; }
	.header-util-box .loginBtn{ display: none; }
	
/* 	.header-util-box .header-btn{font-size:12.5px; width:100px; height:35px} */
	.header-util-box .header-btn.free{margin-left:3px}
	/* -------- Header :: 네비게이션 오픈 버튼 -------- */
/* 	.nav-open-btn{top:27px} */
/* 	#header .logo img{height:38px} */
}
@media all and ( max-width: 480px ){
/* 	#header,#headerInnerWrap{height:60px;} */
/* 	#header .logo{padding:15.5px 0;} */
/* 	#header .logo img{height:29px;} */

	/* -------- Header :: UTIL BOX -------- */
	.header-util-box{right:43px; }
	.header-util-box .header-btn{width:60px; padding:0 3px; }
	.header-util-box .header-btn.free{margin-left:0}

	/* Header :: 사이트맵, 네비게이션 버튼 */
	.nav-open-btn{top:15px; margin-top:0;}
	.nav-open-btn .line{width:20px; height:2px;}
	.nav-open-btn.active .line:nth-child(1){
		 -webkit-transform: translateY(6px) rotate(45deg);
		  transform: translateY(6px) rotate(45deg);
	}
	.nav-open-btn.active .line:nth-child(3){
		 -webkit-transform: translateY(-6px) rotate(-45deg);
		  transform: translateY(-6px) rotate(-45deg);
	}
	/* Header :: GNB(Mobile) */
	.gnb-navigation-wrapper{padding-top:60px} /* padding-top : Header 높이값 */
	.gnb-style-full .header-util-menu-box + .gnb-navigation-wrapper{top:60px; }
	.gnb-style-full-member .gnb-navigation-wrapper{bottom:60px;}
	#navigation > li > a{font-size:15px;}
	#navigation > li .gnb-2dep > li > a{font-size:13px;}

	/* Header :: 언어선택 및 회원메뉴 */
	.header-util-menu-box{height:60px;}
	/* 언어선택 */
	.header-util-menu-box .lang-select{padding:10px; }
	.header-util-menu-box .lang-select li > a{height:38px; line-height:38px}
	/* 회원메뉴 */
	.member-menu-box{padding:5px 0;}
	.member-menu-box li a{ padding:4px 0}
	.member-menu-box li a i{font-size:20px;}
	.member-menu-box li a strong{padding-top:5px;}
	.gnb-style-full .member-menu-box{height:60px}
	.gnb-style-full .member-menu-box li a{padding:10px 0;}

}

/* ****************** FOOTER ********************** */
@media all and (max-width:1560px){		
	/* Footer :: TOP버튼 */
	.to-top-btn{width:50px; height:50px; }
	.to-top-btn.bottom-fixed{bottom:45px}
	#footerBottom{padding:50px 0 20px}
}
@media all and (max-width:960px){	
	.footer-left-con,
	.footer-right-con{float:none;}
	#footerTop .footer-left-con{text-align:center;}
	#footerTop .footer-right-con{width:100%; margin-top:30px}
	/* Footer :: 사이트맵 */
	.footer-sitemap > ul > li{min-width:auto; width:17%; margin-left:3%; text-align:center}
	.footer-sitemap > ul > li:nth-child(2){margin-left:3%}
	.footer-sitemap > ul > li:first-child{margin-left:0}
	.footer-copyright{margin-bottom:15px}
}
@media all and (max-width:800px){	
	/* Footer :: TOP버튼 */
	.to-top-btn{width:40px; height:40px}
	/* -------- FOOTER :: 상단 -------- */
	#footerTop{padding:35px 0}
	/* Footer :: 푸터로고 */
	.foot-logo{padding-bottom:20px;}
	.foot-logo img{height:30px}
	/* Footer :: 정보 */
	.footer-address p{font-size:12px;}
	/* Footer :: SNS 리스트 */
	.footer-sns-list{margin-top:30px}
	.footer-sns-list li{width:30px; height:30px; margin-right:5px}
	.footer-sns-list li a .icon{font-size:16px}
	.footer-sitemap > ul > li h2{margin-bottom:15px}
	.footer-sitemap > ul > li h2 a{font-size:14px}
	.footer-sitemap > ul > li .sitemap-2dep li{margin-bottom:15px}
	.footer-sitemap > ul > li .sitemap-2dep li a{font-size:12px;}
	#footerTop .footer-right-con{display:none}
	/* -------- FOOTER :: 하단 -------- */
	#footerBottom{ padding:15px 0 20px }
	/* Footer :: Copyright */
	.footer-copyright{font-size:11px; margin-bottom:15px}
	/* Footer :: 푸터메뉴 */
	.foot-menu{margin-right:35px}
	.foot-menu li{padding-left:10px}
	.foot-menu li a{font-size:12px}
	/* Footer ::  언어선택 */
	.lang-box .lang-open-btn{font-size:12px}
	.lang-list a{font-size:12px}
}
@media all and (max-width:500px){
	.footer-copyright { margin-bottom: 50px !important; }
	.modal-fixed-pop-wrapper .page-contents { padding: 10px 10px; }
}

.w_p100max1400 {
	width: 100%; max-width: 1400px;
}
.mg_50auto {
	margin: 50px auto !important;
}
.mg_50_0 {
	margin: 50px 0px !important;
}
.mg_100auto {
	margin: 100px auto !important;
}
.pd_100_0 {
	padding: 100px 0px !important;
}
@media all and (max-width: 1024px){
/* 	.mg_50auto { */
/* 		margin: 25px auto !important; */
/* 	} */
/* 	.mg_50_0 { */
/* 		margin: 25px 0px !important; */
/* 	} */
	.mg_100auto {
		margin: 50px auto !important;
	}
	.pd_100_0 {
		padding: 50px 0px !important;
	}
	.autudesk02_contents_01{
		margin: 50px auto !important;
	}
}
@media all and (max-width: 768px){
/* 	.mg_50auto { */
/* 		margin: 15px auto !important; */
/* 	} */
/* 	.mg_50_0 { */
/* 		margin: 15px 0px !important; */
/* 	} */
	.mg_100auto {
		margin: 25px auto !important;
	}
	.pd_100_0 {
		padding: 25px 0px !important;
	}
	.autudesk02_contents_01{
		margin: 30px auto !important;
	}
	
	.mobileDisplayNone { display: none !important; }
}

@media all and (max-width: 460px){
/* 	.mg_50auto { */
/* 		margin: 15px auto !important; */
/* 	} */
/* 	.mg_50_0 { */
/* 		margin: 15px 0px !important; */
/* 	} */
	.mg_100auto {
		margin: 25px auto !important;
	}
	.pd_100_0 {
		padding: 25px 0px !important;
	}
	.autudesk02_contents_01{
		margin: 25px auto !important;
	}
}




/* ****************** SUB LAYOUT ********************** */
@media all and (max-width:1220px){	
	/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
	#content:not(.wide){padding:70px 15px}
	#content.wide{padding:70px 0 0 0}
	#visual{margin-top:80px}
	.sub-top-menu.top-fixed .side-menu-inner{top:80px}
}

@media all and (max-width:1024px){		
	/*  SUB LAYOUT :: 서브메뉴 모바일 (스타일2) */
	#topMenu02 .side-menu-inner ul li > a{font-size:16px}
}
@media all and (max-width:800px){
	/*  SUB LAYOUT :: 컨텐츠 레이아웃 */
	#content:not(.wide){padding:50px 15px}
	#content.wide{padding:50px 0 0 0}

	/*  SUB LAYOUT :: 비주얼 */
	#visual{height:350px}
	#visual .visual-txt-con{width:calc(100% - 30px)}
	#visual .visual-txt-container .visual-txt{font-size:45px}

	/*  SUB LAYOUT ::  서브메뉴(스타일1,2,3) */
	#topMenu02{display:none}

	/*  SUB LAYOUT :: 서브메뉴 모바일 (스타일2) */
	#topMenuM02{display:block; position:relative; height:45px; z-index:1000}
	#topMenuM02 .side-menu-inner{height:44px; border-bottom:1px solid #ddd; width:100%; background-color:#fff}
	#topMenuM02 .location-to-home-btn{position:absolute; width:44px; height:44px; left:0px; top:0px; background-color:#fff; text-align:center; }
	#topMenuM02 .location-to-home-btn i{color:#f57f20; font-size:20px; line-height:44px;}
	#topMenuM02 .menu-location{position:relative;}
	#topMenuM02 .location-to-home-btn + .menu-location{margin-left:44px}
	#topMenuM02 .menu-location > .cur-location{position:relative; display:block; width:100%; text-align:left; height:44px; padding:0 30px 0 15px; }
	#topMenuM02 .menu-location > .cur-location span{display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; line-height:44px; color:#589446; font-weight:600; font-size:15px;}
	#topMenuM02 .menu-location > .cur-location .arrow{position:absolute; top:50%; right:10px; width:20px; height:20px;margin-top:-10px; font-size:20px;}
	#topMenuM02 .menu-location.open > .cur-location .arrow{transform:rotate(-180deg); margin-top:-10px;}
	#topMenuM02 .menu-location .location-menu-con{display:none; position:absolute; top:44px; left:0px; width:100%; border-bottom:1px solid #a6b7e3; border-top:0; background-color:#162148; z-index:11; padding:7px 0}
	#topMenuM02 .menu-location.location1 .location-menu-con{width:calc(100% - 1px)}
	#topMenuM02 .menu-location .location-menu-con li a{display:block; padding:7px 15px; font-size:14px; line-height:1.5; word-break:keep-all; color:#a6b7e3}
	#topMenuM02 .menu-location .location-menu-con li a .icon{display:none}
	#topMenuM02 .menu-location .location-menu-con li.on{position:relative;}
	#topMenuM02 .menu-location .location-menu-con li.on a{font-weight:600;}
}
@media all and (max-width:480px){		
	/*  SUB LAYOUT :: 비주얼 */
	#visual{height:270px; margin-top:60px}
	#visual .visual-txt-container .visual-txt{font-size:33px}
	.sub-top-menu.top-fixed .side-menu-inner{top:60px}
	
	#header .logo img { width: 90%; height: auto; }
}

/* ****************** MODAL LAYERPOPUP ********************** */
@media all and ( max-width: 800px ){
	/* modal layer content */
	.footer-modal-content{width:auto; margin:50px auto}
	.footer-modal-content h1{font-size:18px; text-align:left; padding:0 30px 15px 0}
	.modal-close-btn{right:-3px; top:-3px;}
	.modal-close-btn i{font-size:24px}
	.footer-inner-box{padding:15px}
	.footer-inner{padding:10px; height:250px;}
}

/* ****************** 사이트맵 ********************** */
@media all and ( max-width: 1366px ){
	/* -------- 사이트맵 02 -------- */
	/* 사이트맵 02 :: 메뉴 */
	.sitemap-wrapper-style02 > ul > li > h2{margin:80px 20px 20px; font-size:16px;}
	.sitemap-wrapper-style02 > ul > li .sitemap-2dep a{padding:15px 5px 15px 20px; font-size:13px; }
}
@media all and ( max-width: 1024px ){
	/* -------- 사이트맵 02 -------- */
	/* 사이트맵 02 :: Layout */
	#sitemapContent,
	#sitemapContent.open{display:none;}
}
@media all and ( max-width: 800px ){
	/* -------- 사이트맵 01 -------- */
	/* 사이트맵 01 */
	.sitemap-wrapper{padding:15px}
	.sitemap-wrapper > ul{display:block;}
	.sitemap-wrapper > ul > li{float:none; display:block; width:auto; margin-bottom:15px;}
	.sitemap-wrapper > ul > li > h2{font-size:16px; margin:0; margin-bottom:5px;}
	.sitemap-wrapper > ul > li .sitemap-2dep{overflow:hidden; margin:0 -1%; padding:0;}
	.sitemap-wrapper > ul > li .sitemap-2dep li{float:left; position:relative; width:31.33%; margin:1%; word-break:keep-all;}
	.sitemap-wrapper > ul > li .sitemap-2dep li:before{position:absolute; top:0px; left:0; bottom:0px; width:1px; background-color:#eee; content:""; display:none;}
	.sitemap-wrapper > ul > li .sitemap-2dep li:nth-child(3n+1){clear:both;}
	.sitemap-wrapper > ul > li .sitemap-2dep a{padding:7px; font-weight:300; }
}
@media all and ( max-width: 480px ){
	/* -------- 사이트맵 01 -------- */
	/* 사이트맵 01 */
	.sitemap-wrapper > ul > li .sitemap-2dep li{width:48%;}
	.sitemap-wrapper > ul > li .sitemap-2dep li:nth-child(3n+1){clear:none;}
	.sitemap-wrapper > ul > li .sitemap-2dep li:nth-child(odd){clear:both;}
}