/*
 * Copyright inpleworks, Co.
*/

/* ------------------------------------------------------------------------------------------------------------------ */
/* reset
/* ------------------------------------------------------------------------------------------------------------------ */  
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html,body { 
	height:100%;
	line-height: 1.42857143;
	font-size: 14px;
    -webkit-text-size-adjust: none; 
	-moz-text-size-adjust: none; 
	-ms-text-size-adjust: none; 
}
body { 
	margin: 0;
	padding: 0;
	background: #f9f9f9;
	color: #333; 
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;

}
hmtl, body, table, th, td, button, input {
	font-family: 'Spoqa Han Sans', 'Raleway', 'Apple SD Gothic Neo', 'Nanum Gothic', 'Malgun Gothic', '돋움', Dotum, 'Lucida Sans', 'Trebuchet MS', Arial, Tahoma, sans-serif; 
	font-weight: 300;
}
div,h1,h2,h3,h4,h5,h6,form,input,textarea,p,figure { 
	margin:0; 
	padding:0; 
}
fieldset, img { 
	border:0 none; 
}
a, a:visited, a:hover, a:active, a:focus { 
	text-decoration:none; 
}
a[href^=tel] {
    color:inherit;
    text-decoration:none;
}
a, input { outline:none; }
:focus { outline: 0; }
article,aside,details,figcaption,figure,footer,header,hgroup,nav,section {
  display: block;
}
audio,canvas,video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}
/* for responsive */
img,embed,object,video {
    max-width: 100%;
}

/* Theme Color */
.theme-color {
	color: #FEB500 !important;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Page loader
/* ------------------------------------------------------------------------------------------------------------------ */  
.page-loader{
 	display:block;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #000;
	z-index: 100000;	
}
.page-loader .logo{
	width: 120px;
	height: 120px;
	line-height: 120px;
	overflow: hidden;
	white-space: nowrap;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -60px 0 0 -60px;
	font-size: 14px;
	font-weight: 200;
	z-index: 100001;
	text-align: center;
	color: #fff;
}
.page-loader .loader {
	z-index: 100001;
	width: 140px;
	height: 140px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -70px 0 0 -70px;
	border-top: 2px solid #FEB500;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;  
	-webkit-animation: spinner 700ms infinite linear;
	-moz-animation: spinner 700ms infinite linear;
	-ms-animation: spinner 700ms infinite linear;
	-o-animation: spinner 700ms infinite linear;
	animation: spinner 700ms infinite linear;
}
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Mulitiscroll Section
/* ------------------------------------------------------------------------------------------------------------------ */
.ms-right {
	display: block;
}
.ms-section {
	position: relative;
}
.ms-section.ms-table{
    display: table;
    width: 100%;
}
.ms-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}
.ms-content {
	margin: 60px 0;
	padding: 0 15px;
	overflow: hidden;
}
.ms-easing {
    -webkit-transition: all 0.7s ease-out;
    -moz-transition: all 0.7s ease-out;
    -o-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
}
#multiscroll-nav {
    position: fixed;
    z-index: 99;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
}
#multiscroll-nav.right {
    right: 30px;
}
#multiscroll-nav.left {
    left: 30px;
}
#multiscroll-nav ul{
  margin: 0;
  padding: 0;
}
#multiscroll-nav li {
    display: block;
    width: 50px;
    height: 10px;
    margin: 2px 0;
    position:relative;
}
#multiscroll-nav li a{
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}
#multiscroll-nav li:hover span,
#multiscroll-nav li .active span {
	width: 50px;
	background-color: #FEB500;
	transition: all 0.3s cubic-bezier(0, 0, 0.58, 1) 0s;
	-moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1) 0s;
	-webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1) 0s;	
}
#multiscroll-nav span {
    top: 5px;
    right: 2px;
    width: 20px;
    height: 2px;
    background-color: #cbcbcb;
    position: absolute;
    z-index: 1;
}
.multiscroll-tooltip {
    position: absolute;
    font-size: 11px;
    font-weight: 100;
    top: -5px;
    text-transform: uppercase;
    white-space: nowrap;
    max-width: 220px;
    padding: 3px 10px;
    border-radius: 20px;
    background-color: #111;
    background-color: rgba(0,0,0,.7);
    color: #fff;
}
.multiscroll-tooltip.right {
    right: 60px;
}
.multiscroll-tooltip.left {
    left: 60px;
}

