@charset "utf-8";
*{margin: 0; padding: 0;}
a{text-decoration: none; color: #333;}
ul{list-style: none;}
body{
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 16px;
	color: #333;
	line-height: 22px;
	background: #fff;
}

/*header*/
#header_wrap{
	width: 100%;
    height: 10%;
}
.header{
	height: 10%;
	width: 70%;
	margin: auto;
    z-index: 99;
}

/*---------------------------------------------------------------------------*/
/*PC LANGUAGE*/
@media screen and (min-width: 1200px){
.mheader_language_wrap{display: none;}
.header_language_wrap{
	width: 70%;
    height: 35px;
	position: absolute;
	top: 0;
	right: 0%;
}
.header_language{
    width: 70%;
    text-align: right;
    margin: auto;
}
.header_language p{
    display: inline-block;
    font-size: 14px;
    padding-top: 6px;
	font-family: 'Noto Sans KR', sans-serif;
}
.header_language>p>a{
    display: block;
    color: #114676;
    font-weight: 900;
    letter-spacing: 1px;
}
.header_language>p>a:hover{
	cursor: pointer;
    color:#021242;
    transition-duration: 0.3s;
}
}

/*Tablet Language*/
@media screen and (min-width: 701px) and (max-width: 1199px){
.header_language_wrap{display: none;}
.mheader_language_wrap{
    width: 100%;
    height: 40px;
}
.header_language{
    width: 85%;
    text-align: right;
    margin: auto;
}
.header_language p{
    display: inline-block;
    font-size: 14px;
    padding-top: 6px;
	font-family: 'Noto Sans KR', sans-serif;
}
.header_language>p>a{
    display: block;
    color: #114676;
    font-weight: 900;
    letter-spacing: 1px;
}
.header_language>p>a:hover{
	cursor: pointer;
    color:#021242;
    transition-duration: 0.3s;
}
}

/*Mobile Language*/
@media screen and (max-width: 700px){
.header_language_wrap{display: none;}
.mheader_language_wrap{
	width: 100%;
	height: 40px;
}
.header_language{
	width: 85%;
	text-align: right;
	margin: auto;
}
.header_language p{
	display: inline-block;
	font-size: 14px;
	padding-top: 6px;
	font-family: 'Noto Sans KR', sans-serif;
}
.header_language>p>a{
	display: block;
	color: #114676;
	font-weight: 900;
	letter-spacing: 1px;
}
.header_language>p>a:hover{
	cursor: pointer;
	color:#021242;
	transition-duration: 0.3s;
}
}

