@charset "UTF-8";
/*
* for supported in all modern browsers
* Copyright inpleworks, Co.
* https://xetemplate.com
*/
:root {
  --theme-color: #39c7f5;
  --box-shadow: 0px 0.5rem 1rem rgba(0, 0, 0, .08);
  --bg-color: #f1f1f1;
  --content-bg-color: #fff;
  --dark-bg-color: #1C1D21;
  --dark-content-bg-color: #26282C;
  --dark-base-color: #696E76;
  --dark-text-strong-color: #EFF2F7;
  --dark-btn-border-color: #AAB0B8;
  --transition-all: all 0.22s ease-in-out;
}

html,
body,
table,
th,
td,
button,
select,
input,
textarea {
  font-size: 16px;
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

@media (min-width: 1024px) {
  html,
body,
table,
th,
td,
button,
select,
input,
textarea {
    font-size: 14px;
  }
}
::-webkit-scrollbar {
  display: none;
}

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

body.quickbutton .xet-layout {
  padding-bottom: 4rem;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* 레이아웃
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-layout {
  overflow: hidden;
  /* content */
}
.xet-layout.no-page-top {
  padding-top: 60px;
}
.xet-layout a:not(.xet-btn) {
  color: var(--text-strong-color);
}
.xet-layout .text-theme {
  color: var(--theme-color) !important;
}
.xet-layout .bg-theme {
  background-color: var(--theme-color) !important;
}
.xet-layout .xet-btn {
  min-width: 120px;
  border-radius: 3rem;
  background-color: var(--dark-bg-color);
  color: var(--dark-text-strong-color);
}
.xet-layout .layout__page-top {
  z-index: 20;
  padding-top: 120px;
  padding-bottom: 60px;
  text-transform: uppercase;
  background-color: var(--dark-bg-color);
  color: var(--dark-text-strong-color);
}
.xet-layout .layout__page-top a {
  color: var(--dark-text-strong-color);
}
.xet-layout .layout__page-path ul li {
  display: inline-flex;
  align-items: center;
}
.xet-layout .layout__page-lnb {
  background-color: var(--bg-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.xet-layout .layout__page-lnb .lnb-h {
  position: relative;
  height: 61px;
  overflow: hidden;
  padding: 0 1rem;
}
.xet-layout .layout__page-lnb .lnb-h:after, .xet-layout .layout__page-lnb .lnb-h:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
}
.xet-layout .layout__page-lnb .lnb-h:after {
  right: 0;
  z-index: 0;
  background: linear-gradient(to right, rgba(240, 240, 240, 0) 0, var(--bg-color) 24%);
  pointer-events: none;
}
.xet-layout .layout__page-lnb .lnb-h:before {
  left: 0;
  z-index: 1;
  background: linear-gradient(to left, rgba(240, 240, 240, 0) 0, var(--bg-color) 24%);
  pointer-events: none;
}
.xet-layout .layout__page-lnb .lnb-h .lnb-h-ul {
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  padding: 0;
  margin: 0 auto;
  display: block;
}
.xet-layout .layout__page-lnb .lnb-h .lnb-h-ul > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 60px;
  margin: 0;
  padding: 0 1rem;
  vertical-align: top;
}
.xet-layout .layout__page-lnb .lnb-h .lnb-h-ul > a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 8px;
  margin-top: -2px;
  background: var(--border-color);
}
.xet-layout .layout__page-lnb .lnb-h .lnb-h-ul > a:first-child::after {
  background: none;
  width: 0;
}
.xet-layout .layout__page-lnb .lnb-h .lnb-h-ul > a img {
  vertical-align: middle;
}
.xet-layout .layout__page-lnb .lnb-h .lnb-h-ul > a > span {
  z-index: 5;
  display: inline-flex;
  align-items: center;
  height: inherit;
  padding-bottom: 0;
  position: relative;
}
.xet-layout .layout__page-lnb .lnb-h .lnb-h-ul > a.active > span {
  font-weight: 700;
  color: var(--theme-color);
}
.xet-layout .layout__page-lnb .lnb-h2 {
  border-top: 1px solid var(--border-color);
}
.xet-layout .lnb-v .submenu-indicator {
  margin-top: -10px;
}
.xet-layout .lnb-v li a {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.xet-layout .lnb-v li ul li a {
  padding-left: 15px !important;
}
.xet-layout .lnb-v .submenu-indicator {
  right: 0 !important;
}
.xet-layout .xet-content {
  min-height: 300px;
}
.xet-layout .layout-footer {
  position: relative;
  background-color: var(--content-bg-color);
  border-top: 1px solid var(--border-color);
}
.xet-layout .layout-footer .layout-footer__header {
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
}
.xet-layout .layout-footer .layout-footer__body {
  padding: 2rem 0;
  /* Footer Nav */
  /* SNS */
}
.xet-layout .layout-footer .layout-footer__body .layout-footer__nav {
  margin: 1rem 0;
}
.xet-layout .layout-footer .layout-footer__body .layout-footer__nav > li {
  display: inline-block;
  margin: 0 1rem;
  padding: 5px 0;
}
.xet-layout .layout-footer .layout-footer__body .layout-footer__nav > li a {
  display: inline-block;
  font-weight: normal;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition-all);
}
.xet-layout .layout-footer .layout-footer__body .layout-footer__sns > li {
  display: inline;
  margin: 0 1rem;
}
.xet-layout .layout-footer .layout-footer__body .layout-footer__sns > li a {
  font-size: 1.1rem;
  display: inline-block;
  font-weight: normal;
  cursor: pointer;
}
.xet-layout .layout-footer .layout-footer__body .layout-footer__sns > li a:hover {
  text-decoration: underline;
}
.xet-layout .layout-footer .layout-footer__body .layout-footer__logo img {
  max-width: 200px;
  vertical-align: top;
}
.xet-layout .layout-footer .layout-footer__body .xet-copyright {
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Guide 버튼
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-guide {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  color: var(--dark-text-strong-color);
  text-align: center;
  transform: translate(200px, 0);
  visibility: hidden;
  opacity: 0;
  background-color: var(--theme-color);
  z-index: 1000;
  transition: all 0.6s;
}
.xet-guide.active {
  transform: translate(0, 0);
  visibility: visible;
  opacity: 1;
}
.xet-guide .xet-guide__nav li {
  position: relative;
  display: inline;
  padding: 0 20px;
}
.xet-guide .xet-guide__nav li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 6px;
  margin-top: -2px;
  background: #fff;
}
.xet-guide .xet-guide__nav li:first-child::after {
  width: 0;
}
.xet-guide .xet-guide__nav li a {
  display: inline-block;
  margin: 1rem 0;
  color: var(--dark-text-strong-color);
}
.xet-guide .xet-guide__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  padding: 1rem;
  background: #000001;
}

