@charset "utf-8";
/*
* Copyright inpleworks, Co.
* https://xetemplate.com
*/
	
/* ------------------------------------------------------------------------------------------------------------------ */
/* Push nav 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-pushNav-wrp {
	z-index: 98;
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: calc(100%);
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	background: #181818;
}

.xet-pushNav-wrp, 
body.push {
    transition:all 0.25s cubic-bezier(0, 0, 0.58, 1) 0s;
    -moz-transition:all 0.25s cubic-bezier(0, 0, 0.58, 1) 0s;
    -webkit-transition:all 0.25s cubic-bezier(0, 0, 0.58, 1) 0s;
    -ms-transition:all 0.25s cubic-bezier(0, 0, 0.58, 1) 0s;
    -o-transition:all 0.25s cubic-bezier(0, 0, 0.58, 1) 0s;
}

/* push nav Container */
.xet-pushNav-wrp .xet-push-nav-container {
	margin-top: 80px;
	padding-bottom: 60px;
	height: calc(100% - 80px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch; 
}
/* push nav header */
.xet-pushNav-wrp .xet-push-nav-header {
	height: 60px;
	padding: 0 16px;
}
.xet-pushNav-wrp .xet-push-nav-header a {
	height: 60px;
	display: flex;
	align-items: center;
	color: #707070;
}
.xet-pushNav-wrp .xet-push-nav-header .profile-image {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 10px;
	background-image: url(../img/user3.svg);
	background-size: 100%;
	border-radius: 50%;
}
/* push nav footer */
.xet-pushNav-wrp .xet-push-nav-footer {
	height: 80px;
	padding: 15px 16px;
	text-align: center;
	background-color: #2b2b2b;
}
.xet-pushNav-wrp .xet-push-nav-footer a {
	display: inline-flex;
	align-items: center;
	color: #707070;
}
.xet-pushNav-wrp .xet-push-nav-footer .profile-image {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-right: 10px;
	background-image: url(../img/user3.svg);
	background-size: 100%;
	border-radius: 50%;
}


/* push nav */
.xet-pushNav-wrp ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.xet-pushNav-wrp ul li {
	margin: 10px 0 0;
	padding: 0;
}


/* Menu-full */
.xet-pushNav-wrp .xet-push-nav-ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}
.xet-pushNav-wrp .xet-push-nav-ul>li {
	position: relative;
	margin: 30px 0 0;
	padding: 0 20px;
	text-align: center;
}
.xet-pushNav-wrp .xet-push-nav-ul>li>a {
	font-size: 24px;
	color: #fff;
}
.xet-pushNav-wrp .xet-push-nav-ul>li ul a {
	font-size: 16px;
	color: #ccc;
}
.xet-pushNav-wrp .xet-push-nav-ul>li ul ul a {
	font-size: 14px;
	color: #aaa;
}


.xet-push-nav-ul li.is-selected>a {
	color: #ff6600 !important;
}




/* 메뉴 오픈시 */
body.push-active {
	overflow: hidden;
	touch-action:none;
}
body.push-active .xet-pushNav-wrp {
	opacity: 1;
	visibility: visible;
	transition-delay: 0s;
}
body.push-active #xet-header .xet-dropdown-nav,
body.push-active #xet-header .xet-acc-wrp {
	opacity: 0;
	visibility: hidden;
}

/* back layer */
.xet-push-nav-back {
	z-index: 97;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,.7);
}