/*------------------------------------------------------------------------------------*/
/*pc header*/
@media screen and (min-width: 1200px){
	.mgnb{display: none;}
	h1{
		float: left;
		width: 20%;
		padding: 3.5% 0;
	}
	.gnb{
		float: right;
		width: 60%;
		padding-top:50px;
		display: flex;	
	}
	.gnb li{
		position: relative;
		float: left;
		width: 20%;	
	}
	.gnb li a{
		display: block;
		padding: 10%;
		font-size: 16px;
		font-weight: 500;
		color: #114676;
	}
	.gnb li:hover .submenu1{
		display: block;
	}
	
	/*submenu1*/
	.submenu1{
		display: none;
		position: absolute;
		top: 100%;
		left: -19%;
		opacity: 0;
		visibility: hidden;
	}
	.submenu1>li{
		display: block;
		text-align: center;
		width: 100%;
	}
	.gnb li:hover .submenu1{
		opacity: 1;
		visibility: visible;
	}
	.submenu1>li>a{
		display: block;
		padding: 10% 0;
		background: #114676;
		color: #fff;    
		transition-property: background-color;
		transition-duration: 0.5s;
		/* 변하는 속도가 점점 빨라지는 패턴 */
		transition-timing-function: ease-out;
		/* 0.5초 뒤에 transition이 변경되는 딜레이 시간 */
		transition-delay: 1ms;
	}
	.submenu1 li a:hover{
		background: #fff;
		color: #114676;    
		transition: 0.6s ease-out 20ms;
	}
	
	/*submenu2*/
	.submenu2{
		display: none;
		position: absolute;
		top: 100%;
		right: 60%;
		opacity: 0;
		visibility: hidden;
	}
	.gnb li:hover .submenu2{
		opacity: 1;
		visibility: visible;
	}
	.submenu2>li{
		color: #114676;
		font-weight: 600;
		font-size: 20px;
		position: relative;
		text-align: center;
		width: 170%;
		padding: 2% 0;
		background: #114676;
	}
	.submenu2>li>a{
		display: block;  
		background: #114676;
		color: #fff;    
		transition-duration: 0.5s;
		/* 변하는 속도가 점점 빨라지는 패턴 */
		transition-timing-function: ease-out;
		/* 0.5초 뒤에 transition이 변경되는 딜레이 시간 */
		transition-delay: 1ms;
	}
	.submenu2 li a:hover{
		background: #fff;
		color: #114676;    
		transition: 0.6s ease-out 20ms;
	}
	.submenu2 li a:active{
		background-color: #fff;
		color: #114676;
		font-weight: 600;
	}
	.gnb li:hover .submenu2{
		display: block;
	}
	
	/*submenu3*/
	.submenu3{
		display: none;
		opacity: 0;
		visibility: hidden;
		position: absolute;
		top: 0%;
		left: 100%;
	}
	.gnb>li>.submenu2>li:nth-child(1) .submenu3{
		opacity: 1;
		visibility: visible;
	}
	.submenu3>li{
		width: 300%;
		background: rgba(255, 255, 255, 0.8);
	}
	.submenu3>li>a{
		display: block;
		padding: 11% 0;
		color: #222222;    
		transition-property: background-color;
		transition-duration: 0.5s;
		/* 변하는 속도가 점점 빨라지는 패턴 */
		transition-timing-function: ease-out;
		/* 0.5초 뒤에 transition이 변경되는 딜레이 시간 */
		transition-delay: 1ms;
	}
	.submenu3 li a:hover{
		color: #114676;    
		transition: 0.6s ease-out 20ms;
	}
	
	.submenu2 li:hover .submenu3{
		display: block;
	}
	
	/*submenu4*/
	.submenu4{
		display: none;
		opacity: 0;
		visibility: hidden;
		position: absolute;
		top: 4.5%;
		left: 100%;
	}
	.gnb>li>.submenu2>li:nth-child(2) .submenu4{
		opacity: 1;
		visibility: visible;
	}
	.submenu4>li{
		width: 550%;
		background: rgba(255, 255, 255, 0.8);
	}
	.submenu4>li>a{
		display: block;
		padding: 11.8% 0;
		color: #222222;    
		transition-property: background-color;
		transition-duration: 0.5s;
		/* 변하는 속도가 점점 빨라지는 패턴 */
		transition-timing-function: ease-out;
		/* 0.5초 뒤에 transition이 변경되는 딜레이 시간 */
		transition-delay: 1ms;
	}
	.submenu4 li a:hover{
		color: #114676;    
		transition: 0.6s ease-out 20ms;
	}
	
	.submenu2 li:hover .submenu4{
		display: block;
	}
	
	/*submenu5*/
	.submenu5{
		display: none;
		position: absolute;
		top: 100%;
		left: -10%;
		opacity: 0;
		visibility: hidden;
	}
	.submenu5>li{
		display: block;
		text-align: center;
		width: 130%;
	}
	.gnb li:hover .submenu5{
		display: block;
		opacity: 1;
		visibility: visible;
	}
	.submenu5>li>a{
		display: block;
		padding: 10% 0;
		background: #114676;
		color: #fff;    
		transition-property: background-color;
		transition-duration: 0.5s;
		/* 변하는 속도가 점점 빨라지는 패턴 */
		transition-timing-function: ease-out;
		/* 0.5초 뒤에 transition이 변경되는 딜레이 시간 */
		transition-delay: 1ms;
	}
	.submenu5 li a:hover{
		background: #fff;
		color: #114676;    
		transition: 0.6s ease-out 20ms;
	}
	
	/*submenu6*/
	.submenu6{
		display: none;
		position: absolute;
		top: 100%;
		left: -30%;
		opacity: 0;
		visibility: hidden;
	}
	.submenu6>li{
		display: block;
		text-align: center;
		width: 100%;
	}
	.gnb li:hover .submenu6{
		display: block;
		opacity: 1;
		visibility: visible;
	}
	.submenu6>li>a{
		display: block;
		padding: 10% 0;
		background: #114676;
		color: #fff;    
		transition-property: background-color;
		transition-duration: 0.5s;
		/* 변하는 속도가 점점 빨라지는 패턴 */
		transition-timing-function: ease-out;
		/* 0.5초 뒤에 transition이 변경되는 딜레이 시간 */
		transition-delay: 1ms;
	}
	.submenu6 li a:hover{
		background: #fff;
		color: #114676;    
		transition: 0.6s ease-out 20ms;
	}
	}
	
	
	/*tablet header*/
	@media screen and (min-width: 701px) and (max-width: 1199px){
	.gnb{display: none;}
	.header{
		width: 100%;
	}
	h1{
		float: left;
		width: 30%;
		text-align:right;
		padding: 4%;
	}
	h1 img{
		width: 100%;
	}
	.mgnb{
		display: block;
	}
	.mgnb p{
		float: right;
		padding: 3% 0;
		width: 10%;
	}
	.mgnb p img{width:45%;}
	}
	
	
	/*mobile header*/
	@media screen and (max-width: 700px){
	.gnb{display: none;}
	.header{
		width: 100%;
	}
	h1{
		float: left;
		width: 40%;
		text-align:right;
		padding: 4%;
	}
	h1 img{
		width: 100%;
	}
	.mgnb{
		display: block;
	}
	.mgnb p{
		float: right;
		padding: 15px 1%;
		width:10%;
	}
	.mgnb p img{width:70%;}
	}
	
	/*-----------------------------------------------------------------------------*/

