/*
 * 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: #fff; color: #555; }
hmtl, body, table, th, td, button, input { font-family: 'Dosis','Apple SD Gothic Neo', 'Nanum Gothic', 'Malgun Gothic', '돋움', Dotum, 'Lucida Sans', 'Trebuchet MS', Arial, Tahoma, sans-serif; }
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,
loader,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}

#xet-layout {
	opacity: 0;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* LOADER
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-preloader {
	z-index: 10;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #6595A6;
}
.loader {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -40px 0 0 -40px;
	text-align: center;
	height: 80px;
	width: 80px;
}
.spinner {
	animation: spinnerFive 1s linear infinite;
	border: solid 20px #fff;
	border-right: solid 20px transparent;
	border-left: solid 20px transparent;
	border-radius: 100%;
	width: 0;
	height: 0;
}
@keyframes spinnerFive {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(180deg)
	}
	100% {
		transform: rotate(360deg);
	}
}



/* ------------------------------------------------------------------------------------------------------------------ */
/* HEADER
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-header {
	z-index: 9;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	height: 60px;
}
#xet-header.active,
#xet-header.no-home {
	background-color: #fff;
}

/* Logo */  
.xet-logo {
	z-index: 9;
	position: absolute;
	left: 15px;
	bottom:11px;
	overflow: hidden;
	width: 45%;
}
.xet-logo a {
	display: block;	
	height: 36px;
	line-height: 36px;
	vertical-align: bottom;
	overflow: hidden;
	font-size: 36px;
	color: #fff;
}
#xet-header.active .xet-logo a,
#xet-header.no-home .xet-logo a {
	color: #111;
}
.xet-logo a.xet-logo-img {		
	font-size: 0;
	text-indent: -99999em;
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: auto 100%;
}	

/* NAV - horizontal
----------------------------------------------------------- */	
.xet-nav {
	position: absolute;
	top: 15px;
	right: 45px;
}
.xet-nav-ul { 
	margin: 0;
	padding: 0;
	list-style: none;
}
.xet-nav-ul > li { 
	position: relative; 
	float: left;
	margin: 0 0 0 30px;
	padding: 0; 	
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
}
.xet-nav-ul > li > a {
	position: relative;
	display: inline-block;
	font-size: 14px; 
	height: 60px;
	line-height: 60px;
	white-space: nowrap;
	text-decoration:none;
	cursor:pointer;
	border: 0;
	margin: 0;
	padding: 0; 
	background: none;
	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;
}
#xet-header.no-home .xet-nav-ul > li > a,
#xet-header.active .xet-nav-ul > li > a {
	color: #3b3b3b;
}
/* Hover color NAV 1차 */
.xet-nav-ul > li:hover > a,
#xet-header.no-home .xet-nav-ul > li.current > a {
	color: #d4a300 !important;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* PUSH NAV