@media (max-width: 991px) {	
	.xet-pushNav-wrp {
		display: none;
	}
	body.push-active .xet-pushNav-wrp {
		display: block;
	}
	/* 메뉴 애니메이션 효과 */
	body.push-active .xet-pushNav-wrp .xet-push-nav-ul a {
		display: block;
		animation: returnToNormal .5s .4s backwards;
		-webkit-animation: returnToNormal .5s .4s backwards;
	}
	@-webkit-keyframes returnToNormal {
		0% {
			opacity: 0;
			-webkit-transform: translate3d(0, 100%, 0);
			transform: translate3d(0, 100%, 0);
		}  
		100% {
			opacity: 1;
			-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
		}
	}
	@keyframes returnToNormal {
		0% {
			opacity: 0;
			-webkit-transform: translate3d(0, 100%, 0);
			transform: translate3d(0, 100%, 0);
		}
		100% {
			opacity: 1;
			-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
		}
	}

}
/* LG 
---------------------------------------------------------------------------- */
@media (min-width: 992px) {	
	.xet-pushNav-wrp {
		display: block;
		background: none;
		transition: 0.2s linear 0.5s;
		-webkit-transition: 0.2s linear 0.5s;
	}
	.xet-pushNav-wrp .xet-push-nav-container {
		margin: 0;
		padding: 0;
		height: calc(100%);
	}

	.xet-pushNav-wrp .xet-push-nav-header {
		display: none;
	}
	.xet-pushNav-wrp .xet-push-nav-ul {
		list-style: none;
		margin: 0;
		padding: 0;
		display: flex;
		align-items: center;
		width: 100%;
	}
	.xet-pushNav-wrp .xet-push-nav-ul>li {
		position: relative;
		margin: 0;
		padding: 20px;
		padding-top: 200px;
		padding-bottom: 40px;
		text-align: center;
		height: calc(100vh);
		flex: 1;
		border-left: 1px solid #2b2b2b;
	}
	.xet-pushNav-wrp .xet-push-nav-ul>li:first-child {
		border-left: 0;
	}
	.xet-pushNav-wrp .xet-push-nav-ul>li::after {
		content: "";
		display: block;
		position: absolute;
		top: 0px;
		left: 0px;
		z-index: -1;
		width: 0%;
		height: 100%;
		background: #181818;
		transition: width 0.5s cubic-bezier(.08,.03,.22,.87) 0s;
		-webkit-transition: width 0.5s cubic-bezier(.08,.03,.22,.87) 0s;
		-moz-transition: width 0.5s cubic-bezier(.08,.03,.22,.87) 0s;
		-ms-transition: width 0.5s cubic-bezier(.08,.03,.22,.87) 0s;
		-o-transition: width 0.5s cubic-bezier(.08,.03,.22,.87) 0s;
	}
	.xet-pushNav-wrp .xet-push-nav-ul>li>a {
		opacity: 0;
		font-size: 24px;
		color: #fff;
	}
	.xet-pushNav-wrp .xet-push-nav-ul>li>ul {
		padding-top: 20px;
		opacity: 0;
	}
	.xet-pushNav-wrp .xet-push-nav-ul>li>ul li {
		padding-top: 20px;
	}
	.xet-pushNav-wrp .xet-push-nav-ul>li ul a {
		font-size: 18px;
		color: #ccc;
	}

	.xet-pushNav-wrp.push-active .xet-push-nav-ul>li::after {
		width: 100%;
	}
	.xet-pushNav-wrp.push-active .xet-push-nav-ul>li>a {
		opacity: 1;
		transition-duration: 0.5s;
		transition-delay: 0.4s;
	}
	.xet-pushNav-wrp.push-active .xet-push-nav-ul>li>ul {
		opacity: 1;
		transition-duration: 0.5s;
		transition-delay: 0.4s;
	}

	body.push-active #xet-header-fixed.is-down .xet-logo-wrp {
		opacity: 1;
		visibility: visible;
	}

	.xet-pushNav-wrp .xet-push-nav-ul li a:hover {
		color: #ff6600 !important;
	}
}


/* width and height
---------------------------------------------------------------------------- */ 
@media (min-width: 992px) and (max-height: 500px) {
	.xet-pushNav-wrp .xet-push-nav-ul>li {
		padding-top: 160px;
		height: calc(180vh);
	}
}