/*banner*/
@media screen and (min-width: 1200px){
.mbanner{display: none;}
#banner_wrap{
	width: 100%;
	overflow: hidden;
}
.banner_slider{
	width: 100%;
}
.banner_slider img{
	width: 100%;
}
}

/*tablet banner*/
@media screen and (min-width: 701px) and (max-width: 1199px){
.mbanner{display: none;}
#banner_wrap{
	width: 100%;
	overflow: hidden;
}
.banner_slider{
	width: 100%;
}
.banner_slider img{
	width: 100%;
}
}


/*mobile header*/
@media screen and (max-width: 700px){
.banner_slider{display: none;}
.mbanner{
	width: 100%;
	overflow: auto;
}
.mbanner img{
	width: 100%;
}
}	

/*-----------------------------------------------------------------------------*/
/*Section1*/
#section1_wrap{
    width: 100%;
    overflow: auto;
	margin-bottom: 6%;
}
.section1{
	position: relative;
	padding: 7% 0;
    width: 70%;
	overflow: hidden;
    margin: auto;
    background: url(../images/sub01/sign.png) no-repeat bottom 5% right 7%;
}
/*PC section1*/
@media screen and (min-width: 1200px){
.msection1{display: none;}
.section1_inner{
	width: 70%;
	float: left;
}
.section1_title{
    font-size: 30px;
    color: #114676;
    font-weight: bold;
    padding-bottom: 25px;
}
.section1_text{
    padding-bottom: 20px;
}
.section1_inner2{
	width: 30%;
	float: right;	
}
.section1_text2{
	float: right;
    text-align: right;
    font-size: 20px;
	font-weight: bold;
	position: absolute;
	bottom: 10%;
	right: 15%;
}
}
/*tablet section1*/
@media screen and (min-width: 701px) and (max-width: 1199px){
.section1{display: none;}
.msection1{
	width: 85%;
	margin: 7% auto 2%;
}
.msection1_title{
    font-size: 30px;
    color: #114676;
    font-weight: bold;
    padding-bottom: 25px;
}
.msection1_text{
    padding-bottom: 20px;
}
.msection1_inner2{
	float: right;	
}
.msection1_text2{
	float: right;
    text-align: right;
    font-size: 20px;
	font-weight: bold;
	position: absolute;
	bottom: 10%;
	right: 15%;
}
.msection1 span{
	float: right;
	padding-right: 5%;
	font-size: 20px;
	font-weight: 600;
}
}

