@charset "utf-8";

/*!
 * DESiGN TRiPLE
 */
:root {
  --point: #be202f;
  --point-rgb: 190, 32, 47;
  --point-hover: #b13a45;
  --point-hover-grb: 177, 58, 69;
  --point-active: #960715;
  --point-active-grb: 150, 7, 21;
  --active: #ff8800;
  --active-rgb: 255, 136, 0;
  --active-hover: #f16e00;
  --active-hover-rgb: 241, 110, 0;
}

div#wrapper {
  position: relative;
  overflow: hidden;
}

/*!
 * #preloader
 */
#preloader {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background-color: #FFF;
}

#preloader::before {
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  width: 60px;
  height: 60px;
  border: 6px solid #F2F2F2;
  border-top: 6px solid var(--point);
  border-radius: 50%;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
  content: "";
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*!
 * .gnb-area
 */
#functionSticky {
  position: absolute;
  width: 100%;
}

div.gnb-area#gnbArea {}

.stuck {
  position: fixed !important;
  top: 0 !important;
  padding: 0 5rem !important;
  background-color: rgba(255, 255, 255, 0.8) !important;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(5px);
}

.gnb-area {
  position: relative;
  z-index: 1000;
  width: 100%;
  padding: 2rem 5rem 0 5rem;
  background-color: transparent;
}

.gnb-area h1.logo {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0;
}

.gnb-area h1.logo a img {
  width: 90px;
}

.gnb-area h1.logo a img.img-logo {
  content: url("../images/logo-wt.jpg");
}

.gnb-area.stuck h1.logo a img.img-logo {
  content: url("../images/logo-bk.jpg");
}

nav.navbar {
  padding: 0.5rem;
  margin-right: -1.5rem;
}

nav.navbar ul.gnb {
  margin-bottom: 0 !important;
}

ul.gnb li a:hover {
  color: var(--point-hover);
}

ul.gnb>li>.sf-with-ul::after {
  border: none !important;
  font-family: 'Fontium';
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 53%;
  font-size: 40%;
  content: '\E024';
  color: rgba(0, 0, 0, 0.4);
}

ul.gnb>li>ul li {
  position: relative;
}

ul.gnb>li>ul li>.sf-with-ul::after {
  border: none !important;
  font-family: 'Fontium';
  speak: none;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  float: right;
  margin-right: 10px;
  top: 20px;
  font-size: 40%;
  content: '\E024';
  color: rgba(0, 0, 0, 0.5);
}

