@charset "utf-8";
@font-face {font-family: 'Red Hat Display';font-style: normal;font-weight: 400;src:url('/font/red-hat-display/red-hat-display-latin-regular.woff2') format('woff2'), url('/font/red-hat-display/red-hat-display-latin-regular.woff') format('woff');}
@font-face {font-family: 'Red Hat Display';font-style: normal;font-weight: 500;src:url('/font/red-hat-display/red-hat-display-latin-medium.woff2') format('woff2'), url('/font/red-hat-display/red-hat-display-latin-medium.woff') format('woff');}
@font-face {font-family: 'Red Hat Display';font-style: normal;font-weight: 700;src:url('/font/red-hat-display/red-hat-display-latin-bold.woff2') format('woff2'),	url('/font/red-hat-display/red-hat-display-latin-bold.woff') format('woff');}
@font-face {font-family: 'Red Hat Display';font-style: normal;font-weight: 900;src:url('/font/red-hat-display/red-hat-display-latin-black.woff2') format('woff2'),	url('/font/red-hat-display/red-hat-display-latin-black.woff') format('woff');}
html {font-size: 10px;}
body {
	margin:0;padding:0;
	font-family:"Pretendard", "Roboto";
	font-size:clamp(1.3rem, 1.2rem + 0.2vw, 1.5rem);
	font-weight:400;
	line-height:1.5;
	letter-spacing:0;
	color:#333;
}

/* navigation */
#header {
	position: absolute;
	top: 0;left: 0;
	width: 100%;height: 100px;
	padding: 0 4rem;
	overflow: visible;
	z-index: 10000;
}
#header .gnbPC {overflow:visible;}
#header div.link{
	display:flex;
	justify-content:flex-end;
	align-items: center;
	gap: 0.4rem;
}
#header div.link a{
	display:flex;
	align-items: center;
	gap: 0.4rem;
	padding:6px 12px 6px 8px;
	font-size: 1.4rem;
	color: #f8f8f8;
	background:rgba(0,0,0,0.05);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 99rem;
}
#header div.link a:hover{background:rgba(0,0,0,.1);}
#header div.link a i.ico{
	display:block;
	width: 2rem;height:2rem;
	border-radius: 99rem;
}
#header div.link a i.ico.kor{
	background-color: #fff;
	background-image: url('/images/uimc/eng/common/icon_flag.svg');
	background-position:center center;
	background-repeat:no-repeat;
	background-size:18px;
}