/* background image full */
.ms-section,
.bg-cover {
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: inherit;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.ms-section img { 
	vertical-align: top;
	max-width: 100%;
}
.xet-parallax-scroll {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
    background-repeat:no-repeat;
    background-position:50% 50%;
    /* ie8- graceful degradation */
    background-position:50% 50%\9 !important;
}

#xet-split {
	position: relative;
	-webkit-transition: all .4s cubic-bezier(0, 0, 0.58, 1);
	-moz-transition: all .4s cubic-bezier(0, 0, 0.58, 1);
	transition: all .4s cubic-bezier(0, 0, 0.58, 1);
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* scroll Buttons
/* ------------------------------------------------------------------------------------------------------------------ */
/* scroll to down btn */
.xet-move-down {
	z-index: 99;
	opacity: 0.4;
	position: fixed;	
	display: block;
	cursor: pointer;
	width: 32px;
	height: 56px;
	font-size: 14px;
	font-family: "Tahoma";
	vertical-align: middle;
	text-align: center;
	left: 50%;
 	bottom: 60px;
 	margin-left: -18px; 	
 	border: 1px solid #fff;
 	border-radius: 20px;
 	background: none;
	color: #fff;	
	transition:all 0.3s cubic-bezier(0, 0, 0.58, 1) 0s;
	-moz-transition:all 0.3s cubic-bezier(0, 0, 0.58, 1) 0s;
	-webkit-transition:all 0.3s cubic-bezier(0, 0, 0.58, 1) 0s;
}
.xet-move-down:hover {
	opacity: 1;
}
.xet-move-down > span {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	-webkit-animation: scroll-down-anim 1.2s infinite;
    -moz-animation: scroll-down-anim 1.2s infinite;
    -o-animation: scroll-down-anim 1.2s infinite;
    animation: scroll-down-anim 1.2s infinite; 
}

/* Scroll down animation */
@-webkit-keyframes scroll-down-anim {
	0%{ bottom: 10px; }
	50%{ bottom: 20px; }
	100%{ bottom: 10px; }
}
@-moz-keyframes scroll-down-anim {
	0%{ bottom: 10px; }
	50%{ bottom: 20px; }
	100%{ bottom: 10px; }
}
@-o-keyframes scroll-down-anim {
	0%{ bottom: 10px; }
	50%{ bottom: 20px; }
	100%{ bottom: 10px; }
}
@keyframes scroll-down-anim {
	0%{ bottom: 10px; }
	50%{ bottom: 20px; }
	100%{ bottom: 10px; }
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* HEADER
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-header {
	z-index: 110;
	width: 100%;
	height: 80px;
	position: fixed;
	left: 0;
	top: 0;
	transition:all 0.3s cubic-bezier(0, 0, 0.58, 1) 0s;
	-moz-transition:all 0.3s cubic-bezier(0, 0, 0.58, 1) 0s;
	-webkit-transition:all 0.3s cubic-bezier(0, 0, 0.58, 1) 0s;
}

/* Logo */
.xet-logo {}
.xet-logo a {	
	display: inline-block;
	vertical-align: middle;
	height: 40px;
	line-height: 40px;
	margin-top: 20px;
	font-size: 32px;
	font-weight: 200;
	color: #fff;
	transition: all 0.3s cubic-bezier(0, 0, 0.58, 1) 0s;
	-moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1) 0s;
	-webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1) 0s;	
}
.xet-logo img { 
	height: 40px;
	vertical-align: top; 
}

/* navigation trigger - visible on mobile devices only */
.xet-hambuger {
	position: relative;
}
.xet-toggle-menu {
	position: relative;
	display: block;
	width: 60px;
	height: 80px;
	line-height: 80px;
	font-size: 0;
	overflow: hidden;
	white-space: nowrap;
	cursor: pointer;
	margin: 0;
	padding: 0;
	color: transparent;
	border: 0;
	border-radius: 0;
	background: none;
	transition: all 0.3s cubic-bezier(0, 0, 0.58, 1) 0s;
	-moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1) 0s;
	-webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1) 0s;	
}
/* hamburger icon in CSS */
.xet-toggle-menu span, 
.xet-toggle-menu span::before,
.xet-toggle-menu span::after {  
	position: absolute;
	display: inline-block;
	height: 2px;
	background-color: #fff;
}
.xet-toggle-menu span {
	width: 20px;
	background-color: #FEB500;
}
.xet-toggle-menu span::before {
	width: 40px;
}
.xet-toggle-menu span::after {  
	width: 30px;
}

