html {
  overflow-x: hidden;
}

body {
  position: relative;
  width: 100vw;
  font-family: "NanumSquareNeo";
  font-family: "Pretendard";
}
body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body a {
  text-decoration: none;
  font-size: 1rem;
  color: #222;
}

.header-empty {
  width: 17.8rem;
  padding: 3rem 2rem;
  box-sizing: border-box;
  height: 100vh;
}

.empty {
  width: 100vw;
  height: 100vh;
  background: #bb8c8c;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 150px;
}

/* header */
header {
  width: 15rem;
  height: calc(var(--vh, 1vh) * 100);
  background: #fff;
  position: fixed;
  padding: 3rem 2rem;
  box-sizing: border-box;
  z-index: 100;
  left: -15rem;
  transition: 0.5s;
}
header.on {
  left: 0;
}
header .logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo img {
  height: 10rem;
}
header .language {
  width: 100%;
  margin-top: 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .language ul {
  display: flex;
}
header .language ul li {
  width: 4rem;
  height: 2rem;
  background: #e6e6e6;
}
header .language ul li a {
  color: #222;
  font-weight: bold;
  font-size: 0.8rem;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .language ul .on a {
  color: #fff;
  background: #005a36;
}
header .nav {
  width: 100%;
  margin-top: 3rem;
}
header .nav .gnb > li {
  height: 4rem;
  font-weight: 600;
  padding: 1rem;
  border-bottom: 1px solid #e6e6e6;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: start;
}
header .nav .gnb > li a {
  font-size: 1.3rem;
  transition: 0.2s;
}
header .nav .gnb > li a:hover {
  color: #005a36;
}
header .nav .gnb > li .sub-box {
  width: 0;
  height: 100vh;
  background: #fff;
  position: absolute;
  top: 0;
  left: 15rem;
  border-left: 1px solid #e6e6e6;
  box-sizing: border-box;
  padding: 14.5rem 2.5rem 0;
  transition: 0.3s ease-out;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
}
header .nav .gnb > li .sub-box .on {
  width: 20rem;
}
header .nav .gnb > li .on {
  width: 20rem;
  opacity: 1;
  visibility: visible;
}
header .nav .gnb ul {
  width: 0rem;
  overflow: hidden;
}
header .nav .gnb ul li {
  width: 20rem;
  height: 4rem;
  display: flex;
  align-items: center;
}
header .nav .gnb ul li a {
  color: #222;
  opacity: 0.3;
}
header .nav .gnb ul li a:hover {
  opacity: 1;
  color: #222;
}
header .sns {
  margin-top: 1.5rem;
}
header .sns ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: start;
}
header .sns ul li {
  margin-right: 0.3rem;
}
header .sns ul li a img {
  height: 2.5rem;
}

/* aside */
aside {
  width: 9rem;
  background: #005a36;
  position: fixed;
  z-index: 10;
  bottom: -15rem;
  right: 0;
  transition: 0.5s;
}
aside.on {
  bottom: 0;
}
aside a {
  height: 4.5rem;
  color: #fff;
  font-weight: bold;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* main */
main {
  width: 100vw;
  height: 100vh;
  position: relative;
}
main #intro {
  width: 100%;
  height: 100%;
}
main #intro .wrap {
  width: 100%;
  height: 100%;
  position: fixed;
}
main #intro .wrap.static-position {
  position: static !important;
}
main #intro .wrap {
  background: #fff;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
