/*
 * Copyright inpleworks, Co.
*/

/* ------------------------------------------------------------------------------------------------------------------ */
/* reset
/* ------------------------------------------------------------------------------------------------------------------ */  
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html, body { 
	height:100%;
	font-size: 14px;
	line-height: 1.42857143;
    -webkit-text-size-adjust: none; 
	-moz-text-size-adjust: none; 
	-ms-text-size-adjust: none; 
}
body { margin:0; padding:0; background: #3c3c3c; color: #555; }
hmtl, body, table, th, td, button, input { font-family: 'Noto Sans KR','Nanum Gothic', 'Apple SD Gothic Neo', '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,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Page loader
/* ------------------------------------------------------------------------------------------------------------------ */  
@keyframes rotate-loading {
    0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
    100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
}
@-moz-keyframes rotate-loading {
    0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
    100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
}
@-webkit-keyframes rotate-loading {
    0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
    100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
}
@-o-keyframes rotate-loading {
    0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
    100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
}
@keyframes rotate-loading {
    0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
    100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
}
@-moz-keyframes rotate-loading {
    0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
    100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
}
@-webkit-keyframes rotate-loading {
    0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
    100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
}
@-o-keyframes rotate-loading {
    0%  {transform: rotate(0deg);-ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); -o-transform: rotate(0deg); -moz-transform: rotate(0deg);}
    100% {transform: rotate(360deg);-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -moz-transform: rotate(360deg);}
}
@keyframes loading-text-opacity {
    0%  {opacity: 0}
    20% {opacity: 0}
    50% {opacity: 1}
    100%{opacity: 0}
}
@-moz-keyframes loading-text-opacity {
    0%  {opacity: 0}
    20% {opacity: 0}
    50% {opacity: 1}
    100%{opacity: 0}
}
@-webkit-keyframes loading-text-opacity {
    0%  {opacity: 0}
    20% {opacity: 0}
    50% {opacity: 1}
    100%{opacity: 0}
}
@-o-keyframes loading-text-opacity {
    0%  {opacity: 0}
    20% {opacity: 0}
    50% {opacity: 1}
    100%{opacity: 0}
}
.loading-page { 
	display:block;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #1b1b1b;
	z-index: 100000;	    
}
.loading-container {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -50px 0 0 -50px;
}
.loading-container .loading {
	height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
    border: 2px solid transparent;
    border-color: transparent #fff transparent #FFF;
    -moz-animation: rotate-loading 1.5s linear 0s infinite normal;
    -moz-transform-origin: 50% 50%;
    -o-animation: rotate-loading 1.5s linear 0s infinite normal;
    -o-transform-origin: 50% 50%;
    -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
    -webkit-transform-origin: 50% 50%;
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}
.loading-container:hover .loading {
    border-color: transparent #E45635 transparent #E45635;
}
.loading-container:hover .loading,
.loading-container .loading {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.loading-container .loading-text {
	-moz-animation: loading-text-opacity 2s linear 0s infinite normal;
	-o-animation: loading-text-opacity 2s linear 0s infinite normal;
	-webkit-animation: loading-text-opacity 2s linear 0s infinite normal;
	animation: loading-text-opacity 2s linear 0s infinite normal;
	color: #ffffff;
	font-family: "Helvetica Neue, "Helvetica", ""arial";
	font-size: 10px;
	font-weight: bold;
	margin-top: 45px;
	opacity: 0;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	top: 0;
	width: 100px;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Home Slider
/* ------------------------------------------------------------------------------------------------------------------ */  
#supersized {  
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	z-index: -2; 
	height: 100%; 
	width: 100%;
	margin: 0;
	padding: 0;
	background: url(../img/loading.gif) no-repeat center center #111;
}
#supersized img {
	vertical-align: top;
	width: auto;
	height: auto;
	position: relative; 
	display: none; 
	outline: none; 
	border: none; 
}
#supersized.speed img { 
	-ms-interpolation-mode:nearest-neighbor;
	image-rendering: -moz-crisp-edges; 
}	
#supersized.quality img { 
	-ms-interpolation-mode:bicubic;
	image-rendering: optimizeQuality; 
}	
#supersized li { 
	display :block; 
	list-style: none; 
	z-index: -30; 
	position: absolute;
	overflow: hidden; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
	background-color: #111;
}
#supersized a { 
	width: 100%; 
	height: 100%; 
	display: block; 
}
#supersized li.prevslide { 
	z-index: -20; 
}
#supersized li.activeslide {
	z-index: -10; 
}
#supersized li.image-loading img{ 
	visibility: hidden; 
}
#supersized li.prevslide img, 
#supersized li.activeslide img{ 
	display: inline-block; 
}
.xet-home-slider {
	position: relative;
	overflow: hidden;
	height: 100%;
	font-family: 'Noto Sans KR','Michroma', sans-serif;
}
.xet-home-slider .overlay3 { 
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0.3;
	filter: alpha(opacity=30); -ms-filter: alpha('opacity=30'); 
	z-index: 0;
	background: #000;
}
.xet-home-slider .slider-wrap {
	position: relative;
	overflow: hidden;
	height: 100%;
}
.xet-home-slider .slider-text > div > div{
	position: absolute;
	left: 15px;
	right: 15px;
	top: 10%;
	bottom: 10%;
	text-align: left;
	z-index: 2;	
}
.xet-home-slider .slider-text > div > div:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
.xet-home-slider .slider-text > div > div > div {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
	margin-left: 14%;
    margin-top: 45px;

}
.xet-home-slider .slide-content {
	color: #fff;
/*	text-shadow: 1px 1px 2px rgba(100, 100, 100, 0.6);*/
}

