/*
 * Copyright inpleworks, Co.
 * default is Mobile
*/

/* ------------------------------------------------------------------------------------------------------------------ */
/* 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: #ffffff;
  color: #221c24;
}
html,
body,
table,
th,
td,
button,
input {
  font-family: "Pretendard", "Raleway", "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,
fieldset {
  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;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #aaa;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #aaa;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #aaa;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #aaa;
}

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;
}
embed,
object,
video {
  max-width: 100%;
}
body.fixed,
.xet-layout-body {
  overflow: hidden;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Typography
/* ------------------------------------------------------------------------------------------------------------------ */
h1 {
  font-weight: 600;
}
h1 .thin {
  font-weight: 400;
}
h2 {
  font-weight: 500;
}
h2 .thin {
  font-weight: 300;
}
h3 {
  font-weight: 400;
}
h3 .thin {
  font-weight: 200;
}
h4 {
  font-weight: 400;
}
h5 {
  font-weight: 400;
}
h6 {
  font-weight: 400;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* HEADER
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  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 .xet-header-body {
  background-color: #fff;
  border-bottom: 1px solid;
  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 .xet-header-body .xet-container,
#xet-header .xet-header-body .xet-container-fluid {
  position: relative;
}

/* scroll to hide */
#xet-header.hd-pinned {
  transform: translateY(0%);
}
#xet-header.hd-unpinned {
  transform: translateY(-100%);
}
#xet-header.hd-not-top .xet-header-body {
  border-bottom: 0;
  background-color: #fff !important;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.07);
}

/* Header Logo
----------------------------------------------------------- */
#xet-header .xet-header-logo {
  width: 180px;
  line-height: 60px;
  letter-spacing: 1px;
  overflow: hidden;
}
#xet-header .xet-header-logo a {
  position: relative;
  display: block;
  font-size: 24px;
  font-weight: 500;
  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 .xet-header-logo a > span {
  display: inline-block;
  height: 100%;
}
#xet-header .xet-header-logo a img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 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-header .xet-header-logo a .logo-img-b,
#xet-header.dark .xet-header-logo a .logo-img-w {
  display: inline-block;
}
#xet-header .xet-header-logo a .logo-img-w,
#xet-header.dark .xet-header-logo a .logo-img-b {
  display: none;
}

