@charset "utf-8";

/* =================================
   COLOR
================================= */
:root {
	--main-color: #00c8d7;
	--sub-color: #0065c3;
	--dark-color: #071936;
}

/* =================================
   RESET
================================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 16px;
}

body {
	font-family: "Pretendard", "Noto Sans KR", Arial, sans-serif;
	color: #222;
	line-height: 1.5;
	letter-spacing: -0.04em;
	font-size: 18px;
	word-break: keep-all;
}

ul, ol {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	display: block;
	max-width: 100%;
}

button, input, textarea, select {
	font-family: inherit;
	border: 0;
	background: none;
}

button {
	cursor: pointer;
}

/* =================================
   LAYOUT
================================= */
.inner {
	width: 1410px;
	max-width: calc(100% - 40px);
	margin: 0 auto;
}

/* =================================
   HEADER
================================= */
.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 90px;
	z-index: 100;
	color: #fff;
}

.header .inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* LOGO */
.logo {
	line-height: 0;
}

.logo img {
	width: 150px;
}

/* =================================
   GNB
================================= */
.gnb {
	height: 100%;
}

.gnb>ul {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 70px;
}

.gnb>ul>li {
	position: relative;
}

.gnb>ul>li>a {
	display: block;
	padding: 30px 0;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	transition: .3s;
}

.gnb>ul>li>a:hover {
	background: linear-gradient(90deg, var(--main-color), var(--sub-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.gnb>ul>li.active>a {
	background: linear-gradient(90deg, var(--main-color), var(--sub-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.gnb>ul>li>a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 18px;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--main-color), var(--sub-color));
	transform: translateX(-50%);
	transition: 0.3s;
}

.gnb>ul>li:hover>a::after {
	width: 100%;
}

/* =================================
   SUB VISUAL
================================= */
.sub-visual {
	position: relative;
	height: 450px;
	overflow: hidden;
}

.sub-visual .visual-bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.visual-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	text-align: center;
}

.visual-title span {
	display: block;
	font-size: 16px;
	letter-spacing: .15em;
	margin-bottom: 15px;
}

.visual-title h2 {
	font-size: 52px;
	font-weight: 700;
}

/* =================================
   SECTION COMMON
================================= */
.section {
	padding: 100px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
}

.section-title h3 {
	font-size: 38px;
}

.section-title p {
	margin-top: 15px;
	color: #777;
	font-size: 17px;
}

/* =================================
   BUTTON
================================= */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0 35px;
	border-radius: 4px;
	font-size: 15px;
	transition: .3s;
}

.btn:hover {
	transform: translateY(-2px);
}

/* =================================
   FOOTER
================================= */
.footer {
	background: #050505;
	color: #fff;
	padding: 40px 0;
}

.footer .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-logo img {
	width: 130px;
}

.footer-info {
	color: #aaa;
	font-size: 14px;
}

.footer-copy {
	color: #777;
	font-size: 12px;
}

.footer .inner p span {
	margin-left: 15px;
}

/* =================================
   TITLE LINE
================================= */
h4.line {
	font-size: 22px;
	margin-bottom: 28px;
	position: relative;
}

h4.line:after {
	height: 1px;
	background: #000;
	display: inline-block;
	content: "";
	width: 80%;
	top: 14px;
	right: 0;
	margin-left: 20px;
}

/* =================================
   TABLET
================================= */
@media ( max-width :1024px) {
	.inner {
		max-width: calc(100% - 30px);
	}
	.gnb>ul {
		gap: 35px;
	}
	.gnb>ul>li>a {
		font-size: 16px;
	}
}

/* =================================
   MOBILE
================================= */
@media ( max-width :768px) {
	html, body {
		width: 100%;
		overflow-x: hidden;
	}
	body {
		font-size: 16px;
	}
	.header {
		height: 65px;
	}
	.header .inner {
		padding: 0 15px;
	}
	.logo img {
		width: 110px;
	}

	/* 모바일 메뉴 유지 */
	.gnb {
		display: block;
		height: auto;
	}
	.gnb>ul {
		height: auto;
		gap: 12px;
	}
	.gnb>ul>li>a {
		padding: 10px 0;
		font-size: 11px;
		white-space: nowrap;
	}
	.gnb>ul>li>a::after {
		display: none;
	}
	.sub-visual {
		height: 260px;
	}
	.visual-title h2 {
		font-size: 36px;
	}
	.footer .inner {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
	.footer-info {
		font-size: 13px;
	}
	.footer-copy {
		font-size: 11px;
	}
}

/* PC */
.mobile-btn {
	display: none;
}

/* Mobile */
@media ( max-width :768px) {
	.gnb {
		display: none;
	}
	.mobile-btn {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 6px;
		width: 40px;
		height: 40px;
		background: none;
		border: 0;
		cursor: pointer;
	}
	.mobile-btn span {
		width: 24px;
		height: 2px;
		background: #fff;
		border-radius: 2px;
		transition: .3s;
	}
	section.sub-visual img {
		width: auto;
		text-align: center;
		height: 300px;
	}
	.foot_link {
		display: block;
	}
	p.file-info {
		margin-left: 0;
	}
}

.mobile-menu {
	position: fixed;
	top: 0;
	right: -280px;
	width: 280px;
	height: 100%;
	background: #071936;
	z-index: 9999;
	transition: .35s;
	padding-top: 80px;
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu ul {
	display: flex;
	flex-direction: column;
}

.mobile-menu li {
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-menu a {
	display: block;
	padding: 18px 30px;
	color: #fff;
	font-size: 18px;
}

.mobile-menu a:hover {
	background: #0d294d;
}

.mobile-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	font-size: 32px;
	color: #fff;
	background: none;
	border: 0;
	cursor: pointer;
}

.foot_link {
	color: #02cafc;
	margin-right: 10px;
}

/* map  */
.map-container {
	width: 100%;
}

#map {
    width: 100%;
    max-height: 400px;
    border-radius: 4px;   
}