@charset "UTF-8";
/*-------------------------------------------------
title       : 레이아웃
Author      : PLANI moni
Create date : 2024-05-10
Last modification : 2024-05-14
-------------------------------------------------*/
#wrap {
  outline: 0;
  position: relative;
}
#wrap.active::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5;
}

#header {
  width: 100%;
  position: fixed;
  z-index: 10;
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  background-color: rgba(255, 255, 255, 0.7019607843);
}
#header .header_wrap {
  display: block;
  height: 8rem;
}

#logo {
  width: 11.56rem;
  margin: 1.2rem 0 0 0rem;
  position: absolute;
  left: 3rem;
  top: 0;
  z-index: 1;
}
#logo a {
  display: block;
  width: 11.56rem;
  background-image: url();
  background-repeat: no-repeat;
}

#gnb1 {
  position: relative;
  text-underline-position: under;
  padding: 0 21rem 0 23rem;
}
#gnb1::before {
  width: 1000%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
}
#gnb1 > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#gnb1 > ul > li {
  position: relative;
}
#gnb1 > ul > li:first-child > a::after {
  display: none;
}
#gnb1 > ul > li > a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  line-height: 8rem;
  margin: 0 3rem;
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#gnb1 > ul > li > a::after {
  content: "\e941";
  font-family: "xeicon";
  width: 2rem;
  height: 8rem;
  margin-left: 0.6rem;
  line-height: 8rem;
  display: inline-block;
  font-size: 1.6rem;
  text-align: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#gnb1 > ul > li > a:hover, #gnb1 > ul > li > a:focus {
  color: #007257;
}
#gnb1 > ul > li.active > a::before {
  width: 100%;
}
#gnb1 > ul > li.active > a::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#gnb1 > ul > li.active .depth2 {
  visibility: visible;
  overflow: visible;
  width: auto;
  height: auto;
  opacity: 1;
  width: 22rem;
}
#gnb1 .depth2 {
  visibility: hidden;
  overflow: hidden;
  width: 0;
  height: 0;
  opacity: 0;
  border-radius: 1.2rem;
  border: 1px solid #7A7A7A;
  background: #FFF;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 2rem;
  font-weight: 500;
  line-height: 1.4;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 7rem;
}
#gnb1 .depth2 li + li {
  margin-top: 1rem;
}
#gnb1 .depth2 a:hover, #gnb1 .depth2 a:focus {
  text-decoration: underline;
}

#hnb .link {
  border-radius: 40px;
  border: 1px solid #333;
  padding: 0.65rem 1.6rem;
  margin-top: 2.3rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  position: absolute;
  right: 3rem;
  top: 0;
  display: inline-block;
  line-height: 2rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#hnb .link::after {
  content: "";
  width: 1.7rem;
  height: 1.6rem;
  background-image: url(../img/arrow_1.png);
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  vertical-align: top;
  margin: 0.1rem 0 0 0.2rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#hnb .link:hover, #hnb .link:focus {
  background: #007257 !important;
  color: #fff;
  border-color: #007257;
}
#hnb .link:hover::after, #hnb .link:focus::after {
  background-image: url(../img/arrow_2.png);
}

@-webkit-keyframes header-active-animation {
  0% {
    -webkit-transform: translateY(-25.2rem);
            transform: translateY(-25.2rem);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes header-active-animation {
  0% {
    -webkit-transform: translateY(-25.2rem);
            transform: translateY(-25.2rem);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes vMove {
  0% {
    -webkit-transform: translateX(-0.3rem);
    transform: translateX(-0.3rem);
  }
  50% {
    -webkit-transform: translateX(0.1rem);
    transform: translateX(0.1rem);
  }
  100% {
    -webkit-transform: translateX(-0.3rem);
    transform: translateX(-0.3rem);
  }
}
@keyframes vMove {
  0% {
    -webkit-transform: translateX(-0.3rem);
    transform: translateX(-0.3rem);
  }
  50% {
    -webkit-transform: translateX(0.1rem);
    transform: translateX(0.1rem);
  }
  100% {
    -webkit-transform: translateX(-0.3rem);
    transform: translateX(-0.3rem);
  }
}
#gnb2 {
  position: absolute;
  right: 0;
  top: 0;
}
#gnb2 .control {
  font-size: 2.4rem;
  overflow: hidden;
  position: absolute;
  z-index: 3;
  color: #333;
  text-align: center;
  line-height: 3rem;
  display: block;
  top: 3.2rem;
  right: 3rem;
  width: 20px;
  height: 16px;
  padding: 7px 0;
  border-top: 2px solid #333;
  text-indent: -9999px;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}
#gnb2 .control::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #333;
}
#gnb2 .control::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#gnb2 .control.open {
  display: none;
}
#gnb2 .control.open:hover, #gnb2 .control.open:focus {
  top: 4.5rem;
}
#gnb2 .control.open:hover::before, #gnb2 .control.open:focus::before {
  opacity: 0;
}
#gnb2 .control.open:hover::after, #gnb2 .control.open:focus::after {
  top: 7px;
}
#gnb2 .control.close {
  display: none;
  width: 30px;
  height: 30px;
  border: none;
}
#gnb2 .control.close::before {
  width: 24px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #fff;
  top: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#gnb2 .control.close::after {
  width: 24px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #fff;
  top: 10px;
}
#gnb2 .control.close:hover::before, #gnb2 .control.close:focus::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#gnb2 .control.close:hover::after, #gnb2 .control.close:focus::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#gnb2 > ul {
  visibility: hidden;
  opacity: 0;
  height: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  width: 128rem;
  max-width: calc(100% - 4rem);
  margin-left: auto !important;
  margin-right: auto !important;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15) 1px, #1D1D1D 0, #1D1D1D 33.32%);
}
#gnb2 > ul::before {
  content: "";
  width: 1000%;
  height: 100%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0rem;
  background-color: #1D1D1D;
  z-index: -1;
}
#gnb2 > ul > li {
  padding: 13.3rem 2.5rem 0rem 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33.33%;
          flex: 1 1 33.33%;
  max-width: 33.33%;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