main #intro .wrap .text {
  font-size: 4vw;
  font-family: "NanumSquareNeo";
  font-weight: 600;
  margin-bottom: 80px;
  text-align: center;
}
main #intro .wrap .text .typing-txt {
  display: none;
}
main #intro .wrap .text .typing ul {
  display: flex;
}
main #intro .wrap .text .typing ul li.on {
  display: inline-block;
  animation-name: cursor;
  animation-duration: 0.3s;
  animation-iteration-count: infinite;
}
main #intro .wrap .text .typing ul li:last-child {
  color: #36ad37;
}
@keyframes cursor {
  0% {
    border-right: 1px solid #fff;
  }
  50% {
    border-right: 1px solid #000;
  }
  100% {
    border-right: 1px solid #fff;
  }
}
main #intro .wrap {
  /* intro-scroll */
}
main #intro .wrap .scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translatex(-50%);
  z-index: 2;
  display: inline-block;
  color: #222;
  transition: opacity 0.3s;
}
main #intro .wrap .scroll #intro-scroll a {
  padding-top: 60px;
}
main #intro .wrap .scroll #intro-scroll a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #222;
  border-radius: 50px;
  box-sizing: border-box;
}
main #intro .wrap .scroll #intro-scroll a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: "";
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #222;
  border-radius: 100%;
  animation: sdb9 2s infinite;
  box-sizing: border-box;
}
@keyframes sdb9 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
main {
  /* visual */
}
main #visual {
  width: 100vw;
  height: 100vh;
  position: relative;
}
main #visual .swiper {
  width: 100%;
  height: 100%;
}
main #visual .swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}
main #visual .swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main #visual .swiper .swiper-slide .inner {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 30s ease-out;
}
main #visual .swiper .swiper-slide .inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.1;
  position: absolute;
  top: 0;
}
main #visual .swiper .swiper-slide .inner-bg3 {
  background: url(../images/visual.jpg) no-repeat top -13rem center/cover;
}
main #visual .swiper .swiper-slide .inner-bg2 {
  background: url(../images/visual2.JPG) no-repeat top center/cover;
}
main #visual .swiper .swiper-slide .inner-bg1 {
  background: url(../images/visual3.jpg) no-repeat top center/cover;
}
main #visual .swiper .swiper-slide .contants {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
main #visual .swiper .swiper-slide .contants .logo {
  position: absolute;
  top: 3rem;
  left: 3rem;
}
main #visual .swiper .swiper-slide .contants .logo img {
  height: 7rem;
}
main #visual .swiper .swiper-slide .contants .txt {
  text-align: center;
  color: #fff;
  font-family: "NanumSquareNeo";
  opacity: 0;
  position: relative;
  top: 3rem;
  transform-origin: center center;
  transition: 0.5s ease-out;
}
main #visual .swiper .swiper-slide .contants .txt h2 {
  font-size: 3vw;
}
main #visual .swiper .swiper-slide .contants .txt h3 {
  font-size: 8vw;
  font-weight: 900;
  margin-top: 3rem;
}
main #visual .swiper .swiper-slide-active .inner {
  transform: scale(1.2);
}
main #visual .swiper .swiper-slide-active .contants .txt {
  opacity: 1;
  top: 0;
}
main #visual .autoplay-progress {
  position: absolute;
  right: 2rem;
  bottom: 16px;
  z-index: 10;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
}
main #visual .autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: #fff;
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

/* solution */
#solution {
  position: relative;
  z-index: 3;
}
#solution .inner {
  width: 100vw;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#solution .inner .container {
  width: 100%;
  height: 100%;
  background: url(../images/solution1.jpg) no-repeat top center/cover;
  transition: background 0.3s ease-in-out, opacity 0.3s ease-out;
  display: flex;
}
#solution .inner .container::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  opacity: 0.1;
  position: absolute;
  top: 0;
}
#solution .inner .container {
  position: relative;
}
#solution .inner .container > li:nth-child(1) {
  width: 15rem;
}
#solution .inner .container > li:nth-child(2) {
  width: calc(100% - 15rem - 156px - 35%);
  height: 100%;
  position: relative;
}
#solution .inner .container > li:nth-child(2) > ul {
  width: 100%;
  height: 100%;
  display: flex;
}
#solution .inner .container > li:nth-child(2) > ul > li:first-child {
  display: none;
}
#solution .inner .container > li:nth-child(2) > ul > li:nth-child(2) {
  height: 100%;
  flex-direction: column;
  color: #fff;
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#solution .inner .container > li:nth-child(2) > ul > li:nth-child(2) .wrap {
  position: relative;
}
#solution .inner .container > li:nth-child(2) > ul > li:nth-child(2) .wrap h1 {
  font-size: 4vw;
  font-weight: 900;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}
#solution .inner .container > li:nth-child(2) > ul > li:nth-child(2) .wrap p {
  font-size: 1.5vw;
  margin: 0.5vw 0 2vw;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}