ul.gnb .gnb-2depth {
  padding: 0 0 3px 0;
  background-color: var(--point-hover);
  left: 0;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

ul.gnb .gnb-2depth::before {
  position: absolute;
  top: -9px;
  left: 20px;
  width: 0;
  height: 0;
  content: '';
}

ul.gnb .gnb-2depth::after {
  position: absolute;
  top: -8px;
  left: 21px;
  width: 0;
  height: 0;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #FFF;
  border-bottom: 8px solid #FFF;
  border-left: 8px solid transparent;
  content: '';
}

ul.gnb .gnb-2depth li {
  white-space: normal;
  background-color: #FFF;
}

ul.gnb .gnb-2depth li a {
  letter-spacing: 0;
  text-transform: none;
  background-color: #FFF;
  font-weight: normal;
}

ul.gnb .gnb-2depth li a:hover {
  color: var(--point-hover) !important;
  background-color: #F7F7F7;
}

@media screen and (max-width: 1200px) {
  .stuck {
    padding: 0 !important;
  }

  .gnb-area {
    padding: 0;
  }

  .gnb-area .flex-between {
    flex-direction: row-reverse;
  }

  .gnb-area .logo {
    width: 100%;
    padding: 1.25rem;
    text-align: center;
  }

  nav.navbar ul {
    display: none;
  }
}

/* Superfish Override Menu */
.sf-menu {
  float: right;
}

.sf-menu ul {
  box-shadow: none;
  border: transparent;
  min-width: 12em;
  *width: 12em;
}

.sf-menu a {
  color: rgba(0, 0, 0, 0.9);
  padding: 1rem !important;
  font-weight: bold;
  border-left: none;
  border-top: none;
  text-decoration: none;
  zoom: 1;
  /* .gnb-1depth */
  font-size: 1.25rem;
  border-bottom: none !important;
}

.sf-menu li,
.sf-menu ul li,
.sf-menu ul ul li,
.sf-menu li:hover,
.sf-menu li.sfHover {
  background-color: transparent;
}

.sf-menu ul li a,
.sf-menu ul ul li a {
  text-transform: none;
  padding: 0.5rem 1rem !important;
  letter-spacing: 1px;
  /* .gnb-2depth */
  font-size: 1rem !important;
}

.sf-menu ul li:hover,
.sf-menu ul li.sfHover {
  background-color: transparent;
}

.sf-menu ul li {
  background-color: transparent;
}

.sf-arrows .sf-with-ul {
  padding-right: 2.5em;
  *padding-right: 1em;
}

/*.nav-toggle */
.nav-toggle {
  position: absolute;
  z-index: 1000;
  display: none;
  cursor: pointer;
  text-decoration: none;
}

.nav-toggle.active i::before,
.nav-toggle.active i::after {
  background-color: #FFF;
}

.nav-toggle.dark.active i::before,
.nav-toggle.dark.active i::after {
  background-color: #FFF;
}

.nav-toggle:hover,
.nav-toggle:focus,
.nav-toggle:active {
  outline: none;
  border-bottom: none !important;
}

.nav-toggle i {
  position: relative;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 30px;
  height: 2px;
  color: #FFF;
  transition: all .2s ease-out;
  margin-bottom: 6px;
}

.nav-toggle i::before,
.nav-toggle i::after {
  content: '';
  width: 30px;
  height: 2px;
  position: absolute;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.nav-toggle.dark i {
  position: relative;
  color: #000;
  background-color: #000;
  transition: all .2s ease-out;
}

.nav-toggle.dark i::before,
.nav-toggle.dark i::after {
  background-color: #000;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.nav-toggle i::before {
  top: -7px;
  margin-bottom: 6px;
}

.nav-toggle i::after {
  bottom: -7px;
}

.nav-toggle:hover i::before {
  top: -10px;
}

.nav-toggle:hover i::after {
  bottom: -10px;
}

.nav-toggle.active i {
  background-color: transparent;
}

.nav-toggle.active i::before {
  top: 0;
  -webkit-transform: rotateZ(45deg);
  -moz-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  -o-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.nav-toggle.active i::after {
  bottom: 0;
  -webkit-transform: rotateZ(-45deg);
  -moz-transform: rotateZ(-45deg);
  -ms-transform: rotateZ(-45deg);
  -o-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}

@media screen and (max-width: 1200px) {
  .nav-toggle {
    display: block;
  }
}

/* .active */
.navbar li.active>a,
.navbar li>a:active,
.navbar li>a.active {
  color: var(--point-active);
}

.navbar>ul>li>a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--point-active);
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.navbar>ul>li>a:hover::before {
  background-color: var(--point-hover);
  visibility: visible;
  transform: scaleX(1);
}

.navbar li.active>a::before,
.navbar li>a:active::before,
.navbar li>a.active::before {
  visibility: visible;
  transform: scaleX(1);
}

.navbar li:first-of-type>a.active::before {
  visibility: hidden;
}

/*!
 * #navToggleMobile
 * .navbar-mobile
 */
#navToggleMobile {
  position: absolute;
  z-index: 1100;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 0;
  transition: 0.5s;
}

.fa-solid.fa-xmark#navToggleMobile i {
  display: none;
}

nav.navbar-mobile {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  transition: 0.3s;
}

nav.navbar-mobile ul {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  margin-right: 24px;
  padding: 3rem 1rem 0 1rem;
  width: 260px;
  background-color: #FFF;
  overflow-y: auto;
  transition: 0.3s;
}

nav.navbar-mobile ul li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #DDD;
}

nav.navbar-mobile ul li a {
  position: relative;
  display: block;
  padding: 1rem 0.25rem;
  font-size: 1rem;
}