#gnb2 > ul > li:nth-child(n+4) {
  padding-bottom: 10rem;
}
#gnb2 > ul > li > a {
  font-size: 3.36rem;
  font-weight: 700;
  padding-left: 2rem;
  margin-bottom: 1.7rem;
  border-left: 6px solid #1DB9AB;
  line-height: 4rem;
  display: block;
}
#gnb2 > ul > li > a:hover, #gnb2 > ul > li > a:focus {
  color: #208E81;
}
#gnb2 .depth2 > ul > li > a {
  display: inline-block;
  padding-left: 3.5rem;
  font-size: 2.24rem;
  font-weight: 500;
  line-height: 3rem;
  margin-bottom: 1.4rem;
  vertical-align: top;
  color: #7A7A7A;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
}
#gnb2 .depth2 > ul > li > a::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#gnb2 .depth2 > ul > li > a:hover, #gnb2 .depth2 > ul > li > a:focus {
  color: #208E81;
}
#gnb2 .depth2 > ul > li > a:hover::before, #gnb2 .depth2 > ul > li > a:focus::before {
  background-color: #208E81;
}
#gnb2 .depth2 div {
  padding-left: 4rem;
  padding-bottom: 2rem;
}
#gnb2 .depth2 div a {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  line-height: 3.6rem;
}
#gnb2 .depth2 div a:hover, #gnb2 .depth2 div a:focus {
  color: #208E81;
}
#gnb2.active {
  position: relative;
  z-index: 100;
  top: -9.2rem;
}
#gnb2.active .open {
  display: none !important;
}
#gnb2.active .close {
  display: block;
}
#gnb2.active > ul {
  visibility: visible;
  opacity: 1;
  height: auto;
}

#main.active::before {
  content: "";
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

#footer {
  background-color: #fff;
}
#footer .footer_wrap {
  width: 171rem;
  max-width: calc(100% - 4rem);
  margin-left: auto !important;
  margin-right: auto !important;
  position: relative;
  padding: 3.05rem 0;
  text-align: center;
}
#footer .img1 {
  margin-bottom: 2rem;
  width: 17.5rem;
}
#footer .txt1 br {
  display: none;
}
#footer .btn-top {
  visibility: hidden;
  overflow: hidden;
  width: 0;
  height: 0;
  opacity: 0;
  position: fixed;
  left: 50%;
  bottom: 5rem;
  width: 6.4rem;
  height: 6.4rem;
  margin-left: 68rem;
  border-radius: 100%;
  border: 1px solid #eee;
  background-color: #fff;
  color: #151515;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .btn-top::before {
  display: inline-block;
  position: relative;
  top: 1px;
  font-family: "xeicon";
  vertical-align: top;
  display: block;
  padding-top: 0.9rem;
  content: "\e92f";
  font-size: 1.2rem;
}
#footer .btn-top:hover, #footer .btn-top:focus {
  background-color: #13633D;
  border: 1px solid #13633D;
  color: #fff;
  -webkit-box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.3);
          box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.3);
}
#footer .btn-top.active {
  visibility: visible;
  overflow: visible;
  width: auto;
  height: auto;
  opacity: 1;
  width: 6.4rem;
  height: 6.4rem;
}
#footer .btn-top.top {
  bottom: 15rem;
}