/* title */
.xet-home-slider .slide-content h1.h1 {
   position: relative;
      text-align: left;
    font-size: 46px;
    color: #0074be;
	font-weight:500;
	font-family: 'GmarketSansMedium', 'GmarketSansBold', 'GmarketSansLight', sans-serif;
}
/*.xet-home-slider .slide-content h1.h1::after {
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -40px;
    position: absolute;
    top: 125%;
    width: 80px;
    background-color: #fff;
}*/
.xet-home-slider .slide-content h4.h4 {
    font-size: 17px;
	line-height:28px;
    color: #444;
	font-weight: 300;
}

/* logo */
.xet-home-slider .xet-logo-top {
	display: inline-block;
}
.xet-home-slider img {
	vertical-align: top;
	max-width: 100%;
}
/* start btn */
.xet-home-slider .home-start {
	z-index: 2;
	position: absolute;
	bottom: 70px;
	left: 50%;
	width: 60px;
	margin-left: -30px;
	text-align: center;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
	-webkit-animation: scroll-down-anim 1s infinite;
    -moz-animation: scroll-down-anim 1s infinite;
    -o-animation: scroll-down-anim 1s infinite;
    animation: scroll-down-anim 1s infinite; 
}
.xet-home-slider .btn-start {
	display: inline-block;
	text-align: center;	
	color: #fff;
	text-shadow: 0px 0px 3px rgba(0,0,0,.3);	
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
}
/* Scroll down icon */
@-webkit-keyframes scroll-down-anim {
	0%{ bottom: 55px; }
	50%{ bottom: 70px; }
	100%{ bottom: 55px; }
}
@-moz-keyframes scroll-down-anim {
	0%{ bottom: 55px; }
	50%{ bottom: 70px; }
	100%{ bottom: 55px; }
}
@-o-keyframes scroll-down-anim {
	0%{ bottom: 55px; }
	50%{ bottom: 70px; }
	100%{ bottom: 55px; }
}
@keyframes scroll-down-anim {
	0%{ bottom: 55px; }
	50%{ bottom: 70px; }
	100%{ bottom: 55px; }
}
.xet-home-slider .btn-start:hover {
	color: #EB0B25;
}

/* Arrow Navigation */
.xet-home-slider .slider-nav {
	z-index: 3;
	position: absolute;
	top: 50%;

	cursor: pointer;
	display: inline-block;
	opacity: .5;
	filter: alpha(opacity=50); -ms-filter: alpha('opacity=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;
}
.xet-home-slider .slider-nav:hover {
	opacity: 1;
	filter: alpha(opacity=100); -ms-filter: alpha('opacity=100'); 
	color: #EB0B25;
}
.xet-home-slider #prevslide {
	left: 15px;
}
.xet-home-slider #nextslide {
	right: 15px;
}
/* Paging Navigation */
ul#slide-list {
	position: absolute;
	left: 50%;
	bottom: 30px;
	margin: 0;
	padding: 0;	
}
ul#slide-list li {
	float: left;
	list-style: none;
	margin: 0 3px;
	padding: 0;
	width: 12px;
	height: 12px;
}
ul#slide-list li a {
	display: inline-block;
	cursor: pointer;
	text-indent: -9999px;
	width: 12px;
	height: 8px;
	opacity: .5;
	filter: alpha(opacity=50); -ms-filter: alpha('opacity=50'); 
	border: 1px solid #eee;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
}
ul#slide-list li:hover a {
	opacity: 1;
	filter: alpha(opacity=100); -ms-filter: alpha('opacity=100'); 
	background-color: #fff;
	border-color: #fff;
}
ul#slide-list li.current-slide {
	width: 24px;
}
ul#slide-list li.current-slide a {
	width: 24px;
	opacity: 1;
	filter: alpha(opacity=100); -ms-filter: alpha('opacity=100'); 
	background-color: #fff;
	border-color: #fff;
}