/* line in the center */
.xet-toggle-menu span { 
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: 0px;
	-webkit-transition: background 0.2s;
	-moz-transition: background 0.2s;
	transition: background 0.2s;
}
.xet-toggle-menu span::before, 
.xet-toggle-menu span::after {
	/* other 2 lines */
	content: '';
	right: 0;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform-origin: 0% 50%;
	-moz-transform-origin: 0% 50%;
	-ms-transform-origin: 0% 50%;
	-o-transform-origin: 0% 50%;
	transform-origin: 0% 50%;
	-webkit-transition: -webkit-transform 0.2s;
	-moz-transition: -moz-transform 0.2s;
	transition: transform 0.2s;
}
.xet-toggle-menu span::before {
	/* menu icon top line */
	top: -6px;
}
.xet-toggle-menu span::after {
	/* menu icon bottom line */
	top: 6px;
}
.xet-toggle-menu.push-active span {
	right: 0;
  	/* hide line in the center */
  	background: none;
}
.xet-toggle-menu.push-active span::before, 
.xet-toggle-menu.push-active span::after {
  	/* keep visible other 2 lines */
  	width: 30px;
}
.xet-toggle-menu.push-active span::before {
	-webkit-transform: translateX(4px) translateY(-5px) rotate(45deg);
	-moz-transform: translateX(4px) translateY(-5px) rotate(45deg);
	-ms-transform: translateX(4px) translateY(-5px) rotate(45deg);
	-o-transform: translateX(4px) translateY(-5px) rotate(45deg);
	transform: translateX(4px) translateY(-5px) rotate(45deg);
}
.xet-toggle-menu.push-active span::after {
	-webkit-transform: translateX(4px) translateY(4px) rotate(-45deg);
	-moz-transform: translateX(4px) translateY(4px) rotate(-45deg);
	-ms-transform: translateX(4px) translateY(4px) rotate(-45deg);
	-o-transform: translateX(4px) translateY(4px) rotate(-45deg);
	transform: translateX(4px) translateY(4px) rotate(-45deg);
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Header active
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-header.sub,
#xet-header.active {
	height: 60px;
}
#xet-header.act {
	background-color: rgba(0,0,0,.7);
}
#xet-header.active {
	background-color: rgba(0,0,0,.7);
}
#xet-header.sub .xet-logo a,
#xet-header.active .xet-logo a {
	margin-top: 10px;
}
#xet-header.sub .xet-toggle-menu,
#xet-header.active .xet-toggle-menu {
	height: 60px;
	line-height: 60px;
}
#xet-header.no-fixed.active {
	opacity: 0;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* SECTION - SLIDER
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-slider .vegas-container {
	background-color: #000;
}
.xet-slider-caption {
	position: absolute;
	z-index: 99;
	left: 0;
	top: 50vh;
	width: 100%;
	padding: 0 15px;
	-webkit-transition: all .4s cubic-bezier(0, 0, 0.58, 1);
	-moz-transition: all .4s cubic-bezier(0, 0, 0.58, 1);
	transition: all .4s cubic-bezier(0, 0, 0.58, 1);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	opacity: 1;
	visibility: visible;
	color: #fff;
}
.xet-slider-caption-in {
	height: 100%;
	z-index: 9;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	text-align: center;
	color: #fff;
}

