/*** include css***/

/**header css**/

/*header 영역*/
.header {
	width:1200px;
	margin:0 auto;
}
.header .logo {
	width:226px;
	float:left;
}

	
/*lnb 영역*/

.lnb_wrap {
	float:left;
	margin-left:70px;
	line-height:30px;
}
	.lnb{
		
	}
		.lnb>ul {
			margin:0 auto;
		}
			.lnb>ul>li {
				float:left;
				font-family:'NotoSans', Sans-serif;
				font-size:20px;
				font-weight:500;
				margin-left:60px;
			}
			.lnb>ul>li a{
				transition:all 0.3s;
			}
			.lnb>ul>li .active{
				color:#4b5d9c;
				font-weight:600;
			}
			.lnb>ul>li .active::after{
				content:"";
				display:block;
				width:100%;
				height:2px;
				background:#4b5d9c;
			}

/*서브메뉴*/
.snb{
	position:absolute;
	z-index:10;
	top:40px;
	max-height:0;
	overflow:hidden;
	transition:max-height 0.5s;
}
.snb li{
	width:100%;
	font-size:14px;
	font-weight:300;
	line-height:40px;
}
/*hover*/
.lnb>ul>li:hover>a{
	color:#4b5d9c;
	font-weight:600;
}
.lnb>ul>li>a::after{
	content:"";
	display:block;
	width:0;
	height:2px;
	background:#4b5d9c;
	overflow:hidden;
	transition:width 0.3s;
}
.lnb>ul>li:hover>a::after{
	width:100%
}
.lnb li:hover .snb{
	max-height:500px;
}



/*헤더유틸*/
.util{
	float:right;
	margin:0;
}
.util li{
	display:inline-block;
	vertical-align:middle;
	margin-right:10px;
}
.util li a{display:block;}
.lang{
	width:60px;
	height:25px;
	line-height:25px;
	border-radius:30px;
	border:1px solid #222;
	background:#222;
	text-align:center;
	font-size:13px;
	box-sizing:border-box;
}
.lang.kor a{color:#fff;}
.lang.eng{
	background:none;
}

/**푸터**/

#footer_wrap{
	background:url(/site/ghcw/renew/images/common/f_bg.png) no-repeat center top;
	background-size:cover;
	font-family:'NotoSans', Sans-serif;
	font-weight:200;
	font-size:14px;
	color:#fff;
}
#footer_wrap a{
	color:#fff;
}
.footer{
	padding:50px 0;
	position:relative;
}
.footer::after{
	content:"";
	display:block;
	clear:both;
}
.contact a{
	display:block;
	width:42px;
	height:42px;
	line-height:42px;
	background:#fff url(/site/ghcw/renew/images/common/f_icon.png) no-repeat center center;
	text-align:center;
	border:1px solid #4b5d9c;
	border-radius:50%;
	position:absolute;
	top:-21px;
	right:0;
	text-indent:-9999px;
	box-shadow:0 0 5px rgba(0,0,0,0.2);
}
.f_logo{
	float:left;
}
.f_info{
	float:left;
	margin-left:50px;
}
.f_info ul{
	overflow:hidden;
	margin-bottom:30px;
}
.f_info li{
	float:left;
	margin-right:30px;
}
.f_info p{font-size:12px;}
.f_info .copy{
	margin-top:30px;
	font-weight:500;
}

/*페이징*/
.paging {overflow: hidden; text-align: center;  margin-top: 20px; margin-bottom: 20px; font-weight: bold; color: #767676; display: table; margin-left: auto; margin-right: auto; }
.paging ul {overflow: hidden;}
.paging li {display: inline-block; zoom: 1; display: inline; float: left;}

.paging li {display: block; width: 24px; height: 20px; margin: 0 2px; overflow: hidden; color: #767676; font-size: 12px; padding-top: 4px;}/*border: 1px solid #ebebeb; */
.paging li.current {color:#333;}/*background:#EDA490; color: #fff;*/
.paging li a{color:#9C9C9C;}



/*eng*/
.eng_lnb ul li a{
	font-size:15px;
	margin-left:30px;
}

/*top*/
.top_btn{
	position:fixed;
	right:50px;
	bottom:-100px;
	width:60px;
	height:60px;
	background:rgba(0,0,0,0.8);
	border-radius:50%;
	text-align:center;
	cursor:pointer;
	transition:bottom 0.5s;
}
.top_btn span{
	display:block;
	line-height:60px;
	font-size:30px;
}
.top_btn.active{
	bottom:50px;
}