/* NAV - Dropdown
----------------------------------------------------------- */
.xet-nav-ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.xet-nav-ul > li {
  position: relative;
  float: left;
  margin: 0 20px;
  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,
.xet-nav-ul > li > button {
  position: relative;
  display: inline-block;
  font-size: 18px;
  height: 60px;
  line-height: 60px;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  margin: 0;
  padding: 0;
  background: none;
  color: #221c24;
  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.li-btn {
  margin: 0;
}
.xet-nav-ul > li.li-btn:first-child {
}
.xet-nav-ul > li.li-btn > a,
.xet-nav-ul > li.li-btn > button {
  vertical-align: top;
  width: 60px;
  font-size: 18px;
  text-align: center;
  color: #221c24;
}

/* Hover color NAV 1차 */
.xet-nav-ul > li.current > a {
  color: #D28248 !important;
}

/* 2차 메뉴 */
.xet-nav-ul ul.submenu {
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: -20px;
  top: 100%;
  width: 210px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  background: rgba(33, 33, 33, 0.9);
  border: 0px solid rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 5px -2px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  -moz-transform: translateY(30px);
  -webkit-transform: translateY(30px);
  transition: all 0.33s ease-in-out;
  -moz-transition: all 0.33s ease-in-out;
  -webkit-transition: all 0.33s ease-in-out;
}
.xet-nav-ul ul.submenu li {
  position: relative;
  float: none;
  height: auto;
  line-height: 1.42857143;
  border-top: 0px solid rgba(0, 0, 0, 0.1);
}
.xet-nav-ul ul.submenu li:first-child {
  border-top: 0;
}
.xet-nav-ul ul.submenu li a {
  position: relative;
  display: block;
  font-size: 16px;
  cursor: pointer;
  white-space: normal;
  font-weight: normal;
  padding: 10px 22px 10px 22px;
  margin: 0;
  color: #ababab;
  transform: translateX(0px);
  -moz-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transition: all 0.33s ease-in-out;
  -moz-transition: all 0.33s ease-in-out;
  -webkit-transition: all 0.33s ease-in-out;
}
.xet-nav-ul ul.submenu li span.child {
  position: absolute;
  right: 20px;
  top: 50%;
  font-size: 0;
  text-align: center;
  margin-top: -2px;
  width: 4px;
  height: 4px;
  opacity: 0.5;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  background: #ababab;
}

.xet-nav-ul ul.submenu li:hover > a,
.xet-nav-ul ul.submenu li:hover > button {
  border-left-color: #D28248;
  color: #fff;
  transform: translateX(10px);
  -moz-transform: translateX(10px);
  -webkit-transform: translateX(10px);
}
.xet-nav-ul ul.submenu li:hover span.child {
  opacity: 1;
  background: #D28248;
}

/* 3차 메뉴 */
.xet-nav-ul ul.submenu ul.submenu {
  top: -10px;
  left: 100%;
}

/* 우측정렬인경우 2,3차 메뉴 출력위치 */
.xet-nav.float-right .xet-nav-ul li:last-child ul.submenu {
  left: auto;
  right: 0;
}
.xet-nav.float-right .xet-nav-ul li:last-child ul.submenu ul.submenu {
  right: 100%;
}

/*----------------------------------------------------------- */

/* 언어선택 리스트 */
.xet-nav-ul > li > button {
  font-size: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
}
.xet-nav-ul ul.lang-list {
  left: auto;
  right: -15px;
  width: 140px;
}
.xet-nav-ul ul.lang-list li button {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 12px;
  cursor: pointer;
  font-weight: normal;
  padding: 10px 12px 10px 40px;
  border: 0;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 16px;
  background-color: transparent;
  color: #ababab;
  transform: translateX(0px);
  -moz-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transition: all 0.33s ease-in-out;
  -moz-transition: all 0.33s ease-in-out;
  -webkit-transition: all 0.33s ease-in-out;
}




/* NAV - Mega Menu
----------------------------------------------------------- */
.xet-nav-ul .megamenu-inner {
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 100%;
  background: rgba(33, 33, 33, 0.9);
  -moz-box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 5px -2px rgba(0, 0, 0, 0.2);
  transform: translateY(30px);
  -moz-transform: translateY(30px);
  -webkit-transform: translateY(30px);
  transition: all 0.33s ease-in-out;
  -moz-transition: all 0.33s ease-in-out;
  -webkit-transition: all 0.33s ease-in-out;
}
.xet-nav-ul .megamenu-inner.normal {
  left: 15px;
  right: 15px;
}
.xet-nav-ul .megamenu-inner ul {
  list-style: none;
  margin: 0 auto;
  padding: 20px 0;
}
.xet-nav-ul .megamenu-inner ul li {
  float: left;
  width: 20%;
  margin: 0;
  padding: 0;
  height: auto;
  line-height: 1.42857143;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}
.xet-nav-ul .megamenu-inner ul li:first-child,
.xet-nav-ul .megamenu-inner ul li:nth-child(2n + 6) {
  border-left: 0;
}
.xet-nav-ul .megamenu-inner ul li a {
  display: block;
  padding: 10px 30px;
  transition: all 0.33s ease-in-out;
  -moz-transition: all 0.33s ease-in-out;
  -webkit-transition: all 0.33s ease-in-out;
}
.xet-nav-ul .megamenu-inner ul li p {
  margin: 20px 0 0;
}
.xet-nav-ul .megamenu-inner ul li p > a {
  position: relative;
  font-weight: bold;
  color: #fff;
}
.xet-nav-ul .megamenu-inner ul li p > a:after {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  width: 10px;
  height: 2px;
  background: #D28248;
}

/* 3차 메뉴 */
.xet-nav-ul .megamenu-inner .megamenu-items a {
  font-size: 13px;
  color: #ababab;
  transform: translateX(0px);
  -moz-transform: translateX(0px);
  -webkit-transform: translateX(0px);
}
.xet-nav-ul .megamenu-inner .megamenu-items a:hover {
  color: #fff;
  transform: translateX(10px);
  -moz-transform: translateX(10px);
  -webkit-transform: translateX(10px);
}
.xet-nav-ul .megamenu-inner .megamenu-items a.current {
  color: #fff;
}
/* Show Dropdown menu 2차, 3차 */
.xet-nav-ul li.hovered > .megamenu-inner,
.xet-nav-ul li.hovered > ul.submenu,
.xet-nav-ul ul.submenu li:hover > ul.submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  -moz-transform: translateY(0px);
  -webkit-transform: translateY(0px);
  transition: all 0.33s ease-in-out;
  -moz-transition: all 0.33s ease-in-out;
  -webkit-transition: all 0.33s ease-in-out;
}

/* Hover NAV 2차, 3차 */
.xet-nav-ul ul.submenu li:hover > a::after {
  width: 100%;
}
.xet-nav-ul ul.submenu li.current::after {
  height: 1px;
  background-color: #D28248;
}
.xet-nav-ul ul.submenu li.current > a {
  color: #D28248;
}
/*----------------------------------------------------------- */

/* scroll to fixed */
#xet-header.scroll-fixed .xet-nav-ul ul.submenu {
  top: 100%;
}
#xet-header.scroll-fixed .xet-nav-ul ul.submenu ul.submenu {
  top: -10px;
}