/* ------------------------------------------------------------------------------------------------------------------ */  
#xet-nav-icon {
	position: absolute;
	z-index: 9;
	bottom: 11px;
	right: 15px;
}
#xet-nav-icon a {
	position: relative;
	display: inline-block;
	vertical-align: top;
	border: 1px solid rgba(0,0,0,.3);
}
 .xet-nav-trigger {  
	position: relative;
	display: block;
	height: 36px;
	width: 36px;
	overflow: hidden;
	font-size: 0;
	text-indent: -99999px;
	white-space: nowrap;
	-webkit-transition: -webkit-transform 0.2s;
	-moz-transition: -moz-transform 0.2s;
	transition: transform 0.2s;	
}
.xet-nav-trigger span {
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	width: 22px;
	height: 2px;
	background-color: #111;
}
.xet-nav-trigger span::before, 
.xet-nav-trigger span:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: inherit;
	-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-transition: -webkit-transform 0.2s, width 0.2s;
	-moz-transition: -moz-transform 0.2s, width 0.2s;
	transition: transform 0.2s, width 0.2s;
}
.xet-nav-trigger span::before {
	-webkit-transform-origin: right top;
	-moz-transform-origin: right top;
	-ms-transform-origin: right top;
	-o-transform-origin: right top;
	transform-origin: right top;
	-webkit-transform: translateY(-8px);
	-moz-transform: translateY(-8px);
	-ms-transform: translateY(-8px);
	-o-transform: translateY(-8px);
	transform: translateY(-8px);
}
.xet-nav-trigger span::after {
	-webkit-transform-origin: right bottom;
	-moz-transform-origin: right bottom;
	-ms-transform-origin: right bottom;
	-o-transform-origin: right bottom;
	transform-origin: right bottom;
	-webkit-transform: translateY(8px);
	-moz-transform: translateY(8px);
	-ms-transform: translateY(8px);
	-o-transform: translateY(8px);
	transform: translateY(8px);
}
#xet-nav-icon a:hover .xet-nav-trigger {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}
#xet-nav-icon a:hover .xet-nav-trigger span::after,
#xet-nav-icon a:hover .xet-nav-trigger span::before {
  	width: 50%;
}
#xet-nav-icon a:hover .xet-nav-trigger span::before {
	-webkit-transform: translateX(1px) translateY(1px) rotate(45deg);
	-moz-transform: translateX(1px) translateY(1px) rotate(45deg);
	-ms-transform: translateX(1px) translateY(1px) rotate(45deg);
	-o-transform: translateX(1px) translateY(1px) rotate(45deg);
	transform: translateX(1px) translateY(1px) rotate(45deg);
}
#xet-nav-icon a:hover .xet-nav-trigger span::after {
	-webkit-transform: translateX(1px) translateY(-1px) rotate(-45deg);
	-moz-transform: translateX(1px) translateY(-1px) rotate(-45deg);
	-ms-transform: translateX(1px) translateY(-1px) rotate(-45deg);
	-o-transform: translateX(1px) translateY(-1px) rotate(-45deg);
	transform: translateX(1px) translateY(-1px) rotate(-45deg);
}
/* White */
#xet-nav-icon.active a {
	border: 1px solid rgba(255,255,255,0.3);
}
#xet-nav-icon a:hover,
#xet-nav-icon.active a:hover {
	border: 1px solid rgba(255,255,255,0);
}
#xet-nav-icon.active .xet-nav-trigger span {
	background-color: #fff;
}
/**/


