/*
 * 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: #353535; }
hmtl, body, table, th, td, button, input { font-family: 'Lato', 'Nanum Gothic', '굴림', Gulim, '돋움', 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,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}
/* 반응형을 위한 */
img,
embed,
object,
video {
    max-width: 100%;
}


/* header
-------------------------------------- */  
#xet-header {
	position: relative;
	background-color: #fff;
	border-bottom: 1px solid #e1e1e1;
}

/* logo */
#xet-header .xet-logo a {
	overflow: hidden;
	display: inline-block;	
	font-size: 64px;
	font-weight: 300;
	color: #55493d;
}
#xet-header .xet-logo a i {
	color: #9fcb00;
}
#xet-header .xet-logo p {
	color: #777;
}
#xet-header .xet-logo a img { 
	max-width: 100%;
	vertical-align: top; 
}

/* login btn */
.xet-acc {
	padding: 10px 15px;
	text-align: right;
	border-bottom: 1px solid #f1f1f1;
}
.xet-acc a {
	display: inline-block;
	font-size: 12px;
	margin-left: 10px;
	color: #777;
}
.xet-acc a:hover {
	color: #9fcb00;
}


/* Slider
-------------------------------------- */  
.xet-slider {
	position: relative;
}


/* NAV
-------------------------------------- */  
#xet-nav {
	z-index: 99;
	position: absolute;
	top: -30px;
	left: 0;
	right: 0;
}
.xet-nav { 
	margin: 0;
	padding: 0;
	list-style: none;		
	display: table;
	width: 100%;
	box-shadow:0 4px 5px -3px rgba(0,0,0,.2);
	border: 1px solid #e1e1e1;
	border-bottom-color: #d1d1d1;
}
.xet-nav > li { 
	position: relative; 
	display: table-cell;	
	float: left;
	margin: 0;
	padding: 0; 	
	vertical-align: middle;
	border-left: 1px solid #333;
}
.xet-nav > li:first-child {
	border-left: 0;
}
.xet-nav > li:last-child { 
	float: right !important; /*소수점 처리 위한 */
}
.xet-nav > li > a { 
	position: relative;
	display: block;
	font-size: 14px; 
	text-decoration: none;
	cursor: pointer;
	margin: 0;
	padding: 0; 
	height: 60px;
	line-height: 60px;
	overflow: hidden;
	color: #fff;
	background-color: #55493d;	
}
.xet-nav > li > a:after {
	display: block;
	position: absolute;
	top: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	z-index:2;
	content:'';
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	transition:all 0.3s ease;
	background: #fff;
}
.xet-nav > li:hover {
	text-decoration:none !important;
	color:#fff !important;
	background:transparent !important;
}
.xet-nav > li:hover > a:after { 
	top: 0; 
}

