

/* style css */
body, html {
	!overflow-x:hidden;
	min-width:1440px
}
/*html {*/
/*	scroll-behavior: smooth;*/
/*}*/
html {
	position:relative;
	height: 100vh;
}

body {
	width: 100vw !important;
	position:absolute;
	overflow-y:auto;
	overflow-x: hidden;
}

body.open {
	!animation:body-ani 1s 10ms ease-in-out;
}

@keyframes body-ani {
	0% {
		transform:translateY(-100px);
		clip:rect(0,50vw,100vh,50vw);
		opacity: 0;
	}
	100% {
		transform:translateY(0);
		clip:rect(0,100vw,100vh,0);
		opacity: 1;
	}
}

::selection {
   background: #5ea9ea;
   color: #fff
}

::-moz-selection {
   background: #5ea9ea;
   color: #fff
}


::-webkit-selection {
    background: #5ea9ea;
   color: #fff
}


.flex {
	display: -webkit-flex;
	display: flex
}

.flex-v {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center; 
	align-items: center
}

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: 9999;
	height: 100px;
	border-bottom:1px solid rgba(213, 213, 213, .5);
	background-color:#fff;
	transition: all 400ms;
	min-width:1440px;
}

.header.up {
	top: -100px;
}

.header .row {
	position:relative;
	max-width:1760px;
	height: 100%;
	justify-content: space-between;
}

/* 220210 minhyuk */
.header.active {
	
}

.header .logo {
	
}

.header .logo img {
	
}

.header .nav {
	position:absolute;
	left: 50%;
	transform:translate(-50%, 0);
}

.header .nav li {
	width: 120px;
	text-align:center;
}

.header .nav li:last-child {
	width: 150px;
}

.header .nav li a {
	color:#3d4a5e;
	font-family:'NotoSansKR-Bold';
}

.header .nav li a:hover {
	color:#3baced;
}

.header .drop-menu {
	display:none; 
	position:absolute;
	background-color: rgba(59, 172, 237, 1);
	width: 100%;
	top: 100px;
	left: 0;
	padding: 30px 0;
	height: 315px;
}

.header .drop-menu .drop {
	position:absolute;
	z-index: 998;
	left: 50%;
	transform:translate(-50%, 0);
	font-size:15px;
	width: 630px;
	display: flex
}

.header .drop-menu .drop > li {
	width: 120px;
	text-align:center;
}

.header .drop-menu .drop > li:last-child {
	width: 150px;
}

.header .drop-menu .drop > li a {
	color:#fff;
	
}

.header .drop-menu .drop > li a:hover {
	/* color:#71c5e8; */
	font-weight: bold;
}

.header .drop-menu .sub-menu > li {
	margin-bottom: 14px;
	letter-spacing:-1px
}
.header_drop_text {
	position: absolute;
	top: 30px;
	left: 5.5%;
}
.icon-box {
	position:fixed;
	right: 0;
	z-index: 9997;
	top: 100px;
	transition:all 300ms;
}

.icon-box.up {
	top: 0;
}




.header .right-zone {
	/* margin-left: auto; */
	order: 2;
}

.header .menu-btn {
	margin-left: 40px;
	cursor:pointer;
}

.header .menu-btn span {
	display:block;
	height: 3px;
	width: 30px;
	background-color:#353535;
	margin: 8px 0;
	transition: all 400ms;
}

.header .menu-btn:hover span:nth-child(2){
  opacity: 0;
}

.header .menu-btn:hover span:nth-child(1){
  transform: translateY(11px);
  background-color:#890011;
}

.header .menu-btn:hover span:nth-child(3){
  transform: translateY(-11px) rotate(90deg);
  background-color:#890011;
}

.nav-wrap {
	position:fixed;
	right: -40vw;
	bottom: 0;
	top: 0;
	height: 100vh;
	width: 40vw;
	background-image:url('../img/manu_bg.jpg');
	background-size:cover;
	z-index: 99999;
	padding-left: 60px;
	transition: all 700ms;
}

.nav-wrap  .close-btn {
	position:absolute;
	right: 40px;
	top: 40px;
	cursor:pointer;
}

.nav-wrap.open {
	right: 0;
}

.nav-wrap .inner {
	flex-wrap: wrap;
}

.nav-wrap .title {
	margin-bottom: 100px;
}

.nav-wrap .menu-list > li {
	display:flex;
	margin-bottom: 30px;
}

.nav-wrap .menu-list > li:last-child {
	margin-bottom: 0;
}

