/* style css */
body {
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none
}

body, html {
	overflow-x:hidden;
	min-width:1280px
}

img {
	-webkit-user-drag: none;
}

::selection {
   background: #004A68;
   color: #fff
}

::-moz-selection {
   background: #004A68;
   color: #fff
}


::-webkit-selection {
    background: #004A68;
   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;
	min-width:1280px;
	height: 100px;
}

.header .row {
	position:relative;
	display:flex;
	align-items:center;
	justify-content: space-between;
	height: 100%;
	padding: 0 220px 0 100px;
}

.header:hover, .header.w {
	background-color: #fff;
	!border-bottom: 1px solid #fbdebb;
}

.header:hover .nav li a, 
.header.w .nav li a {
	color: #000;
}

.header .logo {
	background-image: url("../img/logo_img.png");
	background-size: 100%;
	display: inline-block;
	height: 48px;
	width: 236px;
	text-indent: -9999px;
}

.header:hover .logo, .header.w .logo {
	background-image: url("../img/logo_img_over.png");
}

.header .nav {
	display:flex;
	margin-right: 20px;
	/*position:absolute;
	left: 50%;
	transform:translate(-50%, 0);*/
}

.header .right_box {
	display:flex;
	align-items:center;
	height: 100%;
}

.header .nav li {
	width: 120px;
	text-align:center;
	height: 100%;
	line-height:100px;
	position:relative;
}

.header .nav li::before {
	content:'';
	display:block;
	position:absolute;
	width: 2px;
	height: 10px;
	background-color:#e2e2e2;
	top: 50%;
	right: 0;
	transform:translateY(-50%);
}

.header .nav li:last-child::before {
	display:none;
}

.header .nav li a {
	font-family:'KOAROOOTFMedium';
	letter-spacing:-1px;
	color: #fff;
}

.header .nav li.on a,
.header .nav li a:hover {
	color:#004A68;
}

.header .drop_menu {
	display:none; 
	position:absolute;
	background-color: #086083;
	width: 100%;
	top: 100px;
	left: 0;
	padding: 30px 0;
	height: 250px;
}

.header .drop_menu .drop {
	position:absolute;
	z-index: 998;
	right: 480px;
	font-size:15px;
	display: flex;
}

.header .drop_menu .drop > li {
	width: 120px;
	text-align:center;
}

.header .drop_menu .drop > li a {
	color:#fff;
}

.header .drop_menu .drop > li a:hover {
	font-weight: bold;
	color: #2c98a2;
}

.header .drop_menu .sub_menu > li {
	margin-bottom: 15px;
	letter-spacing:-1px
}

.header .tel {
	height: 40px;
	width: 221px;
	display:inline-block;
	background-image: url("../img/tel_img.png");
	margin-left: 20px;
	text-indent: -9999px;
}

.header:hover .tel, .header.w .tel {
	background-image: url("../img/tel_img_over.png");
}

.open_btn {
    position: fixed;
    top: 0;
    right: 50px;
	width: 130px;
	z-index: 9999999;
}

.open_btn .light {
	position:absolute;
	width: 100%;
	height: 200px;
	top: 0;
	left: 0;
	right: 0;
	background-image:url('../img/light.png?new');
	animation: moving 3.5s ease-out infinite;
}

@keyframes moving {
	0% {
		background-position: 100% 100%;
	}
	100% {
		background-position: 0% 0%;
	}
}

.footer {
	padding: 60px 0;
	text-align:center;
	background-color:#fff;
	color:#b7b7b7;
	font-size:14px;
	font-family:'NotoSansKR-Medium'; 
}

.footer .l_info {
	margin-bottom: 40px;
}

.footer .c_info {
	margin-bottom: 20px;
	font-size:15px;
	color:#7c7c7c;
}

.footer .phara {
	line-height: 1.7;
	width: 886px;
	margin: 0 auto;
	font-family:'KOAROOOTFLight';
	word-break: break-word;
	font-size: 10px;
}

.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(max-width:1440px) {

	.header .row {
		padding: 0 150px 0 50px ;
	}
	
	.open_btn {
		right: 0;
	}

	.header .nav {
		margin-right: 10px;
	}

	.header .drop_menu .drop {
		right: 400px;
	}
}	


@media(min-width:992px) {
	.pc {
		display:block !important
	}

	.mobile {
		display:none !important
	}
}

@media(max-width:991px) {

	.pc {
		display:none !important
	}

	.mobile {
		display:block !important
	}

	

}

@media(max-width:575px) {

	


}