/*!
 * .cover-area
 */
div.cover-area .main-cover.cover-carousel {}

/* .main-cover */
.main-cover.cover-carousel .carousel-item {
  height: 100vh;
}

/* .cover-carousel */
.cover-carousel .carousel-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cover-carousel .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.cover-carousel .carousel-item.carousel-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cover-carousel .carousel-caption {
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 10%;
  left: 0;
  right: auto;
  padding: 3rem;
}

.cover-carousel h2 {
  font-weight: bold;
}

.cover-carousel .carousel-fade {
  overflow: hidden;
}

.cover-carousel .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

.cover-carousel .carousel-fade .carousel-inner .carousel-item,
.cover-carousel .carousel-fade .carousel-inner .active.carousel-item-left,
.cover-carousel .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

.cover-carousel .carousel-fade .carousel-inner .active,
.cover-carousel .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
.cover-carousel .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

.cover-carousel .carousel-fade .carousel-inner .carousel-item-next,
.cover-carousel .carousel-fade .carousel-inner .carousel-item-prev,
.cover-carousel .carousel-fade .carousel-inner .active.carousel-item-left,
.cover-carousel .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.cover-carousel .carousel-control-prev,
.cover-carousel .carousel-control-next {
  width: 10%;
}

.cover-carousel .carousel-control-next-icon,
.cover-carousel .carousel-control-prev-icon {
  background-color: none;
  font-size: 2rem;
  line-height: 1;
}

.cover-carousel .carousel-indicators li {
  cursor: pointer;
}

/*!
 * #footer
 */
footer#footer {
  font-size: 0.87rem;
  background-color: var(--light);
}

/* .fnb-area */
.fnb-area {
  background-color: #EEE;
  padding: 10px 0;
}

.fnb-area .fnb {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: inline-block;
  vertical-align: middle;
}

.fnb-area .fnb li {
  display: inline-block;
  padding: 0 10px;
  margin-left: -10px;
}

@media screen and (max-width: 768px) {
  .fnb-area .fnb li {
    display: block;
  }
}

/* .company-info-area */
div.company-info-area {
  padding: 30px 0 0 0;
  border-top: 1px solid #EEE;
}

.company-info-area p {
  text-align: center;
}

.company-info-area ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  margin-left: -10px;
  color: #777;
}

.company-info-area ul li {
  display: inline-block;
  list-style: none;
  position: relative;
  padding: 0 10px;
}

.company-info-area ul li::after {
  content: ' ';
  position: absolute;
  top: 0.4rem;
  right: -3px;
  height: 0.8rem;
  border-right: 1px solid #999;
}

.company-info-area ul li:last-child::after {
  border-right: 0;
}

.company-info-area .social-icons {
  text-align: right;
  margin-bottom: 0;
}

.company-info-area .social-icons>a {
  padding-right: 10px;
  padding-left: 10px;
}

.company-info-area .social-icons>a:hover,
.social-icons>a:focus,
.social-icons>a:active {
  text-decoration: none;
}

.company-info-area .social-icons>a i {
  font-size: 1.5rem;
}

.company-info-area .social-icons>a i.fab {
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .company-info-area .social-icons {
    margin-top: 10px;
    text-align: center;
  }

  .company-info-area ul li {
    display: block;
  }

  .company-info-area ul li:after {
    border: 0;
  }
}

/* .copyright-area */
div.copyright-area {}

.copyright-area {
  padding: 10px 0 30px 0;
}

.copyright-area span {
  font-size: 0.75rem;
  color: #999;
}

/*!
 * .modal
 */
div.modal.modal-popup#modalPopup .modal-dialog {}