/* header
-------------------------------------- */  
#xet-header {
	z-index: 100;
	width: 100%;
	height: 70px;
	position: relative;
	background-color: #1b1b1b;
	border-bottom: 1px solid #2b2b2b;
	box-shadow:0 4px 5px -3px rgba(0,0,0,.3);
}
#xet-header.fix-top {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	background: transparent;
	border-bottom: 0;
	box-shadow: none;
}
@media \0screen { 
	#xet-header.fix-top {
		position: fixed;
		background-color: #1b1b1b;
		border-bottom: 1px solid #2b2b2b;
	}
}
#xet-header .xet-logo a {
	margin-top: 7px;
	height: 55px;
	line-height: 55px;
	overflow: hidden;
	display: inline-block;	
	font-size: 20px;
	font-family: 'Noto Sans KR','Michroma', sans-serif;
	font-weight: 400;
	color: #fff;
}
#xet-header .xet-logo a img { 
	display: none;
	max-width: 100%;
	height: 100%;
	vertical-align: top; 
}
#xet-header .xet-logo a img.logo-img { 
	display: block;
}

/**
 * Headhesive stick 
 */
#xet-header.clone {
	position: fixed;
	top: 0;
	background-color: #1b1b1b;
	border-bottom: 1px solid #2b2b2b;
	box-shadow:0 4px 5px -3px rgba(0,0,0,.3);
	-webkit-box-shadow: 0px 4px 5px -3px rgba(0,0,0,.3);
	-webkit-transform: translateY(-200%);
    -ms-transform: translateY(-200%);
    transform: translateY(-200%);
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}
#xet-header.stick {
	-webkit-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
}
#xet-header.unstick {}