/* NAV Container
-------------------------------- */
.xet-nav-container {
	position: fixed;
	z-index: 999;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	background-color: #222;
	-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: translateX(100%);
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: -webkit-transform 0.4s 0s, box-shadow 0s 0.4s;
	-moz-transition: -moz-transform 0.4s 0s, box-shadow 0s 0.4s;
	transition: transform 0.4s 0s, box-shadow 0s 0.4s;
}
.xet-nav-container.is-visible {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	-webkit-overflow-scrolling: touch;
	box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2);
	-webkit-transition: -webkit-transform 0.4s 0s, box-shadow 0s 0s;
	-moz-transition: -moz-transform 0.4s 0s, box-shadow 0s 0s;
	transition: transform 0.4s 0s, box-shadow 0s 0s;
}
.xet-nav-container header {
	position: relative;
	height: 60px;
	line-height: 60px;
	background-color: #fff;
}
.xet-nav-container h4 {
	float: left;
	margin: 0 30px 0 15px;
  	color: #5c4b51;
}
.xet-nav-container h4 a {
	display: inline-block;
	margin-right: 10px;
  	color: #5c4b51;
  	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.xet-nav-container h4 a:hover {
	opacity: .6;
}

/* NAV Close */
.xet-close-nav {
	position: absolute;
	height: 45px;
	width: 45px;
	right: 15px;
	top: 30px;
	bottom: auto;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.xet-close-nav::after, .xet-close-nav::before {
	content: '';
	position: absolute;
	height: 1px;
	width: 32px;
	left: 50%;
	top: 50%;
	background-color: #111;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.xet-close-nav::after {
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.xet-close-nav::before {
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	-moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	-o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.no-touch .xet-close-nav:hover {
  	opacity: .8;
}

/* NAV List */
.xet-nav-list {}
.xet-nav-list::after {
	clear: both;
	content: "";
	display: table;
}
.xet-nav-list > li {
	width: 50%;
	float: left;
	display: table;
	height: calc((100vh - 60px)/5);
	min-height: 100px;
	border: 1px solid rgba(255,255,255,0.1);
	border-top: none;
	border-left: none;
}
.xet-nav-list > li:nth-of-type(2n) {
  	border-right-width: 0;
}
.xet-nav-list > li > a {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	height: 100%;
	text-align: center;
	transition:all 0.2s ease-in-out;
	-moz-transition:all 0.2s ease-in-out;
	-webkit-transition:all 0.2s ease-in-out;
	color: #fff;
}
.xet-nav-list > li > a > em > img {
	max-width: 100%;
}
.xet-nav-list em {
	font-style: normal;
	display: block;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.xet-nav-list > li > a:hover {
	background-color: #6595A6;
}

/* shadow layer visible when NAV is open  */
.xet-nav-overlay {
	z-index: 990;
	position: fixed;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.8);
	visibility: hidden;
	opacity: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s;
	-moz-transition: opacity 0.4s 0s, visibility 0s 0.4s;
	transition: opacity 0.4s 0s, visibility 0s 0.4s;
}
.xet-nav-overlay.is-visible {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.4s 0s, visibility 0s 0s;
	-moz-transition: opacity 0.4s 0s, visibility 0s 0s;
	transition: opacity 0.4s 0s, visibility 0s 0s;
}




/* ------------------------------------------------------------------------------------------------------------------ */
/* SECTION DEFAULT
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-section {
	position: relative;
	color: #363636;
	background-color: #fff;
}
.xet-section .fp-tableCell {
	background-color: #4b4b4b;
	color: #fff;
	border-width: 15px 15px 15px;
	border-style: solid;
	border-color: #fff;
}
.xet-section img { 
	vertical-align: top;
	max-width: 100%;
}

/* Header Title */
.xet-section .xet-dash { 
	position: relative;
}
.xet-section .xet-dash:after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 20%;
	height: 1px;
	background-color: #333;
}
.xet-section .xet-dash:before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 20%;
	height: 1px;
	background-color: #333;
}
.xet-section .xet-dash.dash-invert:after,
.xet-section .xet-dash.dash-invert:before {
	background-color: #ccc;
}

/* height */
.xet-section .height-full {
  	height: calc((100vh - 135px));
}
.xet-section .height-half {
  	height: calc((100vh - 135px)/2);
}
.xet-section .height-third {
  	height: calc((100vh - 135px)/3);
}
.xet-section .height-quarter {
  	height: calc((100vh - 135px)/4);
}


/* Section Title
-------------------------------------- */ 
.xet-section-title {
	display: none;
	z-index: 5;
	position: absolute;
	top: 50%;
	left: -74px;
	margin-top: -30px;
	width: 245px;
	height: 46px;
	line-height: 45px;
	letter-spacing: 0.17em;
	white-space: nowrap;
	text-transform: uppercase;
	overflow: hidden;
	font-size: 14px;
	text-align: center;
	background-color: #6595A6;
	color: #fff;
	 -ms-transform: rotate(-90deg); /* IE 9 */
    -webkit-transform: rotate(-90deg); /* Chrome, Safari, Opera */
    transform: rotate(-90deg);
}

/* Section More Btn
-------------------------------------- */ 
.xet-section-btn {
	position: absolute;
	left: 50%;
	bottom: 0px;
	margin-lett: -50px;
}
.xet-section-btn a {
  position: relative;
  display: block;
  width: 100px;
  height: 45px;
  overflow: hidden;
  font-size: 11px;
  text-align: center;
  background: #111;
  color: #fff;
}
.xet-section-btn a:hover { 
	color: #ff3300;
}

/* background image Cover
-------------------------------------- */ 
.fp-tableCell,
.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;
}


/* Section Scroll NAV 
-------------------------------------- */
#fp-nav {
	display: none;
}
#fp-nav.left {
	left: 0;
}
#fp-nav.right {
	right: 0;
}
#fp-nav ul li .fp-tooltip {
	top: 6px;
	padding-left: 40px;
	opacity: 0.0;
	overflow: visible;
	font-family: inherit;
}
#fp-nav.right ul li .fp-tooltip {
	padding-left: 0;
	padding-right: 40px;
	text-transform: uppercase;
	color: #6595A6;
}
#fp-nav ul li:hover .fp-tooltip, #fp-nav.fp-show-active a.active + .fp-tooltip {
	opacity: 1;
}
#fp-nav ul li, .fp-slidesNav ul li {
	height: 30px;
	margin: 0;
	width: 45px;
}
#fp-nav ul li a span, 
.fp-slidesNav ul li a span {
	opacity: .6;
	background: #6595A6;
}
#fp-nav ul li a.active span {
	opacity: 1;
}
#fp-nav.active ul li a span, 
#fp-nav.active.fp-slidesNav ul li a span {
	background: #333;
}
#fp-nav.active ul li .fp-tooltip {
	color: #333;
}

