.kso-sticky {
	height: 60px;
}
.kso-sticky.sticked .header {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header {
	position: relative;
	height: 90px;
	overflow: hidden;
	transition: all 0.3s ease;
	z-index: 11;
}
.header-right,
.header .logo {
	position: absolute;
	top: 0;
}
.header-right {
	right: 0;
}
.header-right .lang {
	list-style: none;
	line-height: 60px;
}
.header-right .lang a  {
	color: #888;
}
.header-right .lang .active a  {
	color: #111;
}
.header-right .lang a.line:before {
	content: '';
	position: absolute;
	left: -12px;
	top: 3px;
	width: 1px;
	height: 12px;
	background-color: #ddd;
}
.header-right .icon-btn {
	width: 40px;
	height: 60px; 
	border: none;
	background-color: transparent;
}
.header-right .open-menu-btn,
.header .main-menu .head {
	display: none;
}




.header #gnb > li{
	display:block;
	position: relative;
	width: auto;
    transition: all 0.3s ease;		
}

#gnb > li > a {
	display: block;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 60px;
	text-align: center;
	color: #414141;
	transition: all .3s ease;
}
#gnb > li > .depth2 {
	height: calc( 100% - 90px );
	border-left: 1px solid #ddd;
}
#gnb > li:first-child > .depth2 {
	border-left: 0;
}
#gnb > li > .depth2 > ul{
	position:relative;
	width: auto;
	height: 100%;
    padding: 30px 0;	
    transition: all 0.3s ease; 
}
#gnb > li > .depth2 > ul > li a {
	display:block;
	margin-bottom: 1rem;
	padding-left: 1rem;
	min-width:100px;
	font-size: 1rem;
	line-height: 1.4;
	letter-spacing: -.9px;
	color: #333;
	white-space: nowrap;
	transition: all .3s ease;
}
#gnbBg {
	position:absolute;
	left:0;
	top: 60px;
	width:100%;
	height: 0;
	border-top: 1px solid transparent;
	transition: border 0.5s ease;
	z-index: 2;
}

.header.on #gnbBg {
	border-top: 1px solid #ddd;
}
#gnb > li > .depth2 > ul.on {
	visibility: visible;
	opacity: 1;
}
.gnb-bg {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);  
    transition: all ease .3s;      
    opacity: 0;
    z-index: -1;
}
 

/*modal*/
.modal.modal-search {

}
.modal-search .modal-dialog {
	margin: 0;
}
.modal-search .modal-content {
	background-color: rgba(0, 0, 0, .7);
}
.modal-search .btn-close {
	opacity: 1;
	cursor: pointer;
}
.modal-search input::placeholder {
	color: rgba(255, 255, 255, .7);
}

/*---------------------------------------------------
*
* media quary
*
---------------------------------------------------*/
@media(min-width: 576px) {
	.modal-search .modal-dialog {
		max-width: 100%;
	}
}
@media(min-width: 992px) {
	.header-right, .header .logo {
		margin: 0;
	}
}
@media(min-width: 1200px) {
	.header-right, .header .logo {
		margin: 15px 0;
	}
	#gnb > li > a {
		line-height: 90px;
	}
	#gnbBg {
		top: 90px;
	}
	.gnb-bg.on {
	    opacity: 1;
	    z-index: 9;
	}   	
}

@media(max-width: 1199px) {	
	.header,
	.kso-sticky {height: 60px !important;}

	.header .open-menu-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 60px;
		position: relative;
		background-color: transparent;
		border: none;
		cursor: pointer;
	}
	.header .open-menu-btn .line {
		position: absolute;
		width: 20px;
		height: 2px;
		background-color: rgba(0, 0, 0, 1);
	}
	.header .open-menu-btn .line-1 {
		transform: translateY(-6px);
	}
	.header .open-menu-btn .line-3 {
		transform: translateY(6px);
	}	

	.header .main-menu {
		position: fixed;
		right: 0;
		top: 0;
		padding: 15px 0 30px;
		width: 300px;
		height: 100%;
		background-color: #2b313b;
		overflow-y: auto;
		transform: translateX(100%);
		z-index: 1;
	}
	.header .main-menu.open {
		transform: none;
	}
	.header .main-menu .head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 25px;
	}
	.header .main-menu .head .lang {
		list-style: none;
	}
	.header .main-menu .close-menu-btn {
		position: relative;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		margin-right: 1rem;
		width: 35px;
		height: 35px;
		background-color: transparent;
		border: none;
		cursor: pointer;
	}
	.header .main-menu .close-menu-btn:before,
	.header .main-menu .close-menu-btn:after {
		content: '';
		position: absolute;
		width: 60%;
		height: 2px;
		background-color: #fff;
	}
	.header .main-menu .close-menu-btn:before {
		transform: rotate(45deg);
	}
	.header .main-menu .close-menu-btn:after {
		transform: rotate(-45deg);
	}
	.header .main-menu > ul > li {
		display: block;
	}
	.header .main-menu > ul > li:not(:last-child) {
		margin-right: 0;
	}
	.header .main-menu > ul li a {
		padding: 12px 25px;
		display: block;
		color: #fff;		
	}
	.header .main-menu > ul > .dropdown > a {
		padding-right: 34px;
	}

	.header .main-menu .sub-menu {
		display: none;
		position: static;
		opacity: 1;
		transform: none;
		visibility: visible;
		padding: 0;
		transition: none;
		box-shadow: none;
		width: 100%;
		background-color: rgba(255, 255, 255, .1);
	}
	.header .main-menu .dropdown.active > .sub-menu {
		display: block;
		padding: 10px 0;
	}
	.header .main-menu .sub-menu li:last-child {
		border: none;
	}
	.header .main-menu .sub-menu a {
		padding: 10px 25px 10px 35px;
	}
	.header .main-menu .sub-menu .sub-menu a {
		padding-left: 45px;
	}
	.header .main-menu .sub-menu span {
		background-image: none;
	}
	.header .main-menu i {
		position: absolute;
		user-select: none;		
		top: 7px;
		right: .5rem;
		width: 34px;
		height: 30px;			
		color: #fff;		
		align-items: center;
		justify-content: center;
		pointer-events: auto;
		cursor: pointer;		
	}
	.header .main-menu .sub-menu i {
		transform: none;
	}
	.header .main-menu .sub-menu .dropdown.active > i,
	.header .main-menu .dropdown.active > i {
		transform: rotate(180deg);
	}	
}


@media(max-width: 991px) {	


}



