/*mobile section1*/
@media screen and (max-width: 700px){
.section1{display: none;}
.msection1{
	width: 85%;
	margin: 10% auto;
}
.msection1_title{
    font-size: 30px;
    color: #114676;
    font-weight: bold;
    padding-bottom: 25px;
}
.msection1_text{
    padding-bottom: 20px;
}
.msection1_inner2{
	float: right;	
}
.msection1_text2{
	float: right;
    text-align: right;
    font-size: 20px;
	font-weight: bold;
	position: absolute;
	bottom: 10%;
	right: 15%;
}
.msection1 span{
	float: right;
	padding-right: 5%;
	font-size: 20px;
	font-weight: 600;
}
}
/*-------------------------------------------------------------------------*/
/*Section2*/
#section2_wrap{
	width: 100%;
	overflow: hidden;
	background: #ededed;
}
.section2{
	width: 70%;
	margin: 5% auto;
	overflow: hidden;
}
/*PC Section2*/
@media screen and (min-width: 1200px){
.msection2{display: none;}
.section2_inner1{
	width: 25%;
	float: left;
}
.title_line{
	width: 10%;
	border-top: 4px solid #114676;
	padding-bottom: 10%;
}
.section2_title{
	font-size: 24px;
	color: #114676;
	font-weight: 500;
	padding-bottom: 30%;
	line-height: 30px;
}
.vision_title{
	color: #333333;
	font-size: 30px;
	line-height: 30px;
	font-weight: 600;
}
.title1:nth-child(2){
	padding: 30% 0;
}
.title1:nth-child(3){
	padding-bottom: 30%;
}
span{
	font-size: 20px;
	color: #848484;
	font-weight: 500;
}
.section2_inner2{
    width: 50%;
	float: right;
	margin-top: 13%;
}
.text1{
	color: #333333;
	font-weight: 500;
}

.vision_text:nth-child(2){
	padding: 20% 0;
}
.vision_text:nth-child(3){
	padding-bottom: 17%;
}
.section2_text li{
	float: left;
	width: 25%;
}
}

/*tablet section2*/
@media screen and (min-width: 701px) and (max-width: 1199px){
.section2{display: none;}
.msection2{
	width: 85%;
	margin: 7% auto;
	padding: 5% 0;
}
.title_line{
	width: 10%;
	border-top: 4px solid #114676;
	padding-bottom: 10%;
}
.msection2_title{
	font-size: 36px;
	color: #114676;
	font-weight: 500;
	margin-bottom: 10%;
	line-height: 40px;
}
.mvision_title{
	font-size: 27px;
	font-weight: 500;
	line-height: 35px;
}
.msection2 span{
	font-size: 20px;
	color: #848484;
}
.mtext1{
	padding: 3% 0 8%;
}	
}

/*mobile Section2*/
@media screen and (max-width: 700px){
.section2{display: none;}
.msection2{
	width: 85%;
	margin: 7% auto;
	padding: 5% 0;
}
.title_line{
	width: 10%;
	border-top: 4px solid #114676;
	padding-bottom: 10%;
}
.msection2_title{
	font-size: 36px;
	color: #114676;
	font-weight: 500;
	margin-bottom: 10%;
	line-height: 40px;
}
.mvision_title{
	font-size: 27px;
	font-weight: 500;
	line-height: 35px;
}
.msection2 span{
	font-size: 20px;
	color: #848484;
}
.mtext1{
	padding: 3% 0 8%;
}
}
/*-------------------------------------------------------------------------*/
/*Section3*/
#section3_wrap{
	width: 100%;
	overflow: hidden;
}

/*PC section3*/
@media screen and (min-width: 1200px){
.msection3{display: none;}
.section3{
	overflow: auto;
	width: 70%;
	margin: 8% auto;
}
.title_line2{
	width: 4%;
	border-top: 3px solid #114676;
	margin-bottom: 3%;
}
.section3_title{
	font-size: 30px;
	color: #114676;
	font-weight: 500;
	margin-bottom: 8%;
}
.section3_inner li{
	width: 30%;
	float: left;
	position: relative;
}
.section3_inner li:nth-child(2){
	margin: 0 5%;
}
.section3_inner li img{
	width: 100%;
}
.news1_title{
	position: absolute;
	bottom: 3px;
	left: 0px;
	background: rgba(0,0,0,0.6);
	width: 100%;
	text-align: center;
	padding: 3% 0;
	color: #ffffff;
	font-size: 16px;
	font-weight: 300;
}
}