.gnbPC .gnbArea {
	position:relative;
	display:flex;
	justify-content: center;
	align-items: center;
	max-width: 1920px;
	margin: 0 auto;
	z-index:10000;
}
.gnbPC .gnbArea h1.logo {
	width: 36rem;
	z-index: 9999;
}
.gnbPC .gnbArea > ul {
	position: relative;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 8rem;
}
.gnbPC .gnbArea > ul > li {
	position: relative;
	padding: 0;
	text-align: center;
}
.gnbPC .gnbArea > ul > li > a {
	position: relative;
	height: 100px;
	display: flex;
	align-items: center;
	font-size: 1.9rem;
	color: #fff;
	z-index: 10000;
	transition: 0.3s all linear;
}
.gnbPC .gnbArea > ul > li:hover > a {
	color:transparent;
	background: linear-gradient(125deg, #00A550 0%, #3257DB 100%);
	background-clip:text;
	-webkit-background-clip:text;
}
.gnbPC .subGnb{
	display: none;
	position: absolute;
	top: 90px;left: 50%;
	transform: translateX(-50%);
	width: max-content;
	padding: 2rem 5.6rem;
	background: linear-gradient(125deg,rgba(35, 84, 191, 1) 0%, rgba(32, 60, 146, 1) 100%);
	border-radius: 2rem;
	-webkit-border-radius: 1.2rem;
	z-index: 10001;
}
.gnbPC .subGnb .dept2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.gnbPC .subGnb .dept2 > li {
	min-height: 3.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.gnbPC .subGnb .dept2 > li > a {
	display: block;
	font-size: 1.5rem;
	font-weight: 400;
	color: #dee9ff;
}
.gnbPC .subGnb .dept2 > li > a:hover {color: #fff;}
.gnb_bg{
	display:none;
	position:fixed;
	inset:0;
	background: rgba(0,0,0,0.2);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index:9998;
}
.openM,
.gnbhead,
.gnbMobile,
#header .topMobile, 
#header .middleMobile {display:none;}

@media all and (max-width:1400px){
	#header {padding: 0 3%;}
	.gnbPC .gnbArea > ul {gap: 6rem;}
	.gnbPC .gnbArea > ul > li > a {font-size: 1.7rem;}
}
@media all and (max-width:1024px){
	.gnbArea h1.logo,
	.gnbArea, .gnbPC {display: none;}
	.gnbhead, .gnbMobile {display: block;}
	#header .topMobile, 
	#header .middleMobile {display: block;}
	
	/* mobile네비 */
	#header {height: auto;}
	#header .middleMobile {
		position: relative;
		padding: 2rem 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	#header .middleMobile > div {
		display: flex;
		align-items: center;
		gap: 0.6rem;
	}
	#header .middleMobile .openM {
		display: inline-block;
		width: 24px;
	}
	#header .middleMobile .logoM img{width: 28rem;}
	#header a.link_btn {
		display: inline-flex;
		align-items: center;
		gap: 0.4rem;
		padding: 4px 12px 4px 6px;
		color: #f8f8f8;
		font-size: 1.3rem;
		background:rgba(0,0,0,0.05);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		border-radius: 99rem;
	}
	#header a.link_btn:hover{background:rgba(0,0,0,0.1);}
	#header a.link_btn i.ico{
		display:block;
		width: 2rem;height:2rem;
		border-radius: 99rem;
	}
	#header a.link_btn i.ico.kor{
		background-color: #fff;
		background-image: url('/images/uimc/eng/common/icon_flag.svg');
		background-position:center center;
		background-repeat:no-repeat;
		background-size:18px;
	}
		
	.gnbhead {
		padding: 2rem 3%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		background: #fff;
		border-bottom: 1px solid #D6E0EB;
		overflow: hidden;
	}	
	.gnbhead > div {
		display: flex;
		align-items: center;
		gap: 0.6rem;
	}
	.gnbhead a {display:inline-block;}
	.gnbhead a.closeM {float:right;width: 24px;}
	.gnbhead a.sloganM img{width: 28rem;}
	.gnbhead a.link_btn {color: #111 !important;}
	.gnbhead ul {overflow:hidden;}
	.gnbhead ul li {
		float:left;
		width:50%;
		background: #fff;
		border-bottom: 1px solid #D6E0EB;
	}		
	.gnbhead ul li a {display: block;}
	.gnbMobile .dept1 > li {background: #fff;}
	.gnbMobile .dept1 > li > a {
		position: relative;
		display: block;
		padding: 1.6rem 2rem;
		font-size: 1.6rem;
		font-weight: 500;
		color: #111;
		border-bottom: 1px solid #D6E0EB;
	}
	.gnbMobile .dept1 > li:hover > a {
		color:transparent;
		background: linear-gradient(90deg,rgba(46, 48, 145, 1) 0%, rgba(0, 165, 80, 1) 100%);
		background-clip:text;
		-webkit-background-clip:text;
	}	
	.gnbMobile .dept1 > li:has(.subGnb) > a::after{
		content:"";
		position:absolute;
		right:16px;top:16px;
		display:block;
		width:24px;height:24px;
		background:url('/images/uimc/eng/common/icon_gnb_arrow.svg');
		background-size:24px;
		background-position:center center;
		background-repeat:no-repeat;
		transform:rotate(0deg);
		transition: 0.2s all linear;
	}
	.gnbMobile .dept1 > li.active > a::after{transform:rotate(-180deg);}
	.gnbMobile .dept2 {
		padding: 2rem 0;
		background-color: #F1F3F8;
		border-bottom: 1px solid #D6E0EB;
	}
	.gnbMobile .dept2 > li > a {
		position: relative;
		display: block;
		padding: 0.8rem 2rem;
		font-size: 1.4rem;
		font-weight: 500;
		color: #131416;
	}
	.gnbMobile .dept2 > li > a img{padding-top: 5px;}
	.gnbMobile .dept2 {display:none;}
	.gnbArea.open {
		display: block;
		position: fixed;
		top: 0;left: 0;
		width: 100%;height: 100%;
		background: rgba(0,0,0,0.05);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		overflow-y: auto;
		z-index:300;
	}
}

@media all and (max-width: 768px){
	#header .middleMobile .logoM img,
	.gnbhead a.sloganM img {width: 26rem;}
}

/* footer */
footer {
	position: relative;
	width: 100%;
	background: #161B2C;
	overflow: hidden;
}
.foot_cont {
	width: 100%;max-width: 1400px;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;padding: 5.2rem 0;
	color: #fff;
}
.foot_cont > .logo{
	width: 36rem;height: 3.2rem;
	background: url('/images/uimc/eng/common/logo_footer.svg') no-repeat 0 0;
	background-size: contain;
	font-size: 0;
	text-indent: -999rem;
}
.foot_cont > .info {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}
.foot_cont > .info > div {
	display: flex;
	align-items: center;
	gap: 1.6rem;
}
.foot_cont > .info p,
.foot_cont > .info address{
	display: flex;
	gap: 0.8rem;
	font-size: clamp(1.3rem, 1.2rem + 0.2vw, 1.5rem);
	color: #fff;
	word-break: keep-all;
}
.foot_cont > .info span,
.foot_cont > .info .copy {color: #B1B8BE;}
.foot_cont > .info .copy {font-size: clamp(1.2rem, 1.1rem + 0.2vw, 1.4rem);} 

@media all and (max-width: 1400px){
	.foot_cont{padding: 4rem 4% }
	.foot_cont > .logo {display: none;}
}
@media all and (max-width: 1024px){	
	.foot_cont > .info > div {
		flex-direction: column;
		align-items: inherit;
		gap: 0;
	}	
}
@media all and (max-width: 768px){	
	.foot_cont > .logo {width: 28rem;height: 2.4rem;}
}


