/* style css */
body, html {
	overflow-x:hidden;
	min-width:1280px
}

img {
	-webkit-user-drag: none;
}

::selection {
   background: #db4100;
   color: #fff
}

::-moz-selection {
   background: #db4100;
   color: #fff
}

::-webkit-selection {
    background: #db4100;
   color: #fff
}

body, html {
	
}

body {
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
	user-select:none;
	-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: 999998;
	transition:all 300ms ease-in-out;
	min-width:1280px;
	background-color:#fff;
	height: 90px;
}

.header .row {
	position:relative;
	display:flex;
	align-items:center;
	justify-content: space-between;
	height: 100%;
	padding: 0 100px;
	max-width: 1920px;
	margin: auto;
}

.header .nav_wrap {
	height: 100%;
} 

.header .nav {
	display:flex;
	height: 100%;
}

.header .right_box {
	display:flex;
	align-items:center;
	height: 100%;
}

.header .nav li {
	width: 120px;
	text-align:center;
	height: 100%;
	line-height: 100px;
}

.header .nav li.bb {
	width: 160px;
}

.header .nav li a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family:'NotoSansKR-Medium';
	letter-spacing:-0.5px;
	font-size: 20px;
	width: 100%;
	height: 100%;
	color: #0d0d0d;
}

.header .nav li.bb a {
	font-family:'NotoSansKR-Bold';
	color: #db4100;
}

.header .nav li.app a {
	color: #892307;
}

.header .nav li p {
	display: inline-block;
	font-style: italic;
}

.header .nav li a::after {
	content: "";
	position: absolute;
    width: 0;
    height: 3px;
    background: #0d0d0d;
    top: 87px;
    left: 50%;
    transform: translateX(-50%);
	backface-visibility: hidden;
    opacity: 0;
	transition: all 200ms ease-in-out;
}

.header .nav li.bb a::after {
	background: #db4100;
}

.header .nav li.app a::after {
	background: #892307;
}

.header .nav li.on a::after,
.header .nav li a:hover::after {
	width: 70%;
	backface-visibility: visible;
    opacity: 1;
}

.right_wingbanner {
	position:fixed;
	top: 235px;
	left: 50%;
	margin-left: 420px;
	transition: all .4s ease-in-out;
	z-index: 999998;
	cursor: pointer;
}

.footer {
	padding: 40px 0 50px;
	text-align:center;
	background-color:#fff;
	color: #5f5f5f;
	font-family:'NotoSansKR-Medium';
	font-size: 20px;
	letter-spacing: -1px;
}

.footer p {
	margin-top: 30px;
}

.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
	}
}

@media(max-width:575px) {

}