.xet-guide-floating {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1001;
}
.xet-guide-floating.Y {
  bottom: 140px;
}
.xet-guide-floating a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  text-align: center;
  color: #fff;
  background: var(--theme-color);
  border-radius: 50%;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.3);
}
.xet-guide-floating a.active {
  background: rgba(0, 0, 0, 0.8);
}
.xet-guide-floating a.active .off {
  opacity: 0;
  transform: scale(0) rotate(0deg);
}
.xet-guide-floating a.active .on {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}
.xet-guide-floating a i {
  line-height: inherit;
  font-size: 22px;
}
.xet-guide-floating a > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
}
.xet-guide-floating a .on {
  transform: scale(0) rotate(-90deg);
  opacity: 0;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* 전화걸기 버튼
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-tel-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
.xet-tel-floating.Y {
  bottom: 80px;
}
.xet-tel-floating a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  text-align: center;
  color: #fff;
  background: var(--theme-color);
  border-radius: 50%;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.3);
}
.xet-tel-floating a i {
  line-height: inherit;
  font-size: 22px;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* TOP SCROLL BUTTON
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-top-scroll {
  z-index: 999;
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
}
#xet-top-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.3);
}
#xet-top-scroll a > i {
  line-height: inherit;
  font-size: 22px;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* wow - scroll animate
/* ------------------------------------------------------------------------------------------------------------------ */
.wow {
  visibility: hidden;
}

/* 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-1s {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}

.delay-1_1s {
  animation-delay: 1.1s;
  -webkit-animation-delay: 1.1s;
}

.delay-1_5s {
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
}

.delay-1_8s {
  animation-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
}

.delay-2s {
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Owl Carousel
/* ------------------------------------------------------------------------------------------------------------------ */
.owl-rest .owl-nav {
  -webkit-tap-highlight-color: transparent;
}
.owl-rest .owl-nav [class*=owl-] {
  position: absolute;
  top: 50%;
  width: auto;
  height: 50px;
  font-size: 0;
  margin: -40px 0 0;
  padding: 0;
  display: inline-block;
  cursor: pointer;
  color: #fff !important;
}
.owl-rest .owl-nav [class*=owl-] span {
  display: none;
}
.owl-rest .owl-nav [class*=owl-]:hover {
  text-decoration: none;
}
.owl-rest .owl-nav button.owl-next {
  right: 15px;
}
.owl-rest .owl-nav button.owl-prev {
  left: 15px;
}
.owl-rest .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-rest .owl-dots {
  margin-top: 15px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-rest .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-rest .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0 5px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
  transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}