/* PC NAV
-------------------------------------- */  
.xet-nav { 
	margin: 0 0 0 0;
	padding: 0;
	list-style: none;
}
.xet-nav > li { 
	position:relative; 
	float: left;
	margin:0;
	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 > li > a { 
	display: inline-block;
	font-size: 13px; 
	text-decoration:none;
	cursor:pointer;
	margin: 0 15px;
	padding: 0; 
	line-height: 70px;	
	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-nav > li > a > i {
	font-size: 10px;
	margin-left: 3px;
	opacity: 0.5;
	filter: alpha(opacity=50); -ms-filter: alpha('opacity=50'); 
}
.xet-nav > li:hover {
	background-color: rgba(0,0,0,.5);
}
.xet-nav > li:hover > a,
.xet-nav > li > a.current {
	color: #EB0B25;
}

/* 2차 메뉴 */
.xet-nav ul { 
	z-index: 99; 
	display: none;
	position: absolute; 
	left: 0px; 
	top: 100%;	
	min-width:auto;
	width: 160px;
	list-style: none;
	margin: 0; 
	padding: 0;
	box-shadow:0 4px 5px -3px rgba(0,0,0,.1);
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,.1);    
    -webkit-animation: slide-up-nav 0.3s forwards;
    animation: slide-up-nav 0.3s forwards;
}

.xet-nav ul li { 
	position: relative;
	float: none; 
	height: auto;
	line-height: 1.5;
	background: #3b3b3b;
	border-top: 1px solid #2b2b2b;
	border-top: 1px solid rgba(0,0,0,.1);
}
.xet-nav ul li:first-child { 
	border-top: 0; 
}
.xet-nav ul li a { 
	display: block; 
	font-size: 12px; 
	font-weight: normal; 
	font-family: 'Noto Sans KR','Nanum Gothic','Apple SD Gothic Neo', 'Malgun Gothic', '돋움', Dotum, 'Lucida Sans', 'Trebuchet MS', Arial, Tahoma, sans-serif;
	padding: 10px 15px;
	color: #ccc; 
	*zoom:1;
}
.xet-nav ul li span.child {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 30px;
	font-size: 12px; 
	font-weight: normal; 
	text-align: center;
	padding: 10px 0;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;	
	color: #999;
}

/* 3차 메뉴 */
.xet-nav ul ul { 
	top: 0px; 
	left: 100%; 
	-webkit-animation: slide-up-nav2 0.3s forwards;
    animation: slide-up-nav2 0.3s forwards;
}

/* show */
.xet-nav li:hover > ul {
	display: block;
}

@-webkit-keyframes slide-up-nav {
    0% {
        top: 120%;
        opacity: 0;
    }
    100% {
        top: 100%;
        opacity: 1;
    }
}
@keyframes slide-up-nav {
    0% {
        top: 120%;
        opacity: 0;
    }
    100% {
        top: 100%;
        opacity: 1;
    }
}
@-webkit-keyframes slide-up-nav2 {
    0% {
        top: 120%;
        opacity: 0;
    }
    100% {
        top: 0px;
        opacity: 1;
    }
}
@keyframes slide-up-nav2 {
    0% {
        top: 120%;
        opacity: 0;
    }
    100% {
        top: 0px;
        opacity: 1;
    }
}

/* last child */
.xet-nav > li:last-child ul { 
	left: auto !important;
	right: 0px !important;
}
.xet-nav > li:last-child ul li a { 
	text-align: right !important; 
}
.xet-nav > li:last-child ul ul { 
	right: 100% !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,
.xet-nav li:last-child ul li:hover > a {
	color: #EB0B25;
}


/* header button */
.xet-acc-btn-wrp {
	list-style: none;
	margin: 0;
	padding: 0;
}
.xet-acc-btn-wrp li {
	float: left;
	margin: 13px 0 0;
	padding: 0;
}
.xet-acc-btn-wrp li .xet-acc-btn {
	display: block;
	cursor: pointer;
	margin: 0;
	width: 36px;
	height: 36px;
	line-height: 36px;
	padding: 0;
	text-align: center;
	vertical-align: top;
	font-size: 14px;
	background-color: transparent;
	border: 0;
	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-acc-btn-wrp li .xet-acc-btn i {
	margin-top: 8px;
	font-size: 22px;
	vertical-align: middle;
}

/* color */
.xet-acc-btn-wrp li:hover .xet-acc-btn {
	color: #EB0B25;
}


/* Header Light Theme */
#xet-header.fix-top.theme-light {
/*	background-color: transparent;*/
	border: 0;
	box-shadow: none;
}
#xet-header.fix-top.theme-light .xet-logo a,
#xet-header.fix-top.theme-light .xet-nav > li > a,
#xet-header.fix-top.theme-light .xet-acc-btn-wrp li .xet-acc-btn { 
	color: #333;
}
#xet-header.theme-light,
#xet-header.clone.theme-light {
	background-color: #fff;
	border-bottom: 1px solid #e1e1e1;
	box-shadow:0 3px 5px -3px rgba(0,0,0,.2);
	-webkit-box-shadow: 0px 3px 5px -3px rgba(0,0,0,.2);
}
#xet-header.theme-light .xet-logo a,
#xet-header.clone.theme-light .xet-logo a,
#xet-header.theme-light .xet-nav > li > a,
#xet-header.clone.theme-light .xet-nav > li > a,
#xet-header.theme-light .xet-acc-btn-wrp li .xet-acc-btn,
#xet-header.clone.theme-light .xet-acc-btn-wrp li .xet-acc-btn { 
	color: #333;
}
#xet-header.theme-light .xet-nav > li:hover {
	background-color: rgba(0,0,0,.1);
}
#xet-header.theme-light .xet-acc-btn-wrp li:hover .xet-acc-btn,
#xet-header.clone.theme-light .xet-acc-btn-wrp li:hover .xet-acc-btn,
#xet-header.theme-light .xet-nav > li:hover > a,
#xet-header.theme-light .xet-nav > li > a.current {
	color: #EB0B25;
}