/* Mobile hamburger icon 
----------------------------------------------------------- */

#xet-toggle-btn {
  z-index: 3;
  position: absolute;
  left: 0;
  top: 0;
}
#xet-toggle-btn.toggle-btn-right {
  left: auto;
  right: 0;
}
.xet-toggle-menu {
  position: relative;
  display: block !important;
  width: 60px;
  height: 60px;
  padding: 0;
  font-size: 0 !important;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  color: transparent;
  border: 0;
  border-left: 1px solid;
  background: none;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.xet-toggle-menu.none {
  pointer-events: none;
}
.xet-toggle-menu span,
.xet-toggle-menu span::before,
.xet-toggle-menu span::after {
  /* hamburger icon in CSS */
  position: absolute;
  display: inline-block;
  height: 2px;
  width: 24px;
  background: #333;
}
.xet-toggle-menu span {
  /* line in the center */
  width: 18px;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -2px;
  margin-left: -12px;
  -webkit-transition: background 0.2s;
  -moz-transition: background 0.2s;
  transition: background 0.2s;
  background: #333;
}
.xet-toggle-menu span::before,
.xet-toggle-menu span::after {
  /* other 2 lines */
  content: "";
  right: 0;
  /* Force Hardware Acceleration in WebKit */
  -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 {
  /* 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 */
  background: #333;
}
.xet-toggle-menu.push-active span::before {
  -webkit-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -moz-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -ms-transform: translateX(4px) translateY(-3px) rotate(45deg);
  -o-transform: translateX(4px) translateY(-3px) rotate(45deg);
  transform: translateX(4px) translateY(-3px) rotate(45deg);
}
.xet-toggle-menu.push-active span::after {
  -webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -moz-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
  -o-transform: translateX(4px) translateY(2px) rotate(-45deg);
  transform: translateX(4px) translateY(2px) rotate(-45deg);
}

/* Header transparent
----------------------------------------------------------- */
#xet-header .xet-header-body {
  border-color: rgba(255, 255, 255, 0.2);
}
#xet-header.trans .xet-header-body {
  background-color: transparent;
}
#xet-header.trans.hd-top .xet-header-logo a,
#xet-header.trans.hd-top .xet-nav-ul > li > a,
#xet-header.trans.hd-top .xet-nav-ul > li > button {
  color: #fff;
}
#xet-header.trans.hd-top .xet-nav-ul > li > a {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
#xet-header.trans.hd-top .xet-header-logo a .logo-img-w {
  display: inline-block;
}
#xet-header.trans.hd-top .xet-header-logo a .logo-img-b {
  display: none;
}
#xet-header.trans .xet-toggle-menu {
  border-color: rgba(255, 255, 255, 0.2);
}
#xet-header .xet-toggle-menu,
#xet-header.hd-not-top .xet-toggle-menu {
  border-color: rgba(0, 0, 0, 0.1);
}
#xet-header.trans.hd-top .xet-toggle-menu span,
#xet-header.trans.hd-top .xet-toggle-menu span::before,
#xet-header.trans.hd-top .xet-toggle-menu span::after {
  background: #fff;
}
#xet-header.trans.hd-top .xet-toggle-menu.push-active span {
  background: none;
}