.owl-rest .owl-dots .owl-dot.active span, .owl-rest .owl-dots .owl-dot:hover span {
  background: var(--theme-color);
}
.owl-rest.owl-rest-qa .owl-nav {
  margin-top: 15px;
  text-align: center;
}
.owl-rest.owl-rest-qa .owl-nav [class*=owl-] {
  position: relative;
  bottom: auto;
  transform: translateY(0%);
  -moz-transform: translateY(0%);
  -webkit-transform: translateY(0%);
}
.owl-rest.owl-rest-qa .owl-nav button.owl-next {
  left: auto;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* 모바일 하단 버튼
/* ------------------------------------------------------------------------------------------------------------------ */
.mobile-bottom-btn {
  z-index: 888;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  list-style: none;
  margin: 0;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-color);
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
}
.mobile-bottom-btn > li {
  flex: 1;
  margin: 0 0.25rem;
  padding: 0.5rem 0;
}
.mobile-bottom-btn > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  height: var(--input-height);
  border-radius: 0.5rem;
  border: 0;
  background-color: var(--content-bg-color);
}

body.color_scheme_dark {
  background-color: var(--dark-content-bg-color);
  color: var(--dark-text-strong-color);
  /* ------------------------------------------------------------------------------------------------------------------ */
  /* 모바일 하단 버튼
  /* ------------------------------------------------------------------------------------------------------------------ */
}
body.color_scheme_dark .xet-layout a:not(.xet-btn) {
  color: var(--dark-text-strong-color);
}
body.color_scheme_dark .xet-layout .xet-btn {
  background-color: var(--bg-color);
  color: var(--text-strong-color);
}
body.color_scheme_dark .xet-layout .layout__page-lnb {
  background-color: var(--dark-bg-color);
  border-color: var(--dark-border-color);
}
body.color_scheme_dark .xet-layout .layout__page-lnb .lnb-h:after {
  background: linear-gradient(to right, rgba(240, 240, 240, 0) 0, var(--dark-bg-color) 24%);
}
body.color_scheme_dark .xet-layout .layout__page-lnb .lnb-h:before {
  background: linear-gradient(to left, rgba(240, 240, 240, 0) 0, var(--dark-bg-color) 24%);
}
body.color_scheme_dark .xet-layout .layout__page-lnb .lnb-h .lnb-h-ul > a::after {
  background: var(--dark-border-color);
}
body.color_scheme_dark .xet-layout .layout__page-lnb .lnb-h2 {
  border-color: var(--dark-border-color);
}
body.color_scheme_dark .xet-layout .layout-footer {
  background-color: var(--dark-content-bg-color);
  border-color: var(--dark-border-color);
}
body.color_scheme_dark .xet-layout .layout-footer .layout-footer__header {
  background-color: var(--dark-bg-color);
  border-color: var(--dark-border-color);
}
body.color_scheme_dark .mobile-bottom-btn {
  background-color: var(--dark-bg-color);
}
body.color_scheme_dark .mobile-bottom-btn > li > a {
  background-color: var(--dark-content-bg-color);
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* RESPONSIVE
/* ------------------------------------------------------------------------------------------------------------------ */
@media (max-width: 768px) and (orientation: landscape) {
  .xet-slider .xet-slider-container,
.xet-slider .xet-jarallax {
    height: calc(100vh) !important;
  }
}
@media (min-width: 1024px) {
  body.quickbutton .xet-layout {
    padding-bottom: 0;
  }

  .xet-layout.no-slider, .xet-layout.no-page-top {
    padding-top: 80px;
  }
  .xet-layout.no-slider:not(.no-slider), .xet-layout.no-slider:not(.no-header-top), .xet-layout.no-page-top:not(.no-slider), .xet-layout.no-page-top:not(.no-header-top) {
    padding-top: 120px;
  }
  .xet-layout .layout__page-top {
    padding-top: 180px;
  }
  .xet-layout .layout__page-lnb .lnb-h .lnb-h-ul > a {
    padding: 0 2rem;
  }

  .xet-guide {
    width: 50%;
  }

  /* 가이드 버튼 */
  .xet-guide-floating {
    bottom: 105px;
    right: 30px;
  }
  .xet-guide-floating.Y {
    bottom: 105px;
  }
  .xet-guide-floating a {
    width: 60px;
    height: 60px;
  }
  .xet-guide-floating a i {
    font-size: 2rem;
  }

  .xet-tel-floating {
    bottom: 30px;
    right: 30px;
  }
  .xet-tel-floating.Y {
    bottom: 30px;
  }
  .xet-tel-floating a {
    width: 60px;
    height: 60px;
  }
  .xet-tel-floating a i {
    font-size: 2rem;
  }

  #xet-top-scroll {
    bottom: 30px;
    right: 30px;
  }
  #xet-top-scroll a {
    width: 60px;
    height: 60px;
  }
  #xet-top-scroll a > i {
    font-size: 2rem;
  }
  #xet-top-scroll a:hover {
    background: var(--theme-color) !important;
    color: #fff !important;
  }

  .owl-rest .owl-nav button.owl-next {
    right: 30px;
  }
  .owl-rest .owl-nav button.owl-prev {
    left: 30px;
  }

  .mobile-bottom-btn {
    display: none;
  }
}