#solution .inner .container > li:nth-child(2) > ul > li:nth-child(2) .list li {
  margin-bottom: 0.8vw;
}
#solution .inner .container > li:nth-child(2) > ul > li:nth-child(2) .list li a {
  font-size: 2vw;
  font-weight: 600;
  color: #fff;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
}
#solution .inner .container > li:nth-child(3) {
  width: 156px;
}
#solution .inner .container > li:nth-child(3) .solution-tab-text-container {
  width: 156px;
  height: 156px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 10px solid #f3f3f3;
  background-color: #005a36;
  border-radius: 100%;
  position: relative;
  left: 50%;
  top: 55%;
  z-index: 3;
}
#solution .inner .container > li:nth-child(3) .solution-tab-text-container svg {
  width: 100%;
  height: 100%;
}
#solution .inner .container > li:nth-child(3) .solution-tab-text-container svg .rotating-text-group {
  animation: rotateGroup 15s linear infinite;
  transform-origin: center center;
}
#solution .inner .container > li:nth-child(3) .solution-tab-text-container svg .rotating-text-group .circular-text {
  font-size: 0.6rem;
  font-weight: 400;
  fill: #fff;
}
@keyframes rotateGroup {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#solution .inner .container > li:last-child {
  width: 35%;
  height: 100%;
  background: #f3f3f3;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#solution .inner .container > li:last-child > ul {
  width: 100%;
}
#solution .inner .container > li:last-child > ul li {
  width: 100%;
}
#solution .inner .container > li:last-child > ul li .wrap {
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  text-align: center;
  transition: 0.3s ease-in-out, opacity 0.3s ease-out;
}
#solution .inner .container > li:last-child > ul li .wrap.on {
  display: flex;
}
#solution .inner .container > li:last-child > ul li .wrap .img-box {
  width: 100%;
  overflow: hidden;
}
#solution .inner .container > li:last-child > ul li .wrap .img-box img {
  width: 100%;
}
#solution .inner .container > li:last-child > ul li .wrap h1 {
  font-size: 3vw;
  font-weight: 600;
  margin: 4rem 0 1rem;
}
#solution .inner .container > li:last-child > ul li .wrap p {
  font-size: 1.2vw;
}
#solution .inner .container > li:last-child > ul li .wrap ul {
  width: 100%;
  display: flex;
  margin-top: 3vw;
}
#solution .inner .container > li:last-child > ul li .wrap ul li {
  width: 25%;
  height: 3vw;
  background: #fff;
  font-size: 1.5vw;
  font-weight: 600;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #f3f3f3;
  box-sizing: border-box;
  transition: 0.1s ease-in-out, opacity 0.3s ease-out;
}
#solution .inner .container > li:last-child > ul li .wrap ul li a {
  display: block;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#solution .inner .container > li:last-child > ul li .wrap ul li.on {
  background: #005a36;
}
#solution .inner .container > li:last-child > ul li .wrap ul li.on a {
  color: #fff;
}

#contect {
  width: 100%;
  height: 500px;
  background: url(../images/gnbg.jpg) no-repeat top center/cover;
  background-attachment: fixed;
}
#contect .inner {
  width: 100%;
  height: 100%;
  display: flex;
}
#contect .inner .header-empty {
  width: 17rem;
  height: 0;
  padding: 0;
}
#contect .inner > ul {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#contect .inner > ul > li:nth-child(1) h3 {
  color: #fff;
  font-size: 2vw;
  line-height: 1.2;
  font-weight: 600;
}
#contect .inner > ul > li:nth-child(2) {
  margin: 0 8vw;
}
#contect .inner > ul > li:nth-child(2) ul li {
  width: 15vw;
  height: 4vw;
  margin-bottom: 1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 20px;
  font-size: 1vw;
  font-weight: 600;
  background: linear-gradient(135deg, #1c694a, rgba(255, 255, 255, 0) 30%);
  border: solid 1px #ebebeb;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(50px);
  box-shadow: 0 4px 34px rgba(0, 0, 0, 0.3);
}
#contect .inner > ul > li:nth-child(2) ul li span {
  margin-left: 0.3vw;
}
#contect .inner > ul > li:nth-child(3) {
  color: #fff;
}
#contect .inner > ul > li:nth-child(3) h4 {
  font-size: 1vw;
  font-weight: 600;
  margin-bottom: 2vw;
}
#contect .inner > ul > li:nth-child(3) h2 {
  font-size: 1.8vw;
  letter-spacing: -2px;
  font-weight: 600;
  margin-bottom: 0.5vw;
}
#contect .inner > ul > li:nth-child(3) ul {
  display: flex;
}
#contect .inner > ul > li:nth-child(3) ul li {
  line-height: 1.3;
}
#contect .inner > ul > li:nth-child(3) ul > li:nth-child(1) {
  width: 3.5vw;
}
#contect .inner > ul > li:nth-child(3) .time {
  background: #000;
  width: 15vw;
  height: 4vw;
  margin-top: 1vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
#contect .inner > ul > li:nth-child(3) .time span {
  font-size: 2vw;
  margin-right: 0.5vw;
}
#contect .inner > ul > li:nth-child(3) .time {
  background: linear-gradient(135deg, #1c694a, rgba(255, 255, 255, 0) 30%);
  border: solid 1px #ebebeb;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(50px);
  box-shadow: 0 4px 34px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}