.fp-slidesNav.bottom {
	bottom: 60px;
}
.fp-slidesNav.bottom ul li {
	height: 30px;
	width: 30px;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* SLIDER SECTION
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-slider .fp-tableCell {
	display: block;
	border: 0;
	background-color: transparent;
}
.xet-slider {
	background-color: transparent;
}
.slider-logo-img {
	height: 40px;
	vertical-align: middle;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100px;
}

/* Scroll Down Btn */
.xet-down-btn {
	z-index: 9;
	position: fixed;
	left: 50%;
	bottom: 45px;
	margin-left: -23px;
}
.xet-down-btn a {
	display: block;
	position: relative;
	overflow: hidden;
	font-size: 0;
	text-indent: -99999px;
	border: 1px solid rgba(255,255,255,0.3);
}
.xet-down-btn a:hover {
	border: 1px solid rgba(255,255,255,0);
}
.xet-down-btn a span {
	display: block;
	width: 40px;
	height: 40px;
	background: url(../img/down.png) center no-repeat;
	background-size: 20px;
}
.xet-down-btn a span {
	position: relative;
    -webkit-animation-name: drop;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    animation-name: drop;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-play-state: running;
}
@-webkit-keyframes drop {
    0%   { top:-5px;  opacity: 0;}
    30%  { top:0px; opacity: 1;}
    100% { top:5px; opacity: 0;}
}

@keyframes drop	{
	0%   { top:-5px;  opacity: 0;}
	30%  { top:0px; opacity: 1;}
	100% { top:5px; opacity: 0;}
}

/* Slider Button next, prev */
.xet-slider-btn {
	z-index: 9;
	position: fixed;
	right: 45px;
	bottom: 45px;
	font-size: 0;
}
.xet-slider-btn a {
	overflow: hidden;
	margin-left: 4px;
	font-size: 0;
	text-indent: -99999px;
	border: 1px solid rgba(255,255,255,0.3);
}
.xet-slider-btn a span {
	display: block;
	width: 40px;
	height: 40px;
	font-size: 0;
	opacity: 0.3;
}
.xet-slider-btn a:hover {
	border: 1px solid rgba(255,255,255,0);
}
#xet-slide-prev span {
	background: url(../img/prev.png) center no-repeat;
	background-size: 20px;
}
#xet-slide-next span {
	background: url(../img/next.png) center no-repeat;
	background-size: 20px;
}
.xet-slider-btn a:hover > span {
	opacity: 1;
}

/* slider caption
-------------------------------------- */
.slider-caption {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
	padding: 30px;
	text-align: center;
	color: #fff;
	text-shadow: 1px 1px 5px rgba(0,0,0,.7);
}
.slider-caption .slider-logo-img,
.slider-caption h1.h1 {
	margin-bottom: 15px;
}

/* IE9 Slider Button */
.fp-controlArrow {
	z-index: 9;
	position: absolute;
	left: auto;
	bottom: 45px;
	top: auto;
	width: 40px;
	height: 40px;
	opacity: 0.3;
	border: 1px solid rgba(255,255,255,0.3) !important;
}
.fp-controlArrow.fp-prev {
	left: auto;
	right: 95px;	
	width: 40px;
    background: url(../img/prev.png) center no-repeat;
    background-size: 20px;
}
.fp-controlArrow.fp-next {
	left: auto;
	right: 45px;
	width: 40px;
    background: url(../img/next.png) center no-repeat;
    background-size: 20px;
}
.fp-controlArrow:hover {
	opacity: 1;
}
/* Overlay */
.xet-section-slider.slider-overlay .fp-tableCell {
	background: rgba(0,0,0,.2);
}