.nav-wrap .menu-list li > a,
.nav-wrap .menu-list li > span a {
	font-family:'NotoSansKR-Light';
	color:#fff;
}

.nav-wrap .menu-list li > a,
.nav-wrap .menu-list > li > .wrap > .sub-title {
	display:inline-block;
	cursor:pointer;
	padding-right: 40px;
	font-size:25px;
}

.nav-wrap .menu-list > li > .wrap  {
	display:flex;
}

.nav-wrap .menu-list > li > span {

}

.nav-wrap .menu-list > li .sub-list {
	visibility:hidden;
	opacity: 0;
	transition:all 400ms;
}



.nav-wrap .menu-list li span:hover,
.nav-wrap .menu-list li .sub-title  {
	font-family:'NotoSansKR-Medium';
	color:#fff;
}


.nav-wrap .menu-list > li .sub-list:hover,
.nav-wrap .menu-list > li span:hover + .sub-list {
	visibility:visible;
	opacity: 1;
}


.nav-wrap .menu-list > li .sub-list a:after {
	content:'';
	display:inline-block;
	width: 1px;
	height: 14px;
	margin-left: 40px;
	vertical-align:middle;
	margin-top: -5px;
	background-color:#fff;
}

.nav-wrap .menu-list > li .sub-list a:last-child:after {
	content:none;
}

.nav-wrap .menu-list > li a:hover {
	font-family:'NotoSansKR-Medium' !important;
}

.nav-wrap .menu-list > li .sub-list a {
	display:inline-block;
	font-size:14px;
	font-family:'NotoSansKR-Light';
	margin-right: 40px;
	color:#fff;
}


.bg-black {
	display: none;
	position:fixed;
	left: -100vw;
	bottom: 0;
	top: 0;
	height: 100vh;
	width: 100vw;
	background-color:rgba(0,0,0,.6);
	background-size:cover;
	z-index: 99998;
	transition: all 700ms;
}

.bg-black.open {
	left: 0;
	display: block !important;
	opacity: 1 !important;
}

.footer {
	background-color:#181818;
	padding: 60px 20px;
	text-align:center;
}

.ready {
	cursor: pointer;
}


@media(max-width:1024px) {
	.m-menu-btn {
		margin-top: 10px;
		background-image:url('../img/m/m_menu_btn.png');
		display:inline-block;
		width: 50px;
		height: 35px;
	}

	.m-menu-btn.active {
		background-image:url('../img/m/m_close_btn.png');
		width: 40px;
		height: 40px;
	}

	.right_wingbanner {

	}

	.side-menu {
		width: 460px;
		height: 100%;
		background-color:#5ea9ea;
		position:fixed;
		top: 125px;
		left: -460px;
		z-index: 1005;
		-webkit-transition-duration: 300ms;
		transition-duration: 300ms;
		-webkit-transform: translate3d(0,0,0);
		-moz-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0);
	}

	.side-menu.open {
		-webkit-transform: translate3d(460px,0,0);
		-moz-transform: translate3d(460px,0,0);
		transform: translate3d(460px,0,0);
		height: 100%;
		overflow: scroll;
	}

	.side-menu .side-menu-in > li {
		font-size:30px;
		padding: 10px;
		padding-left:35px;
		font-weight:bold;
		position:relative;
		border-bottom:1px solid #d5d5d5
	}

	.side-menu .side-menu-in > li .arrow {
		position:absolute;
		top: 16px;
		right: 20px;
		font-size:25px;
		transition:all 300ms;
		font-weight:normal;
		width: 24px;
	}

	.side-menu .side-menu-in > li.active .arrow {
		transform:rotate(180deg);
	}

	.side-menu .side-menu-in > li a {
		color: #fff;
	}

	.side-menu .sub-menu {
		display:none;
		background-color:#191919;
		font-size:28px;
	}

	.side-menu .sub-menu li {
		
	}

	.side-menu .sub-menu li:last-child {
		margin-bottom: 0;
	}

	.side-menu .sub-menu li a {
		display:block;
		color:#fff;
		padding: 10px;
		padding-left: 46px;
		font-size: 23px;
	}

	.side-menu .sub-menu li a.active {
		font-weight:bold;
	}

	.bg-black {
		display:none;
		position:fixed;
		z-index: 1000;
		top: 125px;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		height: 100%;
		background-color:rgba(0,0,0,0.7);
	}

	.bg-black.active {
		display:block;
	}
}



@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) {

	


}