.modal {
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-popup .modal-dialog {
  top: 50%;
  transform: translateY(-50%);
}

.modal-popup .modal-header {
  border: 0;
  background-color: #FFF;
  color: #717171;
}

.modal-popup .modal-body {
  background-color: #FFF;
  border: 0px;
  text-align: center;
  padding: 1.25rem;
}

.modal-popup .modal-body .display-5 {
  font-weight: bold;
}

.modal-popup .modal-body .display-6 {
  font-weight: bold;
}

.modal-popup .modal-body p:last-of-type {
  margin-bottom: 0;
  color: #717171;
}

.modal-popup .modal-footer {
  border: 0;
}

.modal-popup .modal-footer span {
  display: flex;
  width: 27%;
  white-space: nowrap;
}

.modal-popup .modal-footer span:first-of-type {
  justify-content: inherit;
}

.modal-popup .modal-footer span:first-of-type label {
  padding-right: 5px;
}

.modal-popup .modal-footer span:last-of-type {
  justify-content: flex-end;
}

.modal-popup .modal-footer span label {
  margin-bottom: 0;
}

.modal-popup .modal-footer span label.close,
.modal-popup .modal-footer span input.close {
  font-size: 0.87rem;
  font-weight: 400;
}

/*!
 * .ad-banner-area
 */
div.ad-banner-area#adBannerArea {}

.ad-banner-area {
  position: relative;
  display: none;
  overflow: hidden;
  background-color: #E1E1E1;
}

.ad-banner-area .banner-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.ad-banner-area .banner-caption {
  text-align: center;
  padding: 0.5rem 0;
}

.ad-banner-area .banner-caption p {
  margin-bottom: 0;
}

.ad-banner-area .banner-caption p:first-child {
  font-family: 'Nanum Myeongjo', serif;
  font-weight: bold;
  margin-top: 10px;
}

.ad-banner-area .banner-caption p i {
  font-size: 2rem;
  margin-top: -7px;
  color: #3D3037;
  position: absolute;
}

.ad-banner-area .banner-caption-bottom {
  position: relative;
}

.ad-banner-area .banner-caption-bottom>div {
  position: absolute;
  right: 15px;
  bottom: 0;
}

.ad-banner-area .banner-caption-bottom>div span {
  padding: 1px 7px 2px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  overflow: hidden;
}

.ad-banner-area .banner-caption-bottom>div span:first-child {
  padding-right: 3px;
  margin-right: 3px;
}

.ad-banner-area .banner-caption-bottom>div span label.close,
.ad-banner-area .banner-caption-bottom>div span input.close {
  float: none;
  font-size: 0.87rem;
  font-weight: 400;
  color: #FFF;
  text-shadow: none;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .ad-banner-area .banner-caption p {
    padding: 0 3rem;
  }

  .ad-banner-area .banner-caption-bottom>div {
    right: 0;
  }

  .ad-banner-area .banner-caption-bottom>div span:first-child {
    display: none;
  }
}

/*!
 * .btn-backtotop
 */
div.backtotop-area .btn-backtotop#backToTop {}

.btn-backtotop {
  position: fixed;
  z-index: 1000;
  right: 3%;
  bottom: 3%;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #AAA;
  visibility: hidden;
  transition: background 0.5s;
}

.btn-backtotop:hover {
  background-color: var(--point-hover);
}

.btn-backtotop.active {
  visibility: visible;
  opacity: 1;
}

.btn-backtotop i {
  font-size: 1.25rem;
  color: #FFF;
}

/*!
 * I.E 기술지원 중단
 */
div.unsupported-browser#unsupportedBrowser {}

.unsupported-browser>div {
  margin-bottom: 0;
  text-align: center;
  border-radius: 0;
  font-size: 0.75rem;
}

/*-- Floating Nav --*/
.floating-menu {
  position: fixed;
  right: 20px;
  top: 35%;
  z-index: 100;
}

.floating-menu li {
  list-style: none;
  margin: 5px 0 0 0;
  background: #be202f;
  color: white;
  text-align: center;
  border-radius: 4px;
  font-size: 11px;
  cursor: pointer;
}

.floating-menu li a {
  display: block;
  /*width: 123px;*/
  padding: 10px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.floating-menu li a i {
  font-size: 2.5em;
  display: block;
}

@media screen and (max-width: 768px) {
  .floating-menu {
    right: 15px;
    top: 40%;
  }

  .floating-menu li a i {
    font-size: 2.3em;
  }

  .floating-menu li a span {
    display: none;
  }
}