/*tablet section3*/
@media screen and (min-width: 701px) and (max-width: 1199px){
.section3{display: none;}
.msection3{
	width: 85%;
	margin: 15% auto;
	text-align: center;
	overflow: hidden;
}
.mtitle_line2{
	width: 7%;
	border-top: 3px solid #114676;
}
.msection3_title{
	font-size: 30px;
	color: #114676;
	text-align: left;
	padding-top: 7%;
}
.msection3_inner{
	margin-top: 13%;
}
.msection3_inner li{
	width: 100%;
	padding-bottom: 15%;
	position: relative;
}
.msection3_inner li img{
	width: 100%;
}
.news1_title{
	position: absolute;
	bottom: 110px;
	left: 0px;
	background: rgba(0,0,0,0.6);
	width: 100%;
	text-align: center;
	padding: 3% 0;
	color: #ffffff;
	font-size: 16px;
	font-weight: 300;
}
}

/*mobile section3*/
@media screen and (max-width: 700px){
.section3{display: none;}
.msection3{
	width: 85%;
	margin: 15% auto;
	text-align: center;
}
.mtitle_line2{
	width: 10%;
	border-top: 3px solid #114676;
}
.msection3_title{
	font-size: 30px;
	color: #114676;
	text-align: left;
	padding-top: 10%;
}
.msection3_inner{
	margin-top: 20%;
}
.msection3_inner li{
	width: 100%;
	padding-bottom: 15%;
	position: relative;
}
.msection3_inner li img{
	width: 100%;
}
.news1_title{
	position: absolute;
	bottom: 68px;
	left: 0px;
	background: rgba(0,0,0,0.6);
	width: 100%;
	text-align: center;
	padding: 3% 0;
	color: #ffffff;
	font-size: 16px;
	font-weight: 300;
}
}
/*-------------------------------------------------------------------------*/
/*Section4*/
#section4_wrap{
	width: 100%;
	overflow: hidden;
	background-color: #ddd;
}

/*PC Section4*/
@media screen and (min-width: 1200px){
.msection4{display: none;}
.section4{
	width: 70%;
	margin: auto;
	padding: 2% 0;
	overflow: auto;
}
.section4_inner li{
	float: left;
	display: flex;
	line-height: 30px;
	font-size: 16px;
	font-weight: 600;
	width: 33.3%;
}
.section4_inner li img{
	width: 35px;
	height: 35px;
	padding-right: 2%;
}
}

/*tablet Section3*/
@media screen and (min-width: 701px) and (max-width: 1199px){
.section4{display: none;}
.msection4{
	width: 85%;
	margin: auto;
	padding: 5% 0;
}
table{
	font-weight: 600;
	border-spacing: 10px;
}
.table_text{
	padding-left: 3%;
}
}

/*mobile Section4*/
@media screen and (max-width: 700px){
.section4{display: none;}
.msection4{
	width: 85%;
	margin: auto;
	padding: 5% 0;
}
table{
	font-weight: 600;
	border-spacing: 10px;
}
.table_text{
	padding-left: 3%;
}
}

/*-------------------------------------------------------------------------*/
/*Footer*/
#footer_wrap{
	width: 100%;
	overflow: hidden;
	background-color: #114676;
}
/*PC footer*/
@media screen and (min-width: 1200px){
.mfooter{display: none;}
.footer{
	width: 70%;
	margin: auto;
	overflow: auto;
	padding: 3.5% 0;
	background-color: inherit;
	text-align: center;
}
.footer_inner{
	color: #fff;
	margin-top: 0.5%;
	font-size: 16px;
}
}

/*tablet footer*/
@media screen and (min-width: 701px) and (max-width: 1199px){
.footer{display: none;}
.mfooter{
	width: 85%;
	margin: auto;
	overflow: auto;
	padding: 10% 0;
	background-color: inherit;
	text-align: center;
}
.footer_inner{
	color: #fff;
	margin-top: 0.5%;
	font-size: 16px;
}
}

/*mobile footer*/
@media screen and (max-width: 700px){
.footer{display: none;}
.mfooter{
	width: 85%;
	margin: auto;
	overflow: auto;
	padding: 10% 0;
	background-color: inherit;
	text-align: center;
}
.footer_inner{
	color: #fff;
	margin-top: 0.5%;
	font-size: 16px;
}
}