/* logo img */
#xet-header.theme-light.sub-top .xet-logo a img.logo-img,
#xet-header.theme-light.fix-top.clone .xet-logo a img.logo-img { 
	display: none;
}
#xet-header.theme-light.sub-top .xet-logo a img.logo-img-b,
#xet-header.theme-light.fix-top.clone .xet-logo a img.logo-img-b { 
	display: block;
}

@media \0screen { 
	#xet-header.fix-top.theme-light {
		background-color: #fff;
		border-bottom: 1px solid #e1e1e1;
	}
	#xet-header.fix-top.theme-light .xet-logo a,
	#xet-header.fix-top.theme-light .xet-nav > li > a,
	#xet-header.fix-top.theme-light .xet-acc-btn-wrp li .xet-acc-btn { 
		color: #333;
	}
}


/* main sections
-------------------------------------- */  
.xet-section {
	position: relative;
	color: #555;
	background-color: #fff;
}
.xet-section h1,
.xet-section h2,
.xet-section h3,
.xet-section h4,
.xet-section h5 { font-family: 'Noto Sans KR','Michroma', sans-serif; }
.xet-section.color-white {
	color: #fff;
}
.xet-section img { 
	vertical-align: top;
	max-width: 100%;
}
.xet-section .under-line {
	position: relative;
}
.xet-section .under-line::after {
    content: "";
    height: 3px;
    left: 50%;
    margin-left: -30px;
    position: absolute;
    top: 125%;
    width: 60px;
    background-color: #EB0B25;
}
.xet-section a.more {
	color: #555;
}


/* bg */
.bg-ff {
	background-color: #fff;
}
.bg-f1 {
	background-color: #f1f1f1;
}
.bg-00 {
	background-color: #000;
}
.bg-1b {
	background-color: #1b1b1b;
	color: #fff;
}
.bg-f3 {
	background-color: #F3F3F3;
}
.bg-cf {
	background-color: #CFCFCF;
}
.bg-parallax {
	position: relative;
/*	background-attachment: fixed;*/
	background-repeat: no-repeat;
	background-position: 50%;
	background-color: #111;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
@media \0screen { 
	.bg-parallax {		
		background-attachment: scroll;
		background-position: 50% 0;
	}	
}
.bg-parallax .xet-container {}

/* background image full */
.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 Overlay */
.xet-section .overlay3 { 
	background-color: rgba(0,0,0,.3);
}
.xet-section .overlay6 { 
	background-color: rgba(0,0,0,.6);
}


/* about section icon style - none */
.xet-section .xet-none {
	position: relative;	
}
.xet-section .xet-none p {
	display: inline-block;
	width: 100px;
	height: 100px;
	line-height: 100px;
	overflow: hidden;
	text-align: center;
}
.xet-section .xet-none i {
	vertical-align: middle;
	color: #555;
}

/* about section icon style - Quard */
.xet-section .xet-quard {
	position: relative;	
}
.xet-section .xet-quard p {
	display: inline-block;
	width: 100px;
	height: 100px;
	line-height: 100px;
	overflow: hidden;
	text-align: center;
	border: 1px solid #2b2b2b;
	-webkit-box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, .05);
	box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, .05); 	
}
.xet-section .xet-quard i {
	vertical-align: middle;
	color: #555;
}

/* about section icon style - radius */
.xet-section .xet-radius {
	position: relative;	
}
.xet-section .xet-radius p {
	display: inline-block;
	width: 100px;
	height: 100px;
	line-height: 100px;
	overflow: hidden;
	text-align: center;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%; 
	border-radius: 50%; 
	border: 1px solid #2b2b2b;
	-webkit-box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, .05);
	box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, .05); 	
}
.xet-section .xet-radius i {
	vertical-align: middle;
	color: #555;
}

/* about section icon style - rhombus */
.xet-section .xet-rhombus {
	position: relative;
	margin: 50px auto;
	display: block;
	width: 100px;
	height: 100px;
	overflow: hidden;
	transform: rotate(45deg);
	-ms-transform: rotate(45deg); /* IE 9 */
	-webkit-transform: rotate(45deg);
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px; 
	border-radius: 2px; 
	border: 1px solid #2b2b2b;
	-webkit-box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, .05);
	box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, .05); 
}
.xet-section .xet-rhombus p {
	text-align: center;
	line-height: 100px;
	transform: rotate(-45deg);
	-ms-transform: rotate(-45deg); /* IE 9 */
	-webkit-transform: rotate(-45deg);
}
.xet-section .xet-rhombus i {
	vertical-align: middle;
	color: #555;
}