.xet-slider-left,
.xet-slider-right {
	height: 100% !important;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* SECTION - ABOUT
/* ------------------------------------------------------------------------------------------------------------------ */

	
/* ------------------------------------------------------------------------------------------------------------------ */
/* SECTION - FEATURE
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-feature .xet-icon {
	float: none;
}
.xet-feature .xet-icon > p {
	display: inline-block;
	width: 120px;
	height: 120px;
	line-height: 120px;
	overflow: hidden;
	text-align: center;
	background-color: rgba(30, 30, 30, .9);
	color: #fff;
}
.xet-feature .xet-icon i {
	vertical-align: middle;
}
.xet-feature .xet-icon img {
	width: 100%;
	vertical-align: top;
}
.xet-feature .xet-icon-desc {
	position: relative;
}
.xet-feature .xet-icon-desc .vertical-middle {}

/* ------------------------------------------------------------------------------------------------------------------ */
/* SECTION - WORK
/* ------------------------------------------------------------------------------------------------------------------ */


/* ------------------------------------------------------------------------------------------------------------------ */
/* SECTION - SKILL
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-skill .chart {
	position: relative;
	display: inline-block;
	width: 140px;
	height: 140px;
	text-align: center;
}
.xet-skill .chart canvas {
	position: absolute;
	top: 0;
	left: 0;
}
.xet-skill .chart .percent {
	display: inline-block;
	line-height: 140px;
	z-index: 2;
}
.xet-skill .chart .percent:after {
	content: '%';
	margin-left: 3px;
	font-size: 14px;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* SECTION - TEAM
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-team .member-img {
	margin: 0 auto;
	width: 140px;
	height: 140px;
}
.xet-team .member-position {
	margin-top: 5px;
	color: #9a9a9a;
}
.xet-team .member-sns-icon a {
	font-size: 18px;
	display: inline-block;
	margin: 0 5px;
	color: #111;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* SECTION - PARTNER
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-partner-owl {
	margin: 0 auto;
	width: 320px;
}
.xet-partner-owl a {
	display: block;
	padding: 15px;
	border: 1px solid rgba(0,0,0, .05);
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* SECTION - CONTACT
/* ------------------------------------------------------------------------------------------------------------------ */
/* SNS Icon */
.xet-sns-icon a {
	display: inline-block;
	margin: 0 5px;
	width: 32px;
	height: 32px;
	line-height: 32px;
	font-size: 18px;
	text-align: center;
	vertical-align: middle;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%; 
	border-radius: 50%; 
	color: #fff;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* SUB PAGE
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-body {}

/* sub top */
.xet-sub {
	background-color: #1b1b1b;
	color: #fff;
}
.xet-sub a {
	color: #fff;
}


/* content */
.xet-content { 
	position: relative; 
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* FOOTER
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-footer {	
	background-color: #2b2b2b;
	color: #ccc;
}
#xet-footer .copyright {
	padding: 30px 0;
	background-color: #111;
	color: #ccc;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Push NAV
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-shadow-layer {
    background-color: rgba(0, 0, 0, .6);
    cursor: pointer;
    display: none;
    left: 0;
    min-height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 101;
    animation: 0.4s ease 0s normal none 1 running cd-fade-in;
}
#xet-shadow-layer.is-visible {
    display: block;
}
@keyframes cd-fade-in {
	0% {
	    opacity: 0;
	}
	100% {
	    opacity: 1;
	}
}
@keyframes cd-fade-in {
	0% {
	    opacity: 0;
	}
	100% {
	    opacity: 1;
	}
}
.xet-push-body {
	position: relative;	
}
.xet-push {
	z-index: 109;
  	position: fixed;
  	height: 100%;
  	background-color: rgba(0,0,0,.8);
}
.xet-push-left,
.xet-push-right {
	height: 100%;
    top: 0;
}
.xet-push-left {
	width: 320px;
    left: -320px;
}
.xet-push-right {
	width: 100%;
    right: -100%;
   
}
.xet-push-left.push-open {
    left: 0;
}
.xet-push-right.push-open {
    right: 0;
}
.push {
    left: 0;
    position: relative;
}
.push-toright {
    right: -320px !important;
}
.push-toleft {
    left: -320px !important;
}

.xet-slider-caption,
.xet-push-body,
.xet-push, 
.push {
    transition:all 0.3s cubic-bezier(0, 0, 0.58, 1) 0s;
	-moz-transition:all 0.3s cubic-bezier(0, 0, 0.58, 1) 0s;
	-webkit-transition:all 0.3s cubic-bezier(0, 0, 0.58, 1) 0s;
}



/* nav */
.xet-nav-m-wrp {
	margin: 0;
	height: 100%;
	overflow: hidden;
}
.xet-nav-m {
	position: relative;
	top: 80px;
	width: 100%;
	height: calc((100vh - 250px));
	overflow-y: scroll;
  	-webkit-overflow-scrolling: touch; 
  	-ms-overflow-style: none;
	list-style: none;
	margin: 0 0 0 17px;
	padding: 0;
	text-align: left;
}
.xet-nav-m li {
	position: relative;
	margin: 0;
	padding: 0;
}
.xet-nav-m li a {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	margin: 5px 0 5px 45px;
	padding: 5px 0;
	vertical-align: middle;
	color: #c1c1c1;	
	transition:all 0.8s ease-in-out;
	-moz-transition:all 0.8s ease-in-out;
	-webkit-transition:all 0.8s ease-in-out;
}

.xet-nav-m li a img {
	vertical-align: middle;
}
.xet-nav-m .child > a {
 	position: relative;
}
.xet-nav-m li > button {
	position: absolute;
	top: 0;
	left: 0;
	width: 45px;
	height: 40px;
	padding: 0;
	background: none;
	border: 0;
}
.xet-nav-m li > button.child {
	cursor: pointer;
}
.xet-nav-m li > button:after {
	content: '';
	display: block;
	height: 10px;
	width: 10px;
	position: absolute;
	top: 50%;
	bottom: auto;
	left: 50%;
	margin-left: -4px;
	opacity: .7;
	background: url("../img/nav-add.png") no-repeat center center;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	transition-property: transform;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	transition-duration: 0.2s;
}
.xet-nav-m li > button.submenu-open:after {
	background: url("../img/nav-substract.png") no-repeat center center;
}

/* 2차 */
.xet-nav-m .sub-menu {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;	
}
.xet-nav-m .sub-menu li a {
	min-width: auto;
	font-size: 14px;
	padding: 4px 0;	
	color: #919191;
}
/* hover */
.xet-nav-m li > a:hover,
.xet-nav-m li > a:focus {
	color: #fff;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Push nav
/* ------------------------------------------------------------------------------------------------------------------ */

/* login widget */
.xet-login-wrp {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}
.xet-login-wrp ul {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(255,255,255,.1);
	background-color: rgba(0,0,0,.9);
}
.xet-login-wrp ul li {
	margin: 0;
	border-left: 1px solid rgba(255,255,255,.1);
}
.xet-login-wrp ul li:nth-child(1),
.xet-login-wrp ul li:nth-child(3) {
	border-left: 0;
}
.xet-login-wrp ul li:nth-child(3),
.xet-login-wrp ul li:nth-child(4) {
	border-top: 1px solid rgba(255,255,255,.1);
}
.xet-login-wrp li a {
	display: block;
	text-align: center;
	font-size: 12px;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 0;
	height: 50px;
	line-height: 50px;
	vertical-align: middle;
	color: #777;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
}
.xet-login-wrp .login-footer a:hover {
	color: #fff;
}



/* ------------------------------------------------------------------------------------------------------------------ */
/* Custom buttons
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-btn-theme { 	
	color: #FEB500;
}
.xet-btn-bg-theme { 	
	background-color: #FEB500;
	color: #fff !important;
}

/* hover */
.xet-btn:hover { 
	color: #fff;
	border-color: #FEB500;
	background-color: #FEB500;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* TOP SCROLL BUTTON
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-top-scroll { 
	z-index: 99;
	display: none;
	position:fixed; 
	bottom: 15px;
	right: 15px;
	overflow:hidden; 
	width: 40px; 
	height: 40px; 
	line-height: 40px;
	text-align: center;
}
#xet-top-scroll a { 
	display: block;
	text-decoration:none;
	font-size: 0;
	border-radius: 50%;
	opacity: 1;
	color: #fff;
	background: url(../img/top_scroll.png) center no-repeat rgba(0,0,0,.5);; 
	background-size: 32px;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* css3 animation delay time
/* ------------------------------------------------------------------------------------------------------------------ */
.delay-01s { 
	animation-delay: 0.1s; 
	-webkit-animation-delay: 0.1s; 
}
.delay-02s { 
	animation-delay: 0.2s; 
	-webkit-animation-delay: 0.2s; 
}
.delay-03s { 
	animation-delay: 0.3s; 
	-webkit-animation-delay: 0.3s; 
}
.delay-04s { 
	animation-delay: 0.4s; 
	-webkit-animation-delay: 0.4s; 
}
.delay-05s { 
	animation-delay: 0.5s; 
	-webkit-animation-delay: 0.5s; 
}
.delay-06s { 
	animation-delay: 0.6s; 
	-webkit-animation-delay: 0.6s; 
}
.delay-07s { 
	animation-delay: 0.7s; 
	-webkit-animation-delay: 0.7s; 
}
.delay-08s { 
	animation-delay: 0.8s; 
	-webkit-animation-delay: 0.8s; 
}
.delay-09s { 
	animation-delay: 0.9s; 
	-webkit-animation-delay: 0.9s; 
}
.delay-10s { 
	animation-delay: 1s; 
	-webkit-animation-delay: 1s; 
}
.delay-11s { 
	animation-delay: 1.1s; 
	-webkit-animation-delay: 1.1s; 
}
.delay-12s { 
	animation-delay: 1.2s; 
	-webkit-animation-delay: 1.2s; 
}
.delay-20s { 
	animation-delay: 2s; 
	-webkit-animation-delay: 2s; 
}
.delay-30s { 
	animation-delay: 3s; 
	-webkit-animation-delay: 3s; 
}