/* Header Dark Color
----------------------------------------------------------- */
#xet-header.dark .xet-header-body {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: #1c1c1c;
}
#xet-header.dark.trans .xet-header-body {
  background-color: transparent;
}
#xet-header.dark.hd-not-top .xet-header-body {
  border-bottom: 0;
  background-color: #1c1c1c !important;
}
#xet-header.dark .xet-toggle-menu,
#xet-header.dark.hd-not-top .xet-toggle-menu {
  border-color: rgba(255, 255, 255, 0.2);
}
#xet-header.dark .xet-header-logo a {
  color: #fff;
}
#xet-header.dark .xet-nav-ul > li > a,
#xet-header.dark .xet-nav-ul > li > button {
  color: #fff;
}

#xet-header.dark .xet-toggle-menu.push-active span {
  background: none;
}
#xet-header.dark .xet-toggle-menu span,
#xet-header.dark .xet-toggle-menu span::before,
#xet-header.dark .xet-toggle-menu span::after {
  background: #fff;
}

.side-panel-top .xet-toggle-menu.push-active span::before,
.side-panel-top .xet-toggle-menu.push-active span::after,
#xet-header.dark .xet-toggle-menu.push-active span::before,
#xet-header.dark .xet-toggle-menu.push-active span::after {
  background: #fff;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* MAIN - SECTIONS
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-main-sections.no-slider {
}
.xet-section {
  position: relative;
  background-color: #fafafa;
  color: #555356;
}
.xet-main-sections .xet-section:nth-child(odd) {
  background-color: #ffffff;
}
.xet-section img {
  vertical-align: top;
  max-width: 100%;
}

.xet-section .section-title {
  position: relative;
  display: inline-block;
  line-height: normal;
  color: #221c24;
}
.xet-section .section-title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 1px;
  background: #221c24;
}
.xet-section .section-title:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 1px;
  background: #221c24;
}
.xet-section.xet-page-top .section-title {
  color: #fff;
}
.xet-section.xet-page-top .section-title:after,
.xet-section.xet-page-top .section-title:before {
  background: #fff;
}
.xet-section .more-link {
  border-bottom: 1px solid #555356;
  color: #555356;
}

.xet-section .section-title2 {
  position: relative;
}
.xet-section .section-title2:before {
  content: "";
  position: absolute;
  display: block;
  top: -130px;
  left: 0;
  width: 1px;
  height: 100px;
  background-color: #111;
}
.xet-section .subTitle {
  color: #1b1b1b;
}
.xet-section .subContent,
.xet-section .subContent a {
  color: #555356;
}

/* BG jarallax scroll */
.xet-slider .xet-jarallax {
  height: calc(80vh - 60px);
}
.xet-slider.fullSzie .xet-jarallax {
  height: calc(100vh);
}
.xet-jarallax {
  position: relative;
  z-index: 0;
}
.xet-jarallax > .xet-jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.xet-jarallax-keep-img {
  position: relative;
  z-index: 0;
}
.xet-jarallax-keep-img > .xet-jarallax-img {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto;
  z-index: -100;
}
span[data-jarallax-element] {
  display: inline-block;
}