/* about section No icon style - only image */
.xet-section .xet-none-img {
	position: relative;	
}
.xet-section .xet-none-img p {
	display: inline-block;
	width: 50%;
	overflow: hidden;
	text-align: center;
}
.xet-section .xet-none-img img {
	vertical-align: middle;
	max-width: 100%;
}

/* feature - quick icon */
.feature {
	background-color:#f9f9f9;
}
.feature h4.h4 {
	font-size:20px;
	font-weight:700;
	font-family: 'Montserrat', sans-serif;
	color:#0074be;
	text-transform:uppercase;
}
.feature div.h5 {
	font-size:17px;
	font-weight:300;
}

.feature .right_icon a {
	margin-right:40px;
}
.feature .right_icon a:last-child {
	margin-right:0px;
}

.feature .right_icon img {
	transform: perspective(1px) translateZ(0);
	transition-duration: 0.3s;
	transition-property: transform;
	transition-timing-function: ease-out;
	border-radius:10px;
}
.feature .right_icon img:hover{
	transform: translateY(-8px);
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);	
}

/* about - 제품소개 */
.about h2.h2 {
	font-size:35px;
	color:#333;
	font-weight:500;
}
.about h5.h5 {
	font-size:17px;
	color:#333;
	font-weight:300;
}


/* portfolio - 설치사례 */
.portfolio {
	background-color:#f9f9f9;
}
.portfolio h2.h2 {
	font-size:35px;
	color:#333;
	font-weight:500;
}

/* partner - banner */
.partner {
	background-image : url('http://hanbit2022.qqqq0357.gethompy.com/img/banner_bg.jpg');
	background-repeat: no-repeat;
}
.partner h2 p {
	font-size:19px;
	font-weight:500;
	font-family: 'Montserrat', sans-serif;
	letter-spacing: 0.5px;
    margin-top: 30px;
}
.partner h2.h2 {
	font-size:38px;
	color:#333;
	font-weight:600;
	line-height: 20px;
	letter-spacing: -0.5px;
}
.partner h2 span {
	font-size:40px;
	color:#0074be;
	font-weight:600;
}
.partner h5.h5 {
	font-size:17px;
	color:#333;
	font-weight:300;
}

/* youtube-빈칸 */
.bg-youtube {
	background-color:#fff;
}

/* blog */
.xet-blog img {
	width: 100%;
}


/* contact */
.xet-section.xet-contact {}
.xet-section.xet-contact p {
	font-size: 14px;
	margin-bottom: 15px;
	color: #555;
}
.xet-section.xet-contact p.company_name {
	font-size: 18px;
	font-weight: bold;
	color: #333;
}	
	

/* map */
.xet-contact-map {}
.xet-map-btn {
	z-index: 3;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;	
	text-align: center;
}
.xet-map-btn button {
	z-index: 3;
	cursor: pointer;
	margin: 0;
	padding: 5px 60px;
	border: 0;
	background-color: #767676;
	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-map-btn button:hover {
	background-color: #eb0b25;
}



/* Sub
-------------------------------------- */  
.xet-sub-top .xet-category-btn {
	cursor: pointer;
	border: 0;
	background: none;
	color: #555;
}
.xet-lnb a {
	display: inline-block;
	margin: 0 10px 10px;
	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-sub-top.color-white,
.xet-sub-top.color-white a,
.xet-sub-top.color-white button {
	color: #fff;
}

.xet-lnb a.on,
.xet-lnb a:hover {
	color: #EB0B25;
}

/* Content
-------------------------------------- */  
#xet-content {
	position: relative; 
	font-family: 'Noto Sans KR','Nanum Gothic','Apple SD Gothic Neo', 'Malgun Gothic', '돋움', Dotum, 'Lucida Sans', 'Trebuchet MS', Arial, Tahoma, sans-serif;
	font-size: 12px;
	background-color: #fff;
}


/* Body
-------------------------------------- */  
#xet-body {}


/* 취급품목 - 제빙기 제원 */
.pro01 h1 {
	font-size: 16px;
    font-weight: 500;
	padding-bottom: 5px;
}
.pro01 table {
	color:#444;
}
.pro01 table thead tr {
	background-color: #f1f1f1;
    font-weight: 600;
}
.pro01 table tr td {
	padding: 5px 10px;
    text-align: left;
}
.pro01 table tr td:first-child {
	background-color: #f1f1f1;
    font-weight: 600;
}

/* 취급품목 - 냉동고 제원 */
.pro02 h1 {
	font-size: 16px;
    font-weight: 500;
	padding-bottom: 5px;
}
.pro02 table {
	color:#444;
}
.pro02 table thead tr {
	background-color: #f1f1f1;
    font-weight: 600;
}
.pro02 table tr td {
	padding: 5px 10px;
    text-align: left;
}

/* footer
-------------------------------------- */  
#xet-footer {
	font-size: 12px;
	color: #ccc;
	background-color: #3C3C3C;
}
#xet-footer .xet-logo {
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	font-family:'Noto Sans KR', 'Michroma', sans-serif; 
}
#xet-footer .xet-logo img {
	width: 100%;
}



