@charset "UTF-8";

.header {
	position: fixed;
	width: 100%;
	border-bottom: 1px solid #EFEFEF;
	box-sizing: border-box;
	z-index: 3;
}

.logo {
	cursor: pointer;
}

.header-container {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#desktop-nav ul {
	list-style: none;
	position: absolute;
}

#desktop-nav ul li {
	display: inline-block;
	padding: 0px 180px 0px 0px;
	text-align: center;
	float: left;
}

#desktop-nav ul li a:hover {
	font-weight: 600;
	color: #034588;
}

#desktop-nav ul li a.active {
	font-weight: 600;
	color: #034588;
	border-bottom: 3px solid #034588;
}

.language {
	width: 80px;
	height: 28px;
	border: none;
	border-radius: 14px;
	font-size: 13px;
	font-family: 'NotoSansKR', sans-serif;
	font-weight: 400;
	color: #FFF;
	background-color: #20B1B2;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.header ul li a {
	display: block;
	text-align: center;
	font-family: 'NotoSansKR', sans-serif;
	text-decoration: none;
	cursor: pointer;
}

.header ul li.on a {
	font-weight: 600;
}

.content {
	position: relative;
}