/* BG parallax scroll */
.xet-parallax-scroll {
  background-color: #000;
  -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;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* SLIDER 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-slider {
  overflow: hidden;
  position: relative;
  background-color: #2b2b2b !important;
}
.xet-slider .swiper-caption {
  padding: 0 30px;
}
.xet-slider h1 {
  text-transform: uppercase;
  letter-spacing: -1px;
}
.xet-slider h1,
.xet-slider h5,
.xet-slider .xet-more {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.xet-slider .xet-more a {
  color: #fff;
  border-bottom-color: #fff;
}
.xet-slider .xet-slider-container {
  position: relative;
  width: 100%;
  height: calc(80vh - 60px);
}
.xet-slider.fullSzie .xet-slider-container {
  height: calc(100vh);
}
.xet-slider .xet-slider-container .swiper-slide {
  overflow: hidden;
}
.xet-slider .xet-slider-container .swiper-slide .slide-bg-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: scale(1) translateZ(0);
  -ms-transform: scale(1) translateZ(0);
  transform: scale(1) translateZ(0);
  -webkit-transition: 0.95s 0s cubic-bezier(0.3, 0.58, 0.42, 0.9);
  transition: 0.95s 0s cubic-bezier(0.3, 0.58, 0.42, 0.9);
}
.xet-slider .xet-slider-container .swiper-caption {
  z-index: 9;
  position: absolute;
  width: 100%;
  height: 90%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.05);
  color: #fff;
}
/*.swiper-caption2{
    top: 317px !important;
    left: 402px !important;
}*/
.xet-slider .xet-slider-next,
.xet-slider .xet-slider-prev {
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  height: 100px;
  line-height: 100px;
  margin-top: -50px;
  width: 170px;
  opacity: 0.6;
  background-size: 64px;
  color: #fff;
  text-shadow: none;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.xet-slider .xet-slider-next {
  background-position: center right;
  right: 30px;
  background-image: url("../img/next.png");
}
.xet-slider .xet-slider-prev {
  background-position: center left;
  left: 30px;
  background-image: url("../img/prev.png");
}
.xet-slider .xet-slider-next:hover {
  transform: translateX(-30px);
  -moz-transform: translateX(-30px);
  -webkit-transform: translateX(-30px);
  opacity: 1;
}
.xet-slider .xet-slider-prev:hover {
  transform: translateX(30px);
  -moz-transform: translateX(30px);
  -webkit-transform: translateX(30px);
  opacity: 1;
}

.xet-slider-next.swiper-button-disabled,
.xet-slider-prev.swiper-button-disabled {
  cursor: auto;
  opacity: 0.35;
  pointer-events: none;
}
.xet-slider-pagination {
  z-index: 10;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px !important;
  color: #ccc;
  text-align: center;
}
.xet-slider-pagination.swiper-pagination-progressbar {
  top: auto !important;
  bottom: 0 !important;
}
.xet-slider-pagination.swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background-color: #D28248;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* SLIDER Style2
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-slider2 {
  overflow: hidden;
  position: relative;
  background-color: #2b2b2b !important;
}
.xet-slider2 .swiper-caption {
  text-align: center;
}
.xet-slider2 h1 {
  text-transform: uppercase;
  letter-spacing: -1px;
}
.xet-slider2 h1,
.xet-slider2 h5,
.xet-slider2 .xet-more {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.xet-slider2 .xet-more a {
  color: #fff;
  border-bottom-color: #fff;
}
.xet-slider2 .xet-slider-container {
  position: relative;
  width: 100%;
  height: calc(80vh - 60px);
  margin-top: 60px;
}
.xet-slider2.fullSzie .xet-slider-container {
  height: calc(100vh - 60px);
}
.xet-slider2 .xet-slider-container .swiper-slide {
  color: #fff;
}
.xet-slider2 .xet-slider-container .vertical-align {
}
.xet-slider2 .xet-slider-arrows {
  z-index: 10;
  position: absolute;
  left: 15px !important;
  right: 15px !important;
  bottom: 10% !important;
}
.xet-slider2 .xet-slider-next,
.xet-slider2 .xet-slider-prev {
  cursor: pointer;
  height: 50px;
  line-height: 50px;
  width: 100px;
  background-size: 64px;
  color: #fff;
  opacity: 0.5;
  text-shadow: none;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.xet-slider2 .xet-slider-next {
  padding-right: 20px;
  background-position: center right;
  background-image: url("../img/next.png");
}
.xet-slider2 .xet-slider-prev {
  padding-left: 20px;
  background-position: center left;
  background-image: url("../img/prev.png");
}
.xet-slider2 .xet-slider-next:hover {
  opacity: 1;
}
.xet-slider2 .xet-slider-prev:hover {
  opacity: 1;
}

.xet-slider2 .xet-slider-next.swiper-button-disabled,
.xet-slider2 .xet-slider-prev.swiper-button-disabled {
  cursor: auto;
  opacity: 0.35;
  pointer-events: none;
}
.xet-slider2 .xet-slider-pagination {
  z-index: 10;
  position: absolute;
  left: 0;
  top: auto;
  bottom: 10px !important;
  color: #ccc;
  text-align: center;
}
.xet-slider2 .xet-slider-pagination.swiper-pagination-progressbar {
  top: auto !important;
  bottom: 0 !important;
}
.xet-slider2
  .xet-slider-pagination.swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background-color: #38b5c7;
}

.xet-slider2 .xet-slider-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.xet-slider2 .xet-slider-caption {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 0;
  height: 100%;
}

/* OIE */
.xet-slider-pagination .swiper-pagination-switch {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #fff;
  margin: 0 3px;
  cursor: pointer;
}
.xet-slider-pagination .swiper-active-switch {
  background-color: #38b5c7;
}
/* */

.xet-slider-pagination .swiper-pagination-current {
  font-size: 200%;
  color: #fff;
}
.xet-slider-pagination .swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  opacity: 0.7;
  background-color: #f1f1f1;
}
.xet-slider-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 8px;
  opacity: 1;
  background-color: #38b5c7;
}
.xet-slider2 .xet-slider-pagination .swiper-pagination-bullet {
  opacity: 0.7;
  background-color: #f1f1f1;
}
.xet-slider2
  .xet-slider-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #38b5c7;
  border-radius: 30px;
}

