@import url("/templates/global.css");
@font-face {
	font-family: 'Source Sans Pro';
	src: url('sourcesanspro.woff2');
}

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+KR&display=swap');

body {
	background-color: #fff;
}

.t-primary-bgcolor {
	background-color: #20231D;
}

a {
	color: #00295b;
}

.header {
	width: 100%;
}

.header__top {
	padding: 14.4px 19.2px;
	background-color: #f1f1f1;
	height: 62.39px;
	text-align: right;
	font-size: 16px;
}

.header__top a {
	margin-right: 59.2px;
	font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
	line-height: 22px;
	margin-top: 8px;
	display: inline-block;
}

.header__top a:hover {
	text-decoration: none;
	color: #138de0;
}

.header__main {
	padding: 10px 20px 2px;
	display: flex;
	justify-content: space-between;
	margin-bottom: 45.2px;
}

.header__nav {
	font-size: 11.7px;
}

.header__nav a {
	display: inline-block;
	font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
	line-height: 28px;
	padding: 15px 20px 17px;
	font-size: 18px;
}

.header__nav a:last-of-type {
	color: #666666;
	font-size: 19.81px;
	padding: 15px 20px 17px 40px;
	margin-left: 53.59px;
	border-left: 1px solid #cfcfcf;
}

.header__nav a:hover {
	color: #138de0;
	text-decoration: none;
}

.header__after {
	width: 100%;
	height: 200px;
	background-image: url('bg-overlay.png'), url('header-bg.png');
	background-size: 100% 102%, cover;
	background-position: center -2px, center 30%;
	padding: 81px 50px 0;
}

.header__after p {
	color: lightgray;
	font-size: 17px;
	font-family: 'IBM Plex Sans KR', sans-serif;
	font-weight: 400;
	letter-spacing: 0.5px;
	position: relative;
	height: 53px;
}

.header__after p::after {
	content: '';
	width: 60px;
	height: 6px;
	background-color: #138de0;
	border-radius: 3px;
	position: absolute;
	bottom: 0;
	left: 0;
}

@media (max-width: 1295.9px) {
	.header__nav a:last-of-type {
		display: none;
	}
}

@media (max-width: 1199.9px) {

	.header__top,
	.header__nav,
	.header__after p {
		display: none;
	}

	.header__main {
		justify-content: center;
		margin-bottom: 27.58px;
	}

	.header__after {
		background-image: url('header-bg.png');
		background-size: cover;
		background-position: center 30%;
	}
}