/* style css */
body, html {
	overflow-x:hidden;
	min-width:1280px;
	 user-select:none;
}

img {
	-webkit-user-drag: none;
}

::selection {
   background: #0081cc;
   color: #fff
}

::-moz-selection {
   background: #0081cc;
	color: #fff
}

::-webkit-selection {
	background: #0081cc;
	color: #fff
}

body, html {
	
}

body {
	-webkit-font-smoothing: antialiased;
	color:#333;
}

.row {
	padding: 0 20px;
	margin: auto
}
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 999999;
	transition: all 300ms ease-in-out;
	background-color: #ffffff;
	height: 100px;
	border-bottom: 1px solid #c9d2d9;
	min-width: auto;
	width: 100%;
}

.header .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	padding: 0 5%;
}

.header .logo img {
	max-height: 50px;
	height: auto;
	width: auto;
}

.header .nav {
	display: flex;
	gap: 30px;
	position: relative;
}

.header .nav li {
	text-align: center;
}

.header .nav li a {
	font-family: 'NotoSansKR-Regular';
	letter-spacing: -1px;
	color: #1a1a1a;
	font-size: 16px;
	white-space: nowrap;
}

.header .right_box {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header .nav li {
	width: 120px;
	text-align:center;
	height: 100%;
	line-height:80px;
}

.header .nav li a {
	font-family:'NotoSansKR-Regular';
	letter-spacing:-1px;
	color: #1a1a1a;
	font-size: 17px;
}

.header .nav li.on a,
.header .nav li a:hover {
	color:#0081cc;
	font-family:'NotoSansKR-Medium';
}

.header .drop_menu {
	display: none;
	position: absolute;
	background-color: rgba(255, 255, 255, .9);
	width: 100%;
	top: 100px;
	left: 0;
	padding: 30px 0;
	border-bottom: 1px solid #e5e5e5;
	display: flex;
	justify-content: flex-end;
	padding-right: calc(5% + 190px);
	box-sizing: border-box;
}

.header .drop_menu .drop {
	display: flex;
	gap: 20px;
	font-size: 15px;
}



.header .drop_menu .drop > li {
	width: 130px;
	text-align:center;
}

.header .drop_menu .drop > li a {
	color: #0a1b2f;
}

.header .drop_menu .drop > li a:hover {
	font-family:'NotoSansKR-Bold';
}

.header .drop_menu .sub_menu > li {
	margin-bottom: 15px;
	letter-spacing: -1px;
}

.header .tel {
	margin-left: 20px;
}

.footer {
	padding: 60px 0;
	text-align:center;
	background-color:#2e2e2e;
	color: #fff;
	position: relative;
}

.footer .cp_info {
	font-size: 16px;
	font-family:'NotoSansKR-Regular';
	margin-top: 20px;
}

.footer .cp_info img {
	margin-left: 5px;
	margin-right: 10px;
}

.footer .cp_info span {
	font-size: 14px;
	font-family:'Roboto-Bold';
}

.footer .cp_info p {
	display: inline-block;
	font-family:'Roboto-Bold';
	font-size: 18px;
}

.footer .cp_info_plus {
	font-size: 16px;
	font-family:'NotoSansKR-Regular';
	margin-bottom: 10px;
}

.footer .cp_info_plus p {
	color: #8e8e8e;
	display: inline-block;
}

.footer .cp_info_plus span {
	margin: 0 10px;
}

.footer .pharases {
	font-family:'Montserrat-Regular';
	font-size: 16px;
	color: #d6d6d6;
}

.back-top {
	position:absolute;
	bottom: 80px;
	right: 90px;
	cursor:pointer;
	z-index: 999999;
}

.video-container {
    position: relative;
    padding-bottom: 53.5%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media(min-width:992px) {
	.pc {
		display:block !important
	}

	.mobile {
		display:none !important
	}
}

@media(max-width:991px) {
	.pc {
		display:none !important
	}

	.mobile {
		display:block !important
	}
}


/* ===== 25.09.18. 헤더 반응형 미디어쿼리 ===== */
@media screen and (max-width: 1024px) {
	.header .row {
		padding: 0 20px;
	}
	.header .nav li a {
		font-size: 15px;
	}
}