.xet-slider .swiper-pagination-progress {
  z-index: 10;
}
.xet-slider .swiper-pagination-progress .swiper-pagination-progressbar {
  background: #38b5c7;
}

/* Vertical */
.xet-slider-pagination.vertical {
  z-index: 10;
  position: absolute;
  left: auto !important;
  bottom: auto !important;
  right: 30px;
  top: 50% !important;
  width: auto !important;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  color: #ccc;
  text-align: center;
}
.xet-slider-pagination.vertical .swiper-pagination-bullet {
  display: block !important;
  margin: 10px 0 !important;
  width: 30px !important;
  height: 2px !important;
  border-radius: 0 !important;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* slider Video 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-video {
  color: #fff;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - About 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-about {
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - Service 
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-service .item > div {
  position: relative;
  min-height: 200px;
}
#xet-service .item .xet-service-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px 15px;
  height: 100%;
  color: #fff;
}
#xet-service .item .xet-service-caption h4 {
  position: relative;
}
#xet-service .item .xet-service-caption h4:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -50%;
  width: 60%;
  height: 1px;
  background: #fff;
}
#xet-service .item .xet-service-caption a {
  color: #919191;
  border-bottom-color: #919191;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - Work 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-work {
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - Partner 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-partner .more-link {
  text-decoration: underline;
  color: #555;
}
#xet-partner-owl .item a {
  display: block;
  padding: 30px 15px;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - Banner 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-banner {
  background-color: #000 !important;
  color: #fff;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - Contact 
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-contact p {
  color: #555;
}
.xet-contact .contact-tel {
  display: block;
  color: #111;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* BODY - CONTENT - PAGE
/* ------------------------------------------------------------------------------------------------------------------ */

/* page top */
.xet-page-top {
  z-index: 20;
  background-color: #2b2b2b;
  color: #fff;
}
.xet-page-top > div {
  position: relative;
  height: auto;
}
.xet-page-top a {
  color: #fff;
}
/* page top NAV */
.xet-page-top .page-lnb {
}
.xet-page-top .xet-nav-ul > li {
  position: relative;
  float: none;
  display: inline-block;
  margin: 0 15px;
  padding: 0;
  vertical-align: top;
}
.xet-page-top .xet-nav-ul > li a {
  height: auto;
  line-height: normal;
  font-size: 14px;
  padding: 8px 0;
  margin: 0 15px;
  color: #fff;
}
.xet-page-top .xet-nav-ul li a img {
  vertical-align: middle;
}
.xet-page-top .xet-nav-ul > li > a.current {
  border-bottom: 1px solid #fff;
}
.xet-page-top .xet-nav-ul ul.submenu {
  left: -10px;
  width: 200px;
}
.xet-page-top .xet-nav-ul ul.submenu li a {
  padding: 10px 22px;
}
.xet-page-top .xet-nav-ul ul.submenu li a.current {
  color: #fff;
}
.xet-page-top .xet-nav-ul ul.submenu li {
  display: block;
}

/* content */
.xet-content {
  background-color: #fff;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* FOOTER
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-footer {
  position: relative;
  background-color: #ffffff;
  color: #7b7b7b;
}
#xet-footer .xet-footer-header {
  background-color: #f1f1f1;
}
#xet-footer .xet-footer-logo {
}
#xet-footer .xet-footer-logo img {
  max-width: 200px;
  vertical-align: top;
}
#xet-footer .xet-copyright {
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
#xet-footer a {
  color: #7b7b7b;
}
#xet-footer h5 {
  color: #111;
}

/* Footer Nav */
.xet-footer-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.xet-footer-nav > li {
  display: inline-block;
  margin: 5px 15px;
  padding: 0;
}
.xet-footer-nav > li a {
  display: inline-block;
  font-weight: normal;
  cursor: pointer;
  color: #7b7b7b;
}
.xet-footer-nav > li a:hover {
  text-decoration: underline;
}