/* footer menu */
.xet-footer-nav { 
	margin: 0 0 30px; 
	padding: 0; 
	list-style:none; 
}
.xet-footer-nav li { 
	display:inline; 
	margin: 0;
	padding: 0;	
}
.xet-footer-nav > li:after { 
	content: "  |";
	color: #777;
}
.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: #bbb;
}
.xet-footer-nav li a:hover {
	color: #fff;
}

/* sns icon */
.xet-sns a {
	display: inline-block;
	font-size: 20px;
	text-align: center;
	color: #3c3c3c;
	background-color: #bbb;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
}
/* sns icon style - none */
.xet-sns .xet-none {
	position: relative;	
	width: 30px;
	height: 30px;
	line-height: 30px;
	overflow: hidden;
	text-align: center;
	background-color: transparent;
	color: #ccc;
}

/* sns icon style - Quard */
.xet-sns .xet-quard {
	position: relative;	
	width: 40px;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	text-align: center;
	border: 1px solid #2b2b2b;
	-webkit-box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, .05);
	box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, .05); 	
}


/* sns icon style - radius */
.xet-sns .xet-radius {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	text-align: center;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%; 
	border-radius: 50%; 
	border: 1px solid #2b2b2b;
	-webkit-box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, .05);
	box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, .05); 	
}


/* rhombus */
.xet-sns .xet-rhombus {
	position: relative;
	margin: 0px 5px;
	width: 30px;
	height: 30px;
	overflow: hidden;
	transform: rotate(45deg);
	-ms-transform: rotate(45deg); /* IE 9 */
	-webkit-transform: rotate(45deg);
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px; 
	border-radius: 2px; 
	border: 1px solid #2b2b2b;
	-webkit-box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, .05);
	box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, .05); 
}
.xet-sns .xet-rhombus p {
	padding-top: 2px;
	text-align: center;
	transform: rotate(-45deg);
	-ms-transform: rotate(-45deg); /* IE 9 */
	-webkit-transform: rotate(-45deg);
}
.xet-sns a:hover {
	background-color: #fff;
}
.xet-sns a.xet-none:hover {
	background-color: transparent;
}



/* TOP Scroll buttons
-------------------------------------- */
#xet-top-scroll { 
	z-index:999;
	display: none;
	position:fixed; 
	bottom: 15px;
	right: 15px;
	overflow:hidden; 
	width: 60px; 
	height: 60px; 
	line-height: 60px;
	text-align: center;
}
#xet-top-scroll a { 
	display: block;
	text-decoration:none;
	font-size: 24px;
	background: #2b2b2b; 
	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-top-scroll a:hover { 
	 background: #eb0b25;
}



/* more-buttons
-------------------------------------- */
.btn-more { 	
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	padding: 10px 30px;
	text-align: center;
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
	vertical-align: middle;
	background: none;
	border: 1px solid #aaa;
	outline: 0;
	color: #555;
	font-weight: 500;
/*	text-shadow: 1px 1px 1px rgba(100, 100, 100, 0.3);*/
	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 i {}
.btn-more.theme-light {
	border: 1px solid #eee;
	color: #eee;
/*	box-shadow: 0px 2px 0px 0px rgba(0,0,0,.1);*/
}
.btn-more.gray {
	background-color: #0074be;
	color: #fff;
	border: 1px solid #0074be;
}
.btn-more.full {
	width: 100%;
}
.btn-more.small {
	font-size: 12px;
	padding: 5px 15px;
}
.btn-more:hover { 
	border-color: #0074be;
	background-color:#0074be;
	color: #fff !important;
}






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

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