


.kun-sticky.sticked .header {
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.kun-sticky.sticked .header-right .icon-btn,
.kun-sticky.sticked .header .main-menu > ul > li > a {
	color: #111;
}

.header {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	transition: all .3s ease;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	z-index: 11;
}
.header .wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .logo {
	padding: 10px 0;
}
.header .logo img {
	vertical-align: middle;
}
.header .main-menu .head {
	display: none;
}

.header .main-menu > ul > li {
	display: inline-block;
}

.header .main-menu .dropdown {
	position: relative;
}
.header .main-menu a {
	display: block;
	color: #fff;
}
.header .main-menu > ul > li > a {
	padding: 24px 0;
	padding-right: 1rem;
	padding-left: 1rem;	
	transition: all .3s ease;
}

.header .main-menu i {
	position: absolute;
	top: calc( 50% - 5px );
	pointer-events: none;
	user-select: none;
	font-size: 12px;
	color: #333;
}
.header .main-menu.open i {
	color: #fff;
}	
.header .main-menu > ul > li > i {
	right: .5rem;
	color: #fff;
}
.header .main-menu .sub-menu {
	position: absolute;
	top: 110%;
	left: 0;
	min-width: 200px;
	padding: 15px 0;
	background-color: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, .1);
	transition: all .3s ease;
	visibility: hidden;
	opacity: 0;
	z-index: 1;
}
.header .main-menu .sub-menu-right {
	left: 100%;
	top: 0;
}
/*.header .main-menu .gnb-nav > li:last-child ul,
.header .main-menu .sub-menu-left {
	left: auto;
	right: 100%;
	top: 0;
}*/
.header .main-menu li:hover > .sub-menu {
	top: 100%;
	visibility: visible;
	opacity: 1;	
}
.header .main-menu .sub-menu li .sub-menu {
	top: 100%;
}
.header .main-menu .sub-menu li a {
	color: #333;
}
.header .main-menu.open .sub-menu li a {
	color: #fff;
}
.header .main-menu .sub-menu li:hover .sub-menu {
	top: 0;
}	
.header .main-menu .sub-menu a {
	padding: 6px 24px;
}
.header .main-menu .sub-menu .dropdwon > a {
	padding-right: 34px;
}
.header .main-menu .sub-menu i {
	right: 24px;
	transform: rotate(-90deg);
}

.header-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.header-right .icon-btn {
	padding: 11px 15px;    
	font-size: 1rem;
	color: #fff;	
	border: none;
	background-color: transparent;
	border-radius: 30px;
}
.header-right .open-menu-btn {
	display: none;
}



@media(min-width: 992px) {
	/*sticky position*/
	.kun-sticky {
		position: absolute;
		width: 100%;
	}	
	.header-right {
		min-width: 150px;
	}
	.header, .kun-sticky {
        height:auto !important;
    }
}
@media(min-width: 1200px) {
	.header .main-menu > ul > li > a {	
		padding: 33px 1.5rem;
	}
	.kun-sticky.sticked .header .main-menu > ul > li > a {	
		padding: 24px 1.5rem;
	}
}


@media(max-width: 991px) {
	.header .logo {
		padding: 0;
	}
	.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: flex-end;
		margin-bottom: 25px;
	}
	.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;
	}
	.header .main-menu > ul > .dropdown > a {
		padding-right: 34px;
	}
	.header .main-menu i {
		height: 34px;
		width: 34px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		pointer-events: auto;
		cursor: pointer;
		top: 7px;
	}
	.header .main-menu .dropdown.active > i {
		transform: rotate(180deg);
	}
	.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 .sub-menu i {
		transform: none;
		right: 0;
	}

	.header .open-menu-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		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-right .icon-btn {
		padding: 0;    
		font-size: 1rem;
		color: #333;
		background-color: transparent !important;
	}	



}



