.xet-nav > li > a > span {
	display: block;
	position:relative;
	z-index: 3;
	vertical-align: middle;
	white-space: nowrap;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.xet-nav > li.current > a {
	background-color: #fff;
	color: #55493d;
}
.xet-nav > li:hover > a {
	color: #55493d;
}

/* scroll fixed */
.scroll-to-fixed-fixed {
	background-color: #fff;
	background-color: rgba(255,255,255,.8);
	border-bottom: 1px solid #e1e1e1;
	box-shadow:0 4px 5px -3px rgba(0,0,0,.2);
}
.scroll-to-fixed-fixed .xet-nav {
	border: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}
.scroll-to-fixed-fixed .xet-nav > li > a {
	height: 40px;
	line-height: 40px;
}

/* 2차 메뉴 */
.xet-nav ul { 
	z-index: 99; 
	display: none;
	position: absolute; 
	left: 0; 
	top: 100%;	
	width: 100%;
	list-style: none;
	margin: 0; 
	padding: 8px 0;
	box-shadow:0 4px 5px -3px rgba(0,0,0,.2);
	-webkit-box-shadow: 0px 4px 5px -3px rgba(0,0,0,.2);
	background-color: #55493d;	
}
.xet-nav ul li { 
	position: relative;
	display: block; 
	height: auto;
}
.xet-nav ul li:first-child { 
	border-top: 0 solid transparent; 
}
.xet-nav ul li a { 
	display: block; 
	font-size: 12px; 
	font-weight: normal; 
	padding: 8px 15px;
	line-height: 1.5;
	*zoom:1;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;	
	color: #fff; 
}
.xet-nav ul li span.child {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 30px;
	font-size: 12px; 
	font-weight: normal; 
	padding: 8px;
	line-height: 1.5;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;	
	color: #777;
}

/* 3차 메뉴 */
.xet-nav ul ul { 
	top: -8px; 
	left: 100%; 
}
.xet-nav ul ul li a { 
	text-align: left;
}

/* show */
.xet-nav li:hover > ul {
	display: block;
	-moz-animation: fadeIn 0.5s ease-in-out ;
    -webkit-animation: fadeIn 0.5s ease-in-out ;
    animation: fadeIn 0.5s ease-in-out;
}

/* last child */
.xet-nav > li:last-child ul { 
	left: auto !important;
	right: 0px !important;
}

.xet-nav > li:last-child ul ul { 
	right: 100% !important;
}
.xet-nav > li:last-child ul ul li a { 
	text-align: right !important; 
}
.xet-nav > li:last-child ul li span.child {
	left: 0 !important;
}

/* color */
.xet-nav ul li:hover > a,
.xet-nav ul li:hover > span.child {
	color: #9fcb00;
}

/* Mobile NAV
-------------------------------------- */  
.xet-m-nav {
	z-index: 99;
	position: absolute;
	top: -20px;
	left: 0;
	right: 0;
}
.xet-m-nav .xet-nav-click {
	display: block;
	font-size: 16px;
	height: 50px;
	line-height: 50px;
	padding: 0 15px;
	box-shadow:0 4px 5px -3px rgba(0,0,0,.2);
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,.2);
	border-bottom: 0;	
	color: #fff;
	background-color: #55493d;
}
.mobile-nav {
	display: none;
	max-height: 300px;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch; 
	box-shadow:0 4px 5px -3px rgba(0,0,0,.1);
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,.1);
	background-color: #fff;
	border: 1px solid #e1e1e1;
	border-top: 0;	
}
.xet-mobile-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}	
.xet-mobile-nav li { 
	float: none;	
	position: relative;
	margin: 0;
	padding: 0;
	border-top: 1px solid #e1e1e1;
}	
.xet-mobile-nav li:first-child {
	border: 0;
} 
.xet-mobile-nav li a { 
	display: block;
	cursor: pointer;
	text-align: left;
	font-size: 13px;
	margin-right: 60px;
	padding: 10px 15px;
	color: #555;
}	
.xet-mobile-nav .child a.child {
	position: absolute;
	top: 0;
	right: 0;
	width: 45px;	
	text-align: center;
	margin-right: 0;
	padding: 10px 0;
	color: #777;
}
.xet-mobile-nav .child a.child.submenu-open {
	color: #9fcb00;
}

/* 2차 */
.xet-mobile-nav ul { 
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
}
.xet-mobile-nav ul li { 
	margin: 0;
	padding: 0;
	border: 0;
}
.xet-mobile-nav ul li a {
	padding: 10px 0 10px 15px;
}
/* 3차 */
.xet-mobile-nav ul ul a { 
	padding: 10px 0 10px 30px;
}
/* color */
.xet-mobile-nav > li a:hover,
.xet-mobile-nav > li a.current {
	color: #9fcb00;
}



/* main sections
-------------------------------------- */  
.xet-section {
	position: relative;
	color: #555;
	background-color: #fff;
}
.xet-section img { 
	vertical-align: top;
	max-width: 100%;
}
.xet-section h2.h2 {
	color: #55493d;
}
.xet-section.bg {
	background-color: #ececec;
}