/* Youtube */
#xet-slider-video {
	width: 100%;
	height: 100%;
	background: #000;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* ABOUT SECTION
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-about .fp-tableCell {
  	background-color: #eee;
  	color: #111;
}
.xet-about-list {}
.xet-about-list::after {
	clear: both;
	content: "";
	display: table;
}
.xet-about.a-type .xet-about-list > li:first-child {
	min-height: 300px;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* FEATURE SECTION
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-feature .fp-tableCell {
  	background-color: #222;
  	color: #fff;
}
.xet-feature-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.xet-feature-list::after {
	clear: both;
	content: "";
	display: table;
}
.xet-feature-list > li {
	margin: 0;
	padding: 30px 0;
	border: 1px solid rgba(255,255,255,0.1);
	border-top: none;
	border-left: none;
}
.xet-feature-list > li.col-title {
	height: 100px;
	background-color: #fff;
	color: #111;
}
.xet-feature-list > li p {
	opacity: 0.7;
}
.xet-feature-list > li [class*="icon-"],
.xet-feature-list > li [class*="fa"] {
	font-size: 56px;
	color: #d4a300;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* WORK SECTION
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-work .fp-tableCell {}
.xet-work .col-title .item {
	background-color: #fff;
	color: #111;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* VIDEO SECTION
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-video .fp-tableCell {}
.xet-video .xet-video-overlay {
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	padding: 0 30px;
	background-color: rgba(0,0,0,0.7);
}
.xet-video a.xet-lightbox-video {
	font-size: 48px;
	color: #fff;
	transition:all 0.2s ease-in-out;
	-moz-transition:all 0.2s ease-in-out;
	-webkit-transition:all 0.2s ease-in-out;
}
.xet-video a.xet-lightbox-video:hover {
	opacity: .6;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* SKILL SECTION
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-skill .fp-tableCell {}
.xet-skill h1.h1 {
	color: #fff;
}
.xet-skillbar {
	margin-bottom: 15px;
	-webkit-transition:0.4s linear;
	-moz-transition:0.4s linear;
	-ms-transition:0.4s linear;
	-o-transition:0.4s linear;
	transition:0.4s linear;
	-webkit-transition-property:width, background-color;
	-moz-transition-property:width, background-color;
	-ms-transition-property:width, background-color;
	-o-transition-property:width, background-color;
	transition-property:width, background-color;
}
.xet-skillbar-title {
	font-size: 16px;
	font-weight: 400;
	color: #fff;
}
.xet-skillbar-bar {
	position: relative;
	height: 20px;
	width: 0px;
	background: #d4a300;
	border-radius: 10px;
}
.xet-skillbar-percent {
	position: absolute;
	top: 0;
	right: 10px;
	height: 20px;
	line-height: 20px;
	font-size: 12px;
	opacity: 0;
	color: #fff;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* TEAM SECTION
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-team .fp-tableCell {
	background-color: #222;
}
.xet-team-list::after {
	clear: both;
	content: "";
	display: table;
}
.xet-team-list > li {
	position: relative;
	height: 280px;
	min-height: 200px;
}
.xet-team-list > li.col-title {
	height: 100px;
	background-color: #fff;
	color: #111;
}
/*-----------------*/
.effect-hera h3 small {
	display: block;
}
.effect-hera h3,
.effect-hera p {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0%,-50%,0);
	transform: translate3d(0%,-50%,0);
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
}
.effect-hera figcaption::before {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	width: 160px;
	height: 160px;
	border: 0px solid #fff;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(0%,-50%,0) rotate3d(0,0,1,-45deg) scale3d(0,0,1);
	transform: translate3d(0%,-50%,0) rotate3d(0,0,1,-45deg) scale3d(0,0,1);
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
}
.effect-hera p {
	text-transform: none;
	line-height: 2;
}
.effect-hera p a {
	display: inline-block;
	width: 32px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	color: #fff;
}
.effect-hera p a:hover,
.effect-hera p a:focus {
	opacity: 0.6;
}
.effect-hera p a i {
	font-size: 18px;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}
.effect-hera p a:first-child i {
	-webkit-transform: translate3d(-60px,-60px,0);
	transform: translate3d(-60px,-60px,0);
}

.effect-hera p a:nth-child(2) i {
	-webkit-transform: translate3d(60px,-60px,0);
	transform: translate3d(60px,-60px,0);
}

.effect-hera p a:nth-child(3) i {
	-webkit-transform: translate3d(-60px,60px,0);
	transform: translate3d(-60px,60px,0);
}
.effect-hera p a:nth-child(4) i {
	-webkit-transform: translate3d(60px,60px,0);
	transform: translate3d(60px,60px,0);
}
.xet-team li:hover .effect-hera figcaption::before {
	opacity: 1;
	-webkit-transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-45deg) scale3d(1,1,1);
	transform: translate3d(-50%,-50%,0) rotate3d(0,0,1,-45deg) scale3d(1,1,1);
}
.xet-team li:hover .effect-hera h3 {
	opacity: 0;
	-webkit-transform: translate3d(0%,-50%,0) scale3d(0.8,0.8,1);
	transform: translate3d(0%,-50%,0) scale3d(0.8,0.8,1);
}
.xet-team li:hover .effect-hera p i:empty {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0); /* just because it's stronger than nth-child */
	opacity: 1;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* PARTNER SECTION
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-partner .fp-tableCell {
	background-color: #333;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* CONTACT SECTION
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-contact .fp-tableCell {}
.xet-contact p {
	margin-bottom: 5px;
}
.xet-contact p span {
	display: inline-block;
	margin: 0 10px;
}
.xet-contact a {
	cursor: pointer;
	color: #fff;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* SUB SECTION
/* ------------------------------------------------------------------------------------------------------------------ */

.xet-lnb-h a {
	display: inline-block;
	margin: 0 15px 15px;
	color: #333;
	border-bottom: 2px solid transparent;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
}
.xet-lnb-h a:hover,
.xet-lnb-h a.current {
	border-color: #d4a300;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* CONTENT
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-content { 
	position: relative; 
	margin: 0;
	padding: 0;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* FOOTER
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-footer {
	z-index: 9;
	position: relative;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 12px 45px;
	height: auto;
	overflow: hidden;
	font-size: 12px;
	color: #111;
	background-color: #fff;
}
.xet-sns-icon a {
	display: inline-block;
	width: 24px;
	height: 24px;
	line-height: 24px;
	font-size: 14px;
	text-align: center;
	margin: 0 5px;
	vertical-align: middle;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%; 
	border-radius: 50%; 
	color: #fff;
	background-color: #222;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* MORE BUTTON
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-more-btn { 	
	cursor: pointer;
	font-size: 12px;
	font-weight: normal;
	padding: 6px 20px;
	text-align: center;
	display: inline-block;
	text-decoration: none;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px; 
	border-radius: 1px; 
	border: 1px solid rgba(255,255,255,0.1);
	background-color: #6595A6;
	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;
}
.xet-more-btn.xet-invert {
	background-color: #f1f1f1;
	color: #333;
}
.xet-more-btn.round {
	width: 45px;
	height: 45px;
	line-height: 45px;
	padding: 0;
	text-align: center;
	font-size: 24px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.9);
	background-color: transparent !important;
}
.xet-more-btn.small {
	font-size: 11px;
	padding: 5px 20px;
}
.xet-more-btn:hover { 
	border: 1px solid rgba(255,255,255,0);
}


/* Border Hover Effects
-------------------------------------- */
.xet-border-eft {
	display: inline-block;
	position: relative;
	overflow: hidden;
}
.xet-border-eft:before, 
.xet-border-eft:after {
    display: block;
    width: 100%;
    content: '';
    box-sizing: border-box;
    position: absolute;
    height: 0;
}
.xet-border-eft:before {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    left: -100%;
    top: 0;
    height: 0;
}
.xet-border-eft:after {
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    left: 100%;
    bottom: 0;
    height: 0;
}
.xet-border-eft.xet-invert:before {
    border-top: 1px solid #000;
    border-right: 1px solid #000;
}
.xet-border-eft.xet-invert:after {
    border-bottom: 1px solid #000;
    border-left: 1px solid #000;
}
@-webkit-keyframes left-up {
    0% {
        left:100%;
        height:0;
    }
    50% {
        left:0;
        height:0;
    }
    100% {
        height:100%;
        left:0;
    }
}
@-webkit-keyframes right-dn {
    0% {
        left:-100%;
        height:0;
    }
    50% {
        left:0;
        height:0;
    }
    100% {
        height:100%;
        left:0;
    }
}
@keyframes left-up {
    0% {
        left:100%;
        height:0;
    }
    50% {
        left:0;
        height:0;
    }
    100% {
        height:100%;
        left:0;
    }
}
@keyframes right-dn {
    0% {
        left:-100%;
        height:0;
    }
    50% {
        left:0;
        height:0;
    }
    100% {
        height:100%;
        left:0;
    }
}
.xet-border-eft:hover {}
.xet-border-eft:hover:after, 
.xet-border-eft:hover:before {
    -webkit-animation-duration:300ms;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-duration:300ms;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}
.xet-border-eft:hover:after {
    -webkit-animation-name:left-up;
    animation-name:left-up;
}
.xet-border-eft:hover:before {
    -webkit-animation-name:right-dn;
    animation-name:right-dn;
}



/* ------------------------------------------------------------------------------------------------------------------ */
/* Animation Delay Time
/* ------------------------------------------------------------------------------------------------------------------ */
.hidden {
	opacity: 0;
	opacity: 1 \0/IE9;/*IE9적용*/
}

.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-1s { 
	animation-delay: 1s; 
	-webkit-animation-delay: 1s; 
}
.delay-12s { 
	animation-delay: 1.2s; 
	-webkit-animation-delay: 1.2s; 
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Theme Setting
/* ------------------------------------------------------------------------------------------------------------------ */
.theme-color {
	color: #d4a300;
}