#product {
  width: 100vw;
  background: #eee;
}
#product .inner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#product .inner .swiper {
  width: 100%;
  height: 100%;
}
#product .inner .swiper > div {
  display: none;
}
#product .inner .swiper > div.view {
  display: flex;
}
#product .inner ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5vw;
}
#product .inner ul li a {
  width: 13vw;
  height: 3vw;
  background: #fff;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  font-size: 1.2vw;
  font-weight: 600;
}
#product .inner ul li.select a {
  background: #36ad37;
  color: #fff;
}
#product .inner ul li:first-child {
  margin-right: 2vw;
}
#product .inner .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #eee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1vw 0;
  box-sizing: border-box;
}
#product .inner .swiper-slide h3 {
  font-size: 2vw;
  font-weight: 600;
  margin: 2rem 0 1rem;
}
#product .inner .swiper-slide p {
  font-size: 1vw;
  margin-bottom: 3rem;
}
#product .inner .swiper-slide p span {
  color: #36ad37;
  position: relative;
  top: 5px;
}
#product .inner .swiper-slide:hover {
  background: url(../images/glass.jpg) no-repeat top center/cover;
}
#product .inner .swiper-slide-next {
  background: url(../images/glass.jpg) no-repeat top center/cover;
}
#product .inner .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#question {
  width: 100vw;
  height: 100vh;
  background: #fff;
  padding-top: 5%;
  box-sizing: border-box;
}
#question .inner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#question .inner .text-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  flex-direction: column;
}
#question .inner .text-box p {
  font-size: 4vw;
  text-align: center;
  line-height: 1.4;
}
#question .inner .text-box p span {
  color: #36ad37;
  font-weight: 600;
}
#question .inner .text-box div {
  width: 1px;
  height: 200px;
  background: #000;
  margin-top: 100px;
}

#video {
  width: 100vw;
  height: 100vh;
}
#video .inner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#video .inner .youtube {
  width: 100%;
  height: 100%;
  position: relative;
  left: -15px;
}
#video .inner .youtube::after {
  width: 100%;
  height: 100%;
  background: #000;
  content: "";
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
#video .inner .youtube a {
  width: 12vw;
  height: 3vw;
  background: #ff0033;
  position: absolute;
  top: 3%;
  right: 2%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 10px;
  font-size: 1vw;
  font-weight: 600;
}
#video .inner .youtube a img {
  width: 30%;
}

#news {
  width: 100vw;
  height: 100vh;
  background: #005a36;
}
#news .inner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#news .inner .swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}
#news .inner .swiper .text {
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}
#news .inner .swiper .text h1 {
  font-size: 4vw;
}
#news .inner .swiper .text p {
  margin-top: 20px;
}
#news .inner .swiper-slide {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-position: center;
  background-size: cover;
  width: 32vw;
  height: 32vw;
  margin-top: 50px;
  border: #fff solid 1px;
  box-sizing: border-box;
  color: #fff;
}
#news .inner .swiper-slide .img {
  width: 30vw;
  height: 20vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
#news .inner .swiper-slide .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#news .inner .swiper-slide .text_box {
  width: 30vw;
  height: 10vw;
  background: #013822;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#news .inner .swiper-slide .text_box h3 {
  font-size: 1vw;
  text-align: center;
  margin: 0 0 10px;
  line-height: 1.2;
}
#news .inner .swiper-slide .text_box p {
  font-size: 1vw;
}
#news .inner .swiper-slide .text_box a {
  width: 8vw;
  height: 2.5vw;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1vw;
  background: #013822;
  border: #fff solid 1px;
  box-sizing: border-box;
  color: #fff;
}
#news .inner .swiper-slide .text_box a:hover {
  background: #fff;
  color: #000;
}
#news .inner .swiper-slide .text_box a {
  position: relative;
  z-index: 10;
  font-size: 1vw;
}
#news .inner .swiper-slide img {
  display: block;
  width: 100%;
}

footer {
  width: 100vw;
  height: 150px;
  background: #eee;
}
footer .inner {
  width: 100%;
  height: 100%;
  display: flex;
}
footer .inner .header-empty {
  width: 17rem;
  height: 0;
  padding: 0;
}
footer .inner .container {
  width: 100%;
  height: 100%;
}
footer .inner .container .up {
  width: 100%;
  height: 100%;
  background: #222;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .inner .container .up .logo img {
  height: 4vw;
}
footer .inner .container .up .text {
  margin-left: 20px;
}
footer .inner .container .up .text p:last-child {
  opacity: 0.5;
  margin-top: 10px;
}/*# sourceMappingURL=common_new.css.map */