/* parallax bg */
.xet-section.parallax.parallax1 {
	background-image: url(../img/sample/parallax-bg.jpg);
}
.xet-section.parallax.parallax2 {
	background-image: url(../img/sample/parallax2-bg.jpg);
}
.xet-section.parallax {	
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: 50%;
	background-color: #333;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
@media \0screen { 
	.xet-section.parallax {		
		background-attachment: scroll;
		background-position: 50% 0;
	}	
}
.xet-section.parallax,
.xet-section.parallax h2.h2,
.xet-section.parallax h2.h2 a,
.xet-section.parallax h4.h4 {
	color: #fff !important;
}
.xet-section.parallax .xet-inbox {
	padding: 30px;
	background: #fff;
}
.xet-section.parallax .xet-inbox,
.xet-section.parallax .xet-inbox h2.h2,
.xet-section.parallax .xet-inbox h2.h2 a,
.xet-section.parallax .xet-inbox h4.h4 {
	color: #55493d !important;
} 

/* section1 */
.xet-section .thumb {
	color: #9fcb00;
}
.xet-section a.thumb_link {
	display: block;
	overflow: hidden;
	cursor: pointer;
	cursor: -moz-zoom-in;
	cursor: -webkit-zoom-in;
	cursor: zoom-in;
	background-color: #9fcb00;
}
.xet-section a.thumb_link img {
	width: 100%;
	-webkit-transition:0.8s;
	-moz-transition:0.8s;
	-o-transition:0.8s;
	transition:0.8s;
}
.xet-section a.thumb_link:hover img {
	opacity: 0.8;
	-webkit-transform:scale(1.1);
	-moz-transform:scale(1.1);
	-ms-transform:scale(1.1);
	-o-transform:scale(1.1);
	transform:scale(1.1);
	-webkit-transition:0.4s;
	-moz-transition:0.4s;
	-o-transition:0.4s;
	transition:0.4s;
}

/* widget code area */
.xet-code {}


/* BODY
-------------------------------------- */  
.xet-lnb-wrp .xet-lnb-title {
	border-bottom: 1px solid #e1e1e1;
}
.xet-lnb-wrp .xet-lnb-title h3,
.xet-lnb-wrp .xet-lnb-title h4 {
	display: inline-block;
}
.xet-lnb-wrp .xet-lnb-title h3 a,
.xet-lnb-wrp .xet-lnb-title h4 a {
	color: #555;
}
.xet-lnb {
	list-style: none; 
	margin: 0;
	padding: 0;	
	border-bottom: 1px solid #e1e1e1;
}
.xet-lnb > li {
	display:inline; 
	margin: 0;
	padding: 0;	
}
.xet-lnb > li:after { 
	content: "  /";
	color: #ccc;
}
.xet-lnb > li:last-child:after { 
	content: " ";
}
.xet-lnb > li a {
	display: inline-block;
	padding: 0 5px 5px;
	font-size: 14px;
	color: #555;
	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 a.on,
.xet-lnb a:hover {
	color: #9fcb00;
}

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


/* footer
-------------------------------------- */  
.xet-footer,
.xet-footer a {
	color: #fff;
}
.xet-footer strong i {
	vertical-align: middle;
}
.xet-footer .xet-logo {
	display: inline-block;
	font-size: 48px;
	font-weight: 300;
	color: #9fcb00;
}
.xet-footer .xet-logo img {
	max-width: 100%;
	vertical-align: top; 
}

/* footer menu */
.xet-footer-nav { 
	margin: 0; 
	padding: 0; 
	list-style:none; 
}
.xet-footer-nav li { 
	display: inline; 
	margin: 0;
	padding: 0;	
}
.xet-footer-nav > li:after { 
	content: "  /";
	color: #ccc;
}
.xet-footer-nav > li:last-child:after { 
	content: " ";
}
.xet-footer-nav li a { 
	display:inline-block;
	padding: 5px;
	font-weight:normal; 
	font-size: 12px; 
	cursor: pointer;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
	color: #fff;
}
.xet-footer-nav li a:hover {
	color: #9fcb00;
}

/* contact, copyright */
.xet-contact p {
	margin-bottom: 5px;
	color: #fff;
}


/* sns icon */
.xet-sns a {
	position: relative;
	display: inline-block;
	margin: 0 5px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 18px;
	text-align: center;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%; 
	border-radius: 50%; 
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
	color: #fff;
	background-color: #55493d;	
}
.xet-sns > a > span {
	position:relative;
	z-index: 3;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.xet-sns > a:after {
	display:block;
	position:absolute;
	top:100%;
	right:0;
	bottom:0;
	left:0;
	z-index:2;
	content:'';
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	-o-transition:all 0.4s ease;
	transition:all 0.4s ease;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%; 
	border-radius: 50%; 
	background: #9fcb00;
}
.xet-sns > a:hover {
	text-decoration:none !important;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	transition:all 0.3s ease;
	color:#fff !important;
	background:transparent !important;
}
.xet-sns > a:hover:after { 
	top:0; 
}
.xet-sns > a:hover {
	background-color: #9fcb00;
}


/* more-buttons
-------------------------------------- */
.btn-more { 	
	position: relative;
	font-size: 12px;
	font-weight: 600;
	height: 40px;
	line-height: 40px;
	padding: 0 70px 0 30px;
	text-align: center;
	display: inline-block;
	text-decoration: none;
	background-color: #55493d;
	border: 0;
	color: #fff !important;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
}
.btn-more.small { 	
	height: 30px;
	line-height: 30px;
	padding: 0 50px 0 20px;
}
.btn-more span {
	position:relative;
	z-index: 3;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	transition:all 0.3s ease;
}
.btn-more i {
	z-index: 3;
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 100%;
	line-height: 40px;
	background-color: #9fcb00;
}
.btn-more.small i {
	width: 30px;
	line-height: 30px;
}
.btn-more:after {
	display:block;
	position:absolute;
	top:100%;
	right:0;
	bottom:0;
	left:0;
	z-index:2;
	content:'';
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	-o-transition:all 0.4s ease;
	transition:all 0.4s ease;
	background: #9fcb00;
}
.btn-more:hover {	
	text-decoration:none !important;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	transition:all 0.3s ease;
	color:#fff !important;
	background:transparent !important;
}
.btn-more:hover:after { 
	top:0; 
}

/* TOP Scroll buttons
-------------------------------------- */
#xet-top-scroll { 
	z-index:999;
	display:none;
	text-decoration:none;
	position:fixed; 
	bottom: 15px;
	right: 15px;
	overflow:hidden; 
	width: 60px; 
	height: 60px; 
	line-height: 60px;
	text-align: center;
	font-size: 24px;
	border: 0; 
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
	background: #55493d; 
	color: #fff;
}
#xet-top-scroll:hover { 
	 background: #9fcb00;
}
#xet_top_scroll:active, 
#xet_top_scroll:focus { 
	outline:none; 
}


/* border
-------------------------------------- */ 
.border1 {
	border: 1px solid #ccc;
}
.border-b1 {
	border-bottom: 1px dotted #e1e1e1;
}
.no-border {
	border: 0;
}

/* radius
-------------------------------------- */ 
.r2 { 
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px; 
	border-radius: 2px; 
}
.r3 { 
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px; 
	border-radius: 3px; 
}
.r5 { 
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px; 
	border-radius: 5px; 
}
.r50 { 
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%; 
	border-radius: 50%; 
}


/* viewportchecker
-------------------------------------- */  
.hidden {
	opacity: 0;
}
.visible{
	opacity: 1;
}

/* Animation delay time
-------------------------------------- */ 
.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; 
}