/* SNS */
.xet-footer-ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.xet-footer-ul > li {
  display: inline;
  margin: 0 5px 10px;
  padding: 0;
}
.xet-footer-ul > li a {
  font-size: 16px;
  display: inline-block;
  font-weight: normal;
  cursor: pointer;
  color: #111;
}
.xet-footer-ul > li a:hover {
  text-decoration: underline;
}

/* Dark */
#xet-footer.dark {
  background-color: #1c1c1c;
  color: #6f6f6f;
}
#xet-footer.dark .xet-footer-header {
  background-color: #141414;
}
#xet-footer.dark .xet-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#xet-footer.dark a {
  color: #6f6f6f;
}
#xet-footer.dark a:hover {
  color: #fefefe;
}
#xet-footer.dark h5 {
  color: #939393;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Mobile Side Panel
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-side-panel {
  z-index: 11000;
  position: fixed;
  width: 300px;
  background-color: rgba(255, 255, 255, 0.95);
}
.xet-side-panel .side-panel-top {
  position: relative;
  height: 61px;
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.xet-side-panel .side-panel-top > span {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.xet-side-panel .side-panel-top img {
  vertical-align: middle;
}
.xet-side-panel .side-panel-top a,
.xet-side-panel .side-panel-top button {
  font-size: 13px;
}
.xet-side-panel .side-panel-top button.xet-toggle-menu {
  border-color: rgba(0, 0, 0, 0.1);
}
.xet-side-panel .side-panel-top .xet-toggle-menu span {
}
.xet-side-panel .side-panel-top .xet-toggle-menu.push-active span::before,
.xet-side-panel .side-panel-top .xet-toggle-menu.push-active span::after {
  background: #333;
}
.xet-side-panel .side-panel-body {
  position: relative;
  overflow: hidden;
}
.xet-side-panel .side-panel-footer {
  text-align: center;
  padding: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* colorset */
.xet-side-panel.dark {
  background-color: rgba(0, 0, 0, 0.9);
}
.xet-side-panel.dark .side-panel-top .xet-toggle-menu.push-active span::before,
.xet-side-panel.dark .side-panel-top .xet-toggle-menu.push-active span::after {
  background: #fff;
}
.xet-side-panel.dark .side-panel-top {
  border-color: rgba(255, 255, 255, 0.1);
}
.xet-side-panel.dark .side-panel-top button.xet-toggle-menu {
  border-color: rgba(255, 255, 255, 0.1);
}
.xet-side-panel.dark .side-panel-top a,
.xet-side-panel.dark .side-panel-top button {
  color: #ccc;
}
.xet-side-panel.dark .side-panel-footer {
  color: #ccc;
  border-color: rgba(255, 255, 255, 0.1);
}

/* Push */
.xet-push-left,
.xet-push-right {
  height: 100%;
  top: 0;
}
.xet-push-left {
  left: -300px;
}
.xet-push-right {
  right: -300px;
}
.xet-push-left.push-open {
  left: 0;
}
.xet-push-right.push-open {
  right: 0;
}
.push {
  left: 0;
  position: relative;
}
.push-toright {
  left: 300px !important;
}
.push-toleft {
  left: -300px !important;
}

.xet-side-panel,
.push {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
/* push nav */

#xet-side-panel-overlay {
  display: none;
  z-index: 1000;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
  cursor: url(../img/close.png) 15 15, default;
  background-color: rgba(0, 0, 0, 0.1);
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* TOP SCROLL BUTTON
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-top-scroll {
  z-index: 999;
  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;
  opacity: 0.5;
  color: #fff;
  background: url(../img/up.png) center no-repeat rgba(0, 0, 0, 0.5);
  background-size: 16px;
  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 {
  opacity: 1;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* waypoint - scroll animate
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-animate {
  opacity: 0;
}

/* 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-12s {
  animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
}
.delay-15s {
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
}
.delay-18s {
  animation-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Preloader
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-preloader-wrp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  background: #fff;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
}
#xet-preloader-wrp.dark {
  background: #141414;
}
.xet-preloader {
  display: block;
  position: relative;
  text-align: center;
  left: 0;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.xet-preloader > .logo {
}
.xet-preloader > .logo > img {
  width: 300px;
  max-width: 80%;
}
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.ball-pulse > div:nth-child(1) {
  -webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.ball-pulse > div:nth-child(2) {
  -webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.ball-pulse > div:nth-child(3) {
  -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
.ball-pulse > div {
  background-color: #000;
  width: 15px;
  height: 15px;
  border-radius: 0;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
}

#xet-preloader-wrp.dark .ball-pulse > div {
  background-color: #fff;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Custom buttons
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-btn-default {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.xet-btn-default.invert {
  border-color: #9f9f9f;
  color: #9f9f9f;
}
.xet-btn-bg-theme,
button.xet-btn-bg-theme {
  padding: 10px 40px;
  position: relative;
  text-align: center;
  color: #fff;
  background-color: #38b5c7;
}
.xet-btn-bg-theme.invert {
  background-color: #1c1c1c;
  color: #fff;
}
.xet-btn-default:hover,
.xet-btn-bg-theme:hover {
  background-color: #1b1b1b;
  color: #fff;
}
.xet-btn-light {
  background-color: #e1e1e1 !important;
  color: #555 !important;
}
.xet-btn-dark {
  background-color: #38b5c7 !important;
  color: #fff !important;
}

/* hover */
.xet-btn:hover {
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Theme
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-theme-color {
  color: #38b5c7 !important;
}
.xet-theme-bg {
  background-color: #38b5c7 !important;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Owl Carousel
/* ------------------------------------------------------------------------------------------------------------------ */
.owl-frame .owl-nav {
  -webkit-tap-highlight-color: transparent;
}
.owl-frame .owl-nav [class*="owl-"] {
  position: absolute;
  top: 0;
  width: 100px;
  height: 50px;
  font-size: 0;
  margin: 0;
  padding: 0;
  display: inline-block;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
}
.owl-frame .owl-nav [class*="owl-"] span {
  display: none;
}
.owl-frame .owl-nav button.owl-next {
  padding-right: 20px !important;
  left: 100px;
  background: url("../img/next-black.png") 50% center no-repeat;
  background-size: 64px;
}
.owl-frame .owl-nav button.owl-prev {
  padding-left: 20px !important;
  background: url("../img/prev-black.png") 50% center no-repeat;
  background-size: 64px;
}
.owl-frame .owl-nav [class*="owl-"]:hover {
  text-decoration: none;
}
.owl-frame .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
/* scroll qa */
.owl-frame.owl-frame-qa .owl-nav {
  margin-top: 15px;
  text-align: center;
}
.owl-frame.owl-frame-qa .owl-nav [class*="owl-"] {
  position: relative;
  bottom: auto;
  transform: translateY(0%);
  -moz-transform: translateY(0%);
  -webkit-transform: translateY(0%);
}
.owl-frame.owl-frame-qa .owl-nav button.owl-next {
  left: auto;
}

.owl-frame .owl-nav.disabled + .owl-dots {
  margin-top: 30px;
}
.owl-frame .owl-dots {
  margin-top: 15px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-frame .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-frame .owl-dots .owl-dot span {
  width: 4px;
  height: 4px;
  margin: 0 5px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.owl-frame .owl-dots .owl-dot.active span,
.owl-frame .owl-dots .owl-dot:hover span {
  background: #38b5c7;
  width: 8px;
}
.new-footer{
  padding: 30px 0;
}


/* 모바일 전용 스타일 */
@media (min-width: 769px) {

  /* 신청하기 버튼 스타일 */
.apply-button {
  display: none;
}
}
@media (max-width: 768px) {

  /* 신청하기 버튼 스타일 */
.apply-button {
  position: fixed;
  bottom: 20px;
  width: calc(100% - 40px);
  left: 20px;
  transform: none;
  padding: 15px 30px;
  background-color: #D28248;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: background-color 0.3s ease;
  text-align: center;
}

/* 버튼 호버 스타일 */
.apply-button:hover {
  background-color: #d1bbaa;
}
}

.xet-grid-gallery{
  margin: 0 auto;
}

#xet-slider{
  pointer-events: none;
}

.ahaday_return{
  display: none;
  position: absolute;
  top: 25px;
  left: 300px;
  padding: 10px 20px;
  background-color: brown;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}

.ahaday_return:hover{
  background-color: #FFF;
  border: 2px solid #eee;
  color: brown;
  transition: 0.2s;
}

.ahaday_return a {
  text-decoration: none; /* 밑줄 제거 */
  color: inherit;         /* 부모 요소의 글자색 상속 */
  display: block;
  width: 100%;
  height: 100%;
}

@media(max-width:990px){
  .ahaday_return{
    top: 15px;
    left: 220px;
  }
}
@media(max-width:600px){
  .ahaday_return{
    display: none;
  }
}