@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.5/dist/web/static/pretendard.css");
@import url("https://cdn.jsdelivr.net/gh/innks/NanumSquareRound@master/nanumsquareround.css");
/* CSS reset */
*,
*:before,
*:after {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  word-break: keep-all;
}

/* loading */
.loading{width:100%;height:100%;position:fixed;left:0px;top:0px;background:#fff;opacity:0.5;z-index:9999;display:none; /* 이 값으로 레이어의 위치를 조정합니다. */}
.loading_img{position:absolute; left: 50%; top: 50%; width: 200px; height: 200px; transform: translateX(-50%); transform: translateY(-50%)}

html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
a,
blockquote,
th,
td,
footer {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
textarea,
button {
  margin: 0;
  padding: 0;
  border: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}

ol,
ul,
li {
  list-style: none;
}

img {
  vertical-align: middle;
}

a,
address {
  text-decoration: none;
  font-style: normal;
}

body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: 'NanumSquareRound';
  letter-spacing: -0.04em;
  position: relative;
  color: #111;
}

header {
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 10;
  width: 100%;
  transition: all .3s;
}

header #header-wrap {
  display: flex;
  align-items: center;
  max-width: 91.66vw;
  width: 100%;
  margin: 0 auto;
  height: 80px;
}

header #logo a {
  display: block;
  width: 64px;
  height: 40px;
  font-size: 0;
  position: relative;
  z-index: 2;
  background-image: url("../images/logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

header #gnb {
  margin: 0 auto 0 100px;
  font-family: 'Pretendard';
}

header #gnb > ul {
  display: grid;
  grid-template-columns: repeat(3, auto);
  column-gap: 70px;
  align-items: center;
  position: relative;
  height: 100%;
}

header #gnb > ul > li {
  position: relative;
  height: 80px;
}

header #gnb > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #fff;
}

header #gnb > ul > li .sub-menu {
  width: 120px;
  text-align: center;
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: calc(50% - 60px);
  z-index: 1;
  transition: all .5s;
  background: #fff;
}

header #gnb > ul > li .sub-menu li {
  margin-bottom: 12px;
}

header #gnb > ul > li .sub-menu li:last-child {
  margin-bottom: 0;
}

header #gnb > ul > li .sub-menu a {
  display: block;
  font-size: 18px;
  line-height: 22px;
  color: #111;
}

header .util {
  display: flex;
  align-items: center;
  margin-right: 170px;
}

header .util > li {
  position: relative;
}

header .util > li:nth-child(1) {
  margin-right: 30px;
  padding-right: 30px;
}

header .util > li:nth-child(1):after {
  content: "";
  width: 1px;
  height: 10px;
  display: block;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  right: 0;
  top: calc(50% - 5px);
  right: 0;
}

header .util > li:last-child {
  margin-left: 60px;
}

header .util > li > a,
header .util > li p {
  color: #fff;
  font-family: 'Pretendard';
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  height: 28px;
  display: block;
}

header .util > li.sign-up {
  position: relative;
  cursor: pointer;
}

header .util > li.sign-up p {
  position: relative;
  cursor: pointer;
}

header .util > li.sign-up ul {
  width: 90px;
  position: absolute;
  top: 40px;
  display: none;
  text-align: center;
  background-color: #fff;
  border: 1px solid #ddd;
  box-sizing: border-box;
  padding: 10px 0;
}

header .util > li.sign-up ul li a {
  font-size: 14px;
  display: block;
  line-height: 32px;
  color: #111;
  font-family: 'Pretendard';
}

header.fixed, header.active {
  background-color: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.03);
}

header.fixed #gnb > ul > li > a, header.active #gnb > ul > li > a {
  color: #111;
}

header.fixed .util > li:nth-child(1):after, header.active .util > li:nth-child(1):after {
  background-color: rgba(17, 17, 17, 0.4);
}

header.fixed .util > li > a,
header.fixed .util > li p, header.active .util > li > a,
header.active .util > li p {
  color: #111;
}

header.fixed .util > li > a path,
header.fixed .util > li p path, header.active .util > li > a path,
header.active .util > li p path {
  fill: #111;
}

footer {
  width: 100%;
  background-color: #FFB600;
  padding: 30px 0 20px;
  position: relative;
  z-index: 1;
}

footer #footer-wrap {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

footer #footer-wrap .footer-logo {
  margin-right: 40px;
}

footer #footer-wrap > div:nth-child(2) {
  display: flex;
  margin-right: auto;
}

footer #footer-wrap > div:nth-child(2) p {
  font-family: 'Pretendard';
  font-size: 15px;
  line-height: 22px;
  color: #8C704E;
}

footer #footer-wrap > div:nth-child(2) p span {
  font-weight: 600;
  color: #564633;
}

footer #footer-wrap > div:nth-child(2) p.copy {
  color: #564633;
  margin-top: 20px;
}

footer #footer-wrap > div:nth-child(2) ul {
  margin: 0 auto 0 80px;
}

footer #footer-wrap .partners {
  display: grid;
  grid-template-columns: repeat(2, auto);
  row-gap: 20px;
  column-gap: 30px;
}

footer #footer-wrap .partners a {
  display: flex;
  align-items: center;
}

#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

#intro img {
  width: 240px;
  opacity: 0;
}

@keyframes more_btn {
  90% {
    width: 100%;
    right: 0;
  }
  100% {
    width: 48px;
    right: 0;
  }
}

#container .scroll {
  position: absolute;
  bottom: 0;
  left: 13vw;
  width: 1px;
  height: 160px;
  background-color: rgba(255, 255, 255, 0.2);
}

#container .scroll:before {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  border-radius: 100%;
  background-color: #FFB600;
  left: -2px;
  top: -17px;
}

#container .scroll:after {
  content: "";
  width: 1px;
  height: 0;
  display: block;
  position: absolute;
  background-color: #FFB600;
  right: 0;
  animation: scroll_down 2.5s infinite;
}

@keyframes scroll_down {
  0% {
    bottom: 160px;
    height: 0px;
  }
  50% {
    bottom: 0px;
    height: 160px;
  }
  100% {
    bottom: 0px;
    height: 0px;
  }
}

#container.main .section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#container.main .section.mvis {
  background-color: #fff;
}

#container.main .section.mvis #mvis-slider {
  width: 100%;
  height: 100vh;
}

#container.main .section.mvis #mvis-slider .splide__track {
  height: 100%;
}

#container.main .section.mvis #mvis-slider .splide__track .splide__slide {
  height: 100%;
}

#container.main .section.mvis #mvis-slider .bg {
  width: 100%;
  height: 100%;
}

#container.main .section.mvis #mvis-slider .bg img,
#container.main .section.mvis #mvis-slider .bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#container.main .section.mvis #mvis-slider .title {
  position: absolute;
  top: 19.8vw;
  left: 13vw;
  z-index: 1;
  color: #fff;
}

#container.main .section.mvis #mvis-slider .title p {
  transform: translateY(30px);
  opacity: 0;
  font-size: 56px;
  line-height: 64px;
  font-family: 'NanumSquareRound';
}

#container.main .section.mvis #mvis-slider .title span {
  transform: translateY(30px);
  opacity: 0;
}

#container.main .section.mvis #mvis-slider .is-active .title p {
  animation: mvis_txt .8s .6s forwards;
}

#container.main .section.mvis #mvis-slider .is-active .title span {
  animation: mvis_txt .8s .9s forwards;
}

@keyframes mvis_txt {
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

#container.main .section.mvis #mvis-slider .controller {
  display: flex;
  align-items: center;
  position: absolute;
  top: calc(19.8vw - 52px);
  left: 13vw;
  width: 160px;
  height: 12px;
  margin-left: 10px;
}

#container.main .section.mvis #mvis-slider .controller .splide__arrows {
  z-index: 1;
  display: flex;
  width: 100%;
  position: absolute;
  left: 0;
  justify-content: space-between;
}

#container.main .section.mvis #mvis-slider .controller .splide__arrows .splide__arrow {
  position: relative;
  transform: unset;
  background-color: transparent;
  border-radius: 0;
  opacity: 1;
  top: unset;
  height: auto;
}

#container.main .section.mvis #mvis-slider .controller .splide__arrows .splide__arrow:after {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  border: solid #fff;
  border-width: 1px 1px 0 0;
}

#container.main .section.mvis #mvis-slider .controller .splide__arrows .splide__arrow svg {
  display: none;
}

#container.main .section.mvis #mvis-slider .controller .splide__arrows .splide__arrow--prev {
  left: 0;
}

#container.main .section.mvis #mvis-slider .controller .splide__arrows .splide__arrow--prev:after {
  transform: rotate(-135deg);
}

#container.main .section.mvis #mvis-slider .controller .splide__arrows .splide__arrow--next {
  right: 0;
}

#container.main .section.mvis #mvis-slider .controller .splide__arrows .splide__arrow--next:after {
  transform: rotate(45deg);
}

#container.main .section.mvis #mvis-slider .controller .splide__pagination {
  padding: 0;
  bottom: unset;
  left: 30px;
  justify-content: flex-start;
}

#container.main .section.mvis #mvis-slider .controller .splide__pagination li {
  line-height: 1;
}

#container.main .section.mvis #mvis-slider .controller .splide__pagination li .splide__pagination__page {
  opacity: 1;
  width: 10px;
  height: 10px;
  background-color: #413A32;
  border-radius: 5px;
  margin: 0 10px 0 0;
  transition: all .3s;
}

#container.main .section.mvis #mvis-slider .controller .splide__pagination li .splide__pagination__page.is-active {
  background-color: #FFB600;
  transform: unset;
  width: 25px;
}

#container.main .section.mvis #mvis-slider .controller .autoplay-controls {
  z-index: 1;
  position: absolute;
  right: 30px;
}

#container.main .section.mvis #mvis-slider .controller .autoplay-controls .toggle-button {
  width: 10px;
  height: 12px;
  background-image: url("../images/pause_btn.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

#container.main .section.mvis #mvis-slider .controller .autoplay-controls .toggle-button.pause {
  background-image: url(../images/play_btn.png);
}

#container.main .section.about {
  height: 1900px;
}

#container.main .section.about .bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: -1;
}

#container.main .section.about .bg img {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

#container.main .section.about .bg img.active {
  opacity: 1;
}

#container.main .section.about .inner {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

#container.main .section.about .inner .title {
  font-size: 44px;
  line-height: 60px;
  color: #fff;
  position: sticky;
  top: 0;
  padding-top: 220px;
}

#container.main .section.about .inner ul {
  display: grid;
  grid-template-columns: repeat(2, 370px);
  column-gap: 30px;
  row-gap: 300px;
  padding-top: 340px;
}

#container.main .section.about .inner ul li {
  width: 100%;
  height: 500px;
}

#container.main .section.about .inner ul li:nth-child(2) {
  transform: translateY(400px);
}

#container.main .section.about .inner ul li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background-color: #fff;
  padding: 60px 40px;
  color: #111;
  transition: all .3s;
}

#container.main .section.about .inner ul li a h3 {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #FFB600;
  display: flex;
  justify-content: space-between;
}

#container.main .section.about .inner ul li a p {
  font-size: 28px;
  line-height: 32px;
  font-weight: 800;
  margin: auto 0 15px;
}

#container.main .section.about .inner ul li a span {
  font-size: 18px;
  line-height: 28px;
}

#container.main .section.about .inner ul li.active a {
  background: rgba(255, 255, 255, 0.27);
  border: 1px solid #FFFFFF;
  backdrop-filter: blur(5px);
  color: #fff;
}

#container.main .section.solution {
  background-image: url("../images/section03_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#container.main .section.solution .inner {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#container.main .section.solution .inner .shape-wrap {
  position: relative;
  width: 700px;
  height: 700px;
}

#container.main .section.solution .inner .shape-wrap .shape {
  animation: rotate 18s linear infinite;
}

#container.main .section.solution .inner .shape-wrap > p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Pretendard';
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #fff;
  text-align: center;
}

#container.main .section.solution .inner .shape-wrap ul {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation: rotate 18s linear infinite;
}

#container.main .section.solution .inner .shape-wrap ul li {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  position: absolute;
  animation: rotate 18s linear 0s infinite reverse;
}

#container.main .section.solution .inner .shape-wrap ul li p {
  margin-top: 20px;
}

#container.main .section.solution .inner .shape-wrap ul li:nth-child(1) {
  top: 170px;
  left: 105px;
}

#container.main .section.solution .inner .shape-wrap ul li:nth-child(2) {
  top: 174px;
  right: 100px;
}

#container.main .section.solution .inner .shape-wrap ul li:nth-child(3) {
  bottom: 70px;
  left: calc(50% - 32px);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#container.main .section.solution .inner .txt-box {
  color: #fff;
}

#container.main .section.solution .inner .txt-box p {
  font-size: 44px;
  line-height: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

#container.main .section.solution .inner .txt-box span {
  font-size: 18px;
  line-height: 28px;
  font-family: 'Pretendard';
}

#container.main .section.solution .inner .txt-box + ul {
  display: flex;
  margin-top: 60px;
  column-gap: 60px;
}

#container.main .section.solution .inner .txt-box + ul li {
  padding: 10px 0 10px 20px;
  position: relative;
  z-index: 2;
}

#container.main .section.solution .inner .txt-box + ul li a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-family: 'Pretendard';
  font-weight: 700;
}

#container.main .section.solution .inner .txt-box + ul li a img {
  margin-left: 15px;
}

#container.main .section.solution .inner .txt-box + ul li:before {
  content: "";
  width: 48px;
  height: 48px;
  display: block;
  position: absolute;
  border-radius: 24px;
  background-color: #FFB600;
  top: calc(50% - 24px);
  z-index: -1;
  right: calc(100% - 48px);
}

#container.main .section.solution .inner .txt-box + ul li:hover:before {
  animation: more_btn 1s forwards;
}

#container.main .section.differentiation {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 0;
  background-image: url("../images/section04_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#container.main .section.differentiation div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align-last: center;
  padding-bottom: 2.6vw;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

#container.main .section.differentiation div:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  transition: all .6s;
}

#container.main .section.differentiation div p {
  font-size: 32px;
  line-height: 48px;
  font-family: 'Poppins';
  font-weight: 600;
  position: relative;
  z-index: 1;
}

#container.main .section.differentiation div span {
  font-family: 'Pretendard';
  font-size: 20px;
  line-height: 28px;
  margin: 10px 0 50px;
  position: relative;
  z-index: 1;
}

#container.main .section.differentiation div a {
  line-height: 48px;
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  padding-left: 20px;
  position: relative;
  z-index: 1;
}

#container.main .section.differentiation div a img {
  margin-left: 6px;
}

#container.main .section.differentiation div a:before {
  content: "";
  width: 48px;
  height: 48px;
  display: block;
  position: absolute;
  border-radius: 24px;
  background-color: #FFB600;
  right: calc(100% - 48px);
  z-index: -1;
}

#container.main .section.differentiation div a:hover:before {
  animation: more_btn 1s forwards;
}

#container.main .section.differentiation div:hover:before {
  background-color: rgba(140, 112, 78, 0.6);
}

#container.main .section.network {
  background-color: #fff;
}

#container.main .section.network .wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  clip-path: circle(100vmax at 50vw 89%);
  background-image: url("../images/section05_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#container.main .section.network .wrap .shape-wrap {
  width: 184px;
  position: relative;
  z-index: 2;
  top: 13vw;
  left: 31.25vw;
}

#container.main .section.network .wrap .shape-wrap .logo {
  width: 184px;
  height: 184px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: #FFFFFF;
  border: 4px solid #8C704E;
  position: relative;
  z-index: 2;
}

#container.main .section.network .wrap .shape-wrap .logo img {
  width: 98px;
}

#container.main .section.network .wrap .shape-wrap .shape {
  width: 16px;
  height: 16px;
  position: relative;
  z-index: 1;
  border-radius: 100%;
  background-color: #FFB600;
  margin: 30px 0 0;
  left: calc(50% - 8px);
}

#container.main .section.network .wrap .shape-wrap .shape span {
  width: 70px;
  height: 70px;
  border-radius: 100%;
  border: 1px solid rgba(255, 182, 0, 0.4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

#container.main .section.network .wrap .shape-wrap .shape span:nth-child(1) {
  background-color: rgba(255, 182, 0, 0.4);
  border: none;
}

#container.main .section.network .wrap .shape-wrap .shape span:nth-child(2) {
  animation: cricle 4s infinite linear;
}

#container.main .section.network .wrap .shape-wrap .shape span:nth-child(3) {
  animation: cricle 4s infinite 2s linear;
}

#container.main .section.network .wrap .shape-wrap .shape span:nth-child(4) {
  animation: cricle 4s infinite 4s linear;
}

@keyframes cricle {
  80% {
    opacity: 1;
  }
  90% {
    width: 700px;
    height: 700px;
    border-width: 4px;
    opacity: 0;
  }
  100% {
    width: 70px;
    height: 70px;
    opacity: 0;
  }
}

#container.main .section.network .wrap .title {
  font-weight: 300;
  font-size: 44px;
  line-height: 60px;
  position: absolute;
  top: 36.97vw;
  left: 58.33vw;
  z-index: 5;
}

#container.main .section.network .wrap .title strong {
  font-weight: 800;
}

#container.main .section.application {
  height: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 6;
}

#container.main .section.application p {
  font-size: 44px;
  line-height: 60px;
  margin-bottom: 60px;
  color: #fff;
}

#container.sub {
  position: relative;
}

#container.sub .sub-header {
  padding-top: 160px;
  border-bottom: 1px solid #ddd;
  height: 80px;
  box-sizing: content-box;
  display: flex;
  align-items: flex-end;
}

#container.sub .sub-header .inner {
  display: flex;
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: flex-end;
}

#container.sub .sub-header .inner .title {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  margin-bottom: 20px;
}

#container.sub .sub-header .inner .title h2 {
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 72px;
}

#container.sub .sub-header .inner .title p {
  font-family: 'Pretendard';
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  margin: 0 0 10px 20px;
}

#container.sub .sub-header .inner #tab-menu > ul {
  display: flex;
  column-gap: 60px;
}

#container.sub .sub-header .inner #tab-menu > ul > li {
  position: relative;
}

#container.sub .sub-header .inner #tab-menu > ul > li > a {
  display: block;
  font-family: 'Pretendard';
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  color: #111111;
  padding-bottom: 24px;
  border-bottom: 2px solid transparent;
}

#container.sub .sub-header .inner #tab-menu > ul > li.active > a {
  color: #ffb600;
  font-weight: 600;
  border-color: #ffb600;
}

#container.sub .sub-header.active {
  position: fixed;
  top: 80px;
  left: 0;
  z-index: 10;
  width: 100%;
  padding-top: 0;
  background-color: #fff;
}

#container.sub .sub-header .sub-tab {
  display: none;
}

#container.sub .sub-header#sub-tab {
  margin-bottom: 80px;
}

#container.sub .sub-header#sub-tab .sub-tab {
  position: absolute;
  right: 0;
  margin-top: 20px;
  display: flex;
  column-gap: 20px;
}

#container.sub .sub-header#sub-tab .sub-tab a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 20px;
  padding: 0 20px;
  font-size: 18px;
  line-height: 28px;
  background-color: #f7f7f7;
  font-family: 'Pretendard';
  color: #111;
  transition: all .3s;
}

#container.sub .sub-header#sub-tab .sub-tab a:hover {
  background-color: #8C704E;
  color: #fff;
}

#container.sub .contents #svis {
  position: relative;
}

#container.sub .contents #svis .inner {
  position: relative;
}

#container.sub .contents #svis .inner .txt-box p {
  font-size: 60px;
  line-height: 70px;
  font-weight: 300;
}

#container.sub .contents #svis .inner .txt-box p strong {
  font-weight: 800;
}

#container.sub .contents #svis .bg {
  width: 1420px;
  height: 100vh;
  margin: 0 auto;
  padding-top: 380px;
}

#container.sub .contents #svis .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#container.sub .contents #svis .txt-box {
  position: absolute;
  top: 100px;
  left: 0;
}

#container.sub .contents .inner {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
}

#container.sub.about .greeting .txt-box p {
  font-size: 60px;
  line-height: 70px;
  font-weight: 300;
}

#container.sub.about .greeting .txt-box p strong {
  font-weight: 800;
}

#container.sub.about .greeting .section02 {
  height: 600px;
  background-image: url("../images/greeting_section02.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#container.sub.about .greeting .section02 .inner {
  padding: 0 120px;
  height: 100%;
}

#container.sub.about .greeting .section02 .inner .txt-box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 120px;
}

#container.sub.about .greeting .section02 .inner .txt-box p {
  font-size: 44px;
  line-height: 60px;
  flex: none;
}

#container.sub.about .greeting .section02 .inner .txt-box span {
  font-family: 'Pretendard';
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
}

#container.sub.about .greeting .section03 {
  height: 1000px;
  background-image: url("../images/greeting_section03.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#container.sub.about .greeting .section03 .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

#container.sub.about .history .title {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 100px;
  font-size: 60px;
  line-height: 70px;
  font-weight: 300;
  margin-top: 100px;
}

#container.sub.about .history .title strong {
  font-weight: 800;
}

#container.sub.about .history .section {
  position: relative;
}

#container.sub.about .history .section .inner {
  display: grid;
  grid-template-columns: 1fr 940px;
  position: relative;
}

#container.sub.about .history .section .inner .section-nav h4 {
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 28px;
  color: #8C704E;
  margin-bottom: 30px;
}

#container.sub.about .history .section .inner .section-nav ul {
  display: grid;
  row-gap: 30px;
}

#container.sub.about .history .section .inner .section-nav ul li a span {
  display: block;
  font-size: 32px;
  line-height: 48px;
  transition: all .3s;
}

#container.sub.about .history .section .inner .section-nav ul li a span:nth-child(1) {
  transform: scaleY(0);
  transform-origin: top;
  height: 0;
}

#container.sub.about .history .section .inner .section-nav ul li a span:nth-child(2) {
  font-weight: 800;
  color: #ddd;
}

#container.sub.about .history .section .inner .section-nav ul li.active a span {
  font-size: 44px;
  line-height: 60px;
}

#container.sub.about .history .section .inner .section-nav ul li.active a span:nth-child(1) {
  color: #111;
  font-weight: 300;
  transform: scaleY(1);
  height: auto;
}

#container.sub.about .history .section .inner .section-nav ul li.active a span:nth-child(2) {
  color: #ffb600;
}

#container.sub.about .history .section .inner .history-list > div {
  padding: 70px 0;
}

#container.sub.about .history .section .inner .history-list > div:nth-child(1) {
  padding-top: 0;
}

#container.sub.about .history .section .inner .history-list > div:last-child {
  padding-bottom: 170px;
}

#container.sub.about .history .section .inner .history-list > div .vis {
  margin-bottom: 80px;
}

#container.sub.about .history .section .inner .history-list > div .vis img {
  max-width: max-content;
  width: 100%;
  height: auto;
}

#container.sub.about .history .section .inner .history-list > div .year {
  font-weight: 800;
  font-size: 40px;
  line-height: 45px;
  color: #FFB600;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

#container.sub.about .history .section .inner .history-list > div .history-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  row-gap: 50px;
}

#container.sub.about .history .section .inner .history-list > div .history-wrap .history-detail p {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  color: #8C704E;
  margin-bottom: 8px;
}

#container.sub.about .history .section .inner .history-list > div .history-wrap .history-detail ul li {
  font-family: 'Pretendard';
  font-weight: 300;
  font-size: 18px;
  line-height: 32px;
}

#container.sub.about .status .section {
  background-color: #1b1b1b;
  padding: 240px 0 170px;
}

#container.sub.about .status .section .inner {
  position: relative;
  height: 100%;
}

#container.sub.about .status .section .inner .txt-box {
  text-align: right;
  position: absolute;
  top: -40px;
  right: -10px;
}

#container.sub.about .status .section .inner .txt-box p {
  color: #fff;
  font-size: 44px;
  line-height: 60px;
  margin-bottom: 20px;
}

#container.sub.about .status .section .inner .txt-box span {
  color: #aaa;
  font-family: 'Pretendard';
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  display: block;
}

#container.sub.about .status .section .inner .chart {
  display: grid;
  grid-template-columns: repeat(7, 112px);
  column-gap: 50px;
  align-items: end;
}

#container.sub.about .status .section .inner .chart li {
  text-align: center;
  color: #fff;
  font-family: 'Pretendard';
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}

#container.sub.about .status .section .inner .chart li .bar {
  width: 100%;
  border-radius: 56px 56px 0 0;
  background-color: #8C704E;
  padding-top: 11px;
}

#container.sub.about .status .section .inner .chart li .bar i {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  margin: 0 11px;
}

#container.sub.about .status .section .inner .chart li p {
  margin-top: 15px;
}

#container.sub.about .status .section .inner .chart li:nth-child(1) .bar, #container.sub.about .status .section .inner .chart li:nth-child(2) .bar, #container.sub.about .status .section .inner .chart li:nth-child(3) .bar {
  height: 600px;
  background-color: #ffb600;
}

#container.sub.about .status .section .inner .chart li:nth-child(4) .bar {
  height: 460px;
}

#container.sub.about .status .section .inner .chart li:nth-child(5) .bar {
  height: 390px;
}

#container.sub.about .status .section .inner .chart li:nth-child(6) .bar {
  height: 290px;
}

#container.sub.about .status .section .inner .chart li:nth-child(7) .bar {
  height: 200px;
}

#container.sub.about .differentiation .section {
  background-color: #1b1b1b;
  padding-top: 300px;
}

#container.sub.about .differentiation .section .inner {
  max-width: 1180px;
  position: relative;
}

#container.sub.about .differentiation .section .inner .txt-box {
  color: #fff;
}

#container.sub.about .differentiation .section .inner .txt-box h4 {
  font-family: 'Pretendard';
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #FFB600;
}

#container.sub.about .differentiation .section .inner .txt-box h4 span {
  color: #fff;
  font-weight: 500;
}

#container.sub.about .differentiation .section .inner .txt-box p {
  font-size: 44px;
  line-height: 60px;
  font-weight: 300;
}

#container.sub.about .differentiation .section .inner .txt-box p strong {
  font-weight: 700;
}

#container.sub.about .differentiation .section01 .vis-wrap ul {
  display: grid;
  row-gap: 14px;
  margin-top: 60px;
}

#container.sub.about .differentiation .section01 .vis-wrap ul li {
  font-family: 'Pretendard';
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: #aaa;
  position: relative;
  z-index: 1;
  transition: all .6s;
  cursor: default;
}

#container.sub.about .differentiation .section01 .vis-wrap ul li:before {
  content: "";
  width: 48px;
  height: 48px;
  display: block;
  position: absolute;
  border-radius: 100%;
  background-color: #ffb600;
  left: -20px;
  top: calc(50% - 24px);
  z-index: -1;
  transition: all .3s;
  transform-origin: center;
  transform: scale(0);
}

#container.sub.about .differentiation .section01 .vis-wrap ul li.active {
  font-weight: 600;
  font-size: 22px;
  line-height: 26px;
  color: #fff;
  padding-left: 14px;
  margin: 5px 0;
}

#container.sub.about .differentiation .section01 .vis-wrap ul li.active:before {
  transform: scale(1);
}

#container.sub.about .differentiation .section01 .vis-wrap .vis {
  width: 344px;
  height: 650px;
  position: absolute;
  right: 0;
  top: -80px;
}

#container.sub.about .differentiation .section01 .vis-wrap .vis img {
  position: absolute;
  top: 0;
  left: 0;
  transition: all .3s;
  opacity: 0;
  width: 100%;
}

#container.sub.about .differentiation .section01 .vis-wrap .vis img.active {
  opacity: 1;
}

#container.sub.about .differentiation .section02 .txt-box {
  text-align: right;
}

#container.sub.about .differentiation .section02 ul {
  display: grid;
  grid-template-columns: repeat(3, 240px);
  row-gap: 50px;
  column-gap: 160px;
  margin-top: 80px;
}

#container.sub.about .differentiation .section02 ul li {
  text-align: center;
}

#container.sub.about .differentiation .section02 ul li p {
  font-weight: 800;
  font-size: 28px;
  line-height: 32px;
  color: #FFB600;
  margin: 30px 0 10px;
}

#container.sub.about .differentiation .section02 ul li span {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: #aaa;
}

#container.sub.about .differentiation .section03 .vis-wrap {
  position: relative;
  margin-top: 70px;
}

#container.sub.about .differentiation .section03 .vis-wrap ul {
  width: 460px;
}

#container.sub.about .differentiation .section03 .vis-wrap ul li {
  padding: 40px 0;
  font-weight: 300;
  font-size: 28px;
  line-height: 42px;
  color: #666;
  position: relative;
  z-index: 2;
  border-top: 1px solid #3e3e3e;
  cursor: default;
}

#container.sub.about .differentiation .section03 .vis-wrap ul li strong {
  font-weight: 800;
}

#container.sub.about .differentiation .section03 .vis-wrap ul li.active {
  color: #fff;
}

#container.sub.about .differentiation .section03 .vis-wrap ul li.active:before {
  content: "";
  width: 600px;
  height: 2px;
  display: block;
  position: absolute;
  background-color: #fff;
  top: -1px;
  left: 0;
}

#container.sub.about .differentiation .section03 .vis-wrap ul li.active:after {
  content: "";
  width: 100px;
  height: 2px;
  display: block;
  position: absolute;
  background-color: #FFB600;
  top: -1px;
  left: 600px;
}

#container.sub.about .differentiation .section03 .vis-wrap ul li.active strong {
  color: #ffb600;
}

#container.sub.about .differentiation .section03 .vis-wrap .vis {
  width: 580px;
  height: 780px;
  position: absolute;
  top: -205px;
  right: 0;
}

#container.sub.about .differentiation .section03 .vis-wrap .vis img {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all .3s;
  width: 100%;
}

#container.sub.about .differentiation .section03 .vis-wrap .vis img.active {
  opacity: 1;
}

#container.sub.about .differentiation .section04 .txt-box {
  text-align-last: right;
  margin-bottom: 30px;
}

#container.sub.about .differentiation .section04 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 90px;
  row-gap: 80px;
  padding-bottom: 170px;
}

#container.sub.about .differentiation .section04 ul li {
  display: flex;
  align-items: center;
}

#container.sub.about .differentiation .section04 ul li i {
  width: 220px;
  height: 220px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #666;
  margin-right: 50px;
}

#container.sub.about .differentiation .section04 ul li p:nth-child(1) {
  font-family: 'Pretendard';
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #8C704E;
}

#container.sub.about .differentiation .section04 ul li p:nth-child(2) {
  font-weight: 800;
  font-size: 28px;
  line-height: 32px;
  color: #FFB600;
  margin: 10px 0;
}

#container.sub.about .differentiation .section04 ul li span {
  font-family: 'Pretendard';
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: #aaa;
}

#container.sub.business .section {
  background-color: #222;
  padding: 320px 0 160px;
}

#container.sub.business .section .inner {
  max-width: 1180px;
}

#container.sub.business .section .txt-box h4 {
  font-size: 18px;
  line-height: 28px;
  color: #ffb600;
  font-family: 'Pretendard';
  font-weight: 600;
}

#container.sub.business .section .txt-box p {
  font-size: 44px;
  line-height: 60px;
  color: #fff;
  font-weight: 300;
  margin: 10px 0 15px;
}

#container.sub.business .section .txt-box p strong {
  font-weight: 800;
}

#container.sub.business .section .txt-box span {
  font-family: 'Pretendard';
  font-weight: 300;
  color: #aaa;
  font-size: 18px;
  line-height: 28px;
}

#container.sub.business .section01 {
  display: flex;
  align-items: center;
}

#container.sub.business .section01 .circle-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}

#container.sub.business .section01 .circle-wrap li {
  width: 200px;
  height: 200px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ffb600;
  color: #111;
  font-family: 'Pretendard';
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

#container.sub.business .section02 .vis-wrap {
  position: relative;
  margin-top: 120px;
}

#container.sub.business .section02 .vis-wrap ul {
  width: 480px;
}

#container.sub.business .section02 .vis-wrap ul li {
  height: 120px;
  display: flex;
  align-items: center;
  font-weight: 300;
  font-size: 28px;
  line-height: 42px;
  color: #666;
  position: relative;
  z-index: 2;
  border-top: 1px solid #3e3e3e;
  cursor: default;
}

#container.sub.business .section02 .vis-wrap ul li.active {
  color: #fff;
  font-weight: 800;
}

#container.sub.business .section02 .vis-wrap ul li.active:before {
  content: "";
  width: 600px;
  height: 2px;
  display: block;
  position: absolute;
  background-color: #fff;
  top: -1px;
  left: 0;
}

#container.sub.business .section02 .vis-wrap ul li.active:after {
  content: "";
  width: 100px;
  height: 2px;
  display: block;
  position: absolute;
  background-color: #FFB600;
  top: -1px;
  left: 600px;
}

#container.sub.business .section02 .vis-wrap .vis {
  width: 580px;
  height: 780px;
  position: absolute;
  top: -205px;
  right: 0;
}

#container.sub.business .section02 .vis-wrap .vis img {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all .3s;
  width: 100%;
}

#container.sub.business .section02 .vis-wrap .vis img.active {
  opacity: 1;
}

#container.sub.business .section03,
#container.sub.business .section04 {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

#container.sub.customer .process .sub-title {
  font-weight: 800;
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 60px;
}

#container.sub.customer .process .process-wrap {
  display: flex;
  flex-wrap: wrap;
  row-gap: 80px;
  margin-bottom: 150px;
}

#container.sub.customer .process .process-wrap > div {
  width: 400px;
  margin-right: -60px;
}

#container.sub.customer .process .process-wrap > div i {
  width: 160px;
  height: 160px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  position: relative;
  margin: 0 auto 60px;
}

#container.sub.customer .process .process-wrap > div p {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background-color: rgba(255, 182, 0, 0.8);
  font-family: 'Poppins';
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  position: relative;
}

#container.sub.customer .process .process-wrap > div p:before {
  content: "";
  width: 0;
  height: 60px;
  display: block;
  position: absolute;
  border-right: 1px dashed #FFB600;
  top: -60px;
  left: 50%;
}

#container.sub.customer .process .process-wrap > div p:after {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  position: absolute;
  border-radius: 100%;
  background-color: #ffb600;
  top: -3px;
  left: calc(50% - 2px);
}

#container.sub.customer .process .process-wrap > div ul {
  width: 100%;
  margin-top: 30px;
  padding: 0 50px;
}

#container.sub.customer .process .process-wrap > div ul li {
  display: flex;
  font-family: 'Pretendard';
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 10px;
}

#container.sub.customer .process .process-wrap > div ul li span {
  margin-left: 2px;
}

#container.sub.customer .process .process-wrap > div ul li:last-child {
  margin-bottom: 0;
}

#container.sub.customer .inquiry {
  margin-bottom: 150px;
}

#container.sub.customer .inquiry .sub-title {
  padding-bottom: 30px;
  margin: 90px 0 40px;
  border-bottom: 1px solid #ddd;
}

#container.sub.customer .inquiry .sub-title .inner {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
}

#container.sub.customer .inquiry .sub-title .inner p {
  font-weight: 800;
  font-size: 36px;
  line-height: 42px;
}

#container.sub.customer .inquiry .sub-title .inner span {
  font-family: "Pretendard";
  font-size: 18px;
  line-height: 28px;
  color: #666;
  margin-left: 10px;
}

#container.sub.customer .inquiry form > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
}

#container.sub.customer .inquiry form > div div {
  display: grid;
  grid-template-columns: 100px 600px;
  align-items: center;
}

#container.sub.customer .inquiry form > div div label {
  font-family: 'Pretendard';
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}

#container.sub.customer .inquiry form > div div input {
  font-family: 'Pretendard';
  font-weight: 300;
  line-height: 100px;
  font-size: 18px;
  color: #111;
  outline: none;
  border-bottom: 1px solid #ddd;
}

#container.sub.customer .inquiry form > div div input::placeholder {
  color: #888;
}

#container.sub.customer .inquiry form > p {
  margin: 90px 0 60px;
  font-family: 'Pretendard';
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  padding-right: 30px;
  text-align: right;
  color: #666;
  position: relative;
}

#container.sub.customer .inquiry form > p label:after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  border: 1px solid #666;
  right: 0;
  top: calc(50% - 10px);
}

#container.sub.customer .inquiry form > p input:checked ~ label:after {
  background-image: url("../images/checked.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-size: 80%;
  background-color: #ffb600;
  border-color: #ffb600;
}

#container.sub.customer .inquiry form input[type="submit"] {
  width: 90px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  font-family: 'Pretendard';
  font-weight: 400;
  font-size: 18px;
  background-color: transparent;
  margin: 0 auto;
}

#container.sub.customer .location {
  margin-bottom: 150px;
}

#container.sub.customer .location .inner {
  display: grid;
  grid-template-columns: 1fr 940px;
  margin-top: 100px;
}

#container.sub.customer .location .inner .sub-title {
  font-size: 36px;
  line-height: 40px;
  font-weight: 300;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

#container.sub.customer .location .inner .sub-title strong {
  font-weight: 800;
}

#container.sub.customer .location .inner ul li {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 18px;
}

#container.sub.customer .location .inner ul li img {
  margin-right: 20px;
  display: block;
}

#container.sub.customer .location .inner ul li p {
  font-family: 'Poppins';
  font-weight: 500;
  color: #FFB600;
  margin-bottom: 5px;
}

#container.sub.customer .location .inner ul li span {
  font-family: 'Pretendard';
  font-style: normal;
  font-weight: 300;
}

#container.sub.customer .location .inner .root_daum_roughmap {
  width: 100%;
  height: 430px;
}

#container.sub.customer .location .inner .root_daum_roughmap .wrap_map {
  height: 100%;
}

#container.sub.customer .location .inner .root_daum_roughmap .wrap_controllers {
  display: none;
}

#container.sub.customer .resources {
  margin-bottom: 170px;
}

#container.sub.customer .resources .board-list {
  margin-top: 100px;
}

#container.sub.customer .resources .board-list table {
  width: 100%;
  border-top: 1px solid #111;
  font-family: 'Pretendard';
  font-size: 18px;
  line-height: 28px;
}

#container.sub.customer .resources .board-list table tr {
  border-bottom: 1px solid #ddd;
  height: 100px;
}

#container.sub.customer .resources .board-list table tr td:nth-child(1) {
  width: 100px;
  text-align-last: center;
}

#container.sub.customer .resources .board-list table tr td:nth-child(3) {
  width: 120px;
  text-align-last: center;
}

#container.sub.customer .resources .board-list table tr td a {
  color: #111;
}

#container.sub.customer .resources .search-wrap {
  margin-top: 40px;
}

#container.sub.customer .resources .search-wrap form {
  display: flex;
  justify-content: flex-end;
}

#container.sub.customer .resources .search-wrap form .select-box {
  position: relative;
  margin-right: 20px;
}

#container.sub.customer .resources .search-wrap form .select-box:after {
  content: "";
  width: 10px;
  height: 6px;
  display: block;
  position: absolute;
  background-image: url("../images/select_arrow_bk.svg");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  right: 0;
  top: calc(50% - 3px);
}

#container.sub.customer .resources .search-wrap form .select-box select {
  background-color: transparent;
  border: solid #ddd;
  border-width: 0 0 1px;
  font-family: "Pretendard", sans-serif;
  width: 120px;
  height: 60px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 18px;
  line-height: 28px;
  color: #666;
  outline: none;
}

#container.sub.customer .resources .search-wrap form .select-box select option {
  color: #333;
  font-family: "Pretendard", sans-serif;
}

#container.sub.customer .resources .search-wrap form .search-box {
  position: relative;
}

#container.sub.customer .resources .search-wrap form .search-box input[type="text"] {
  width: 340px;
  height: 60px;
  border-bottom: 1px solid #e5e5e5;
  outline: none;
  font-size: 18px;
  line-height: 28px;
  font-family: "Pretendard", sans-serif;
}

#container.sub.customer .resources .search-wrap form .search-box input[type="text"]::placeholder {
  color: #666;
}

#container.sub.customer .resources .search-wrap form .search-box input[type="submit"] {
  font-size: 0;
  width: 22px;
  height: 22px;
  background-color: transparent;
  background-image: url("../images/search_btn.svg");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  position: absolute;
  top: calc(50% - 11px);
  right: 0;
  cursor: pointer;
}

#container.sub.customer .resources .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  margin-top: 120px;
}

#container.sub.customer .resources .pagination li a {
  font-family: 'Pretendard';
  font-weight: 300;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 28px;
  color: #666;
}

#container.sub.customer .resources .pagination li.active a {
  font-weight: 600;
  color: #111;
}

#container.sub.customer .resources .pagination li.arrow-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  position: relative;
  border: 1px solid #FFB600;
  background-color: #FFB600;
}

#container.sub.customer .resources .pagination li.arrow-btn a svg path {
  stroke-width: 2px;
  stroke: #fff;
}

#container.sub.customer .resources .pagination li.arrow-btn.prev {
  transform: rotate(90deg);
  margin-right: 30px;
}

#container.sub.customer .resources .pagination li.arrow-btn.next {
  transform: rotate(-90deg);
  margin-left: 30px;
}

#container.sub.customer .resources .pagination li.arrow-btn.disable a {
  border: 1px solid #666;
  background-color: transparent;
}

#container.sub.customer .resources .pagination li.arrow-btn.disable a svg path {
  stroke: #666;
}

#container.sub.customer .resources .board-view {
  margin-top: 100px;
}

#container.sub.customer .resources .board-view .con-title {
  border-top: 1px solid #111;
  border-bottom: 1px solid #ddd;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Pretendard';
  color: #111;
  padding: 0 30px;
}

#container.sub.customer .resources .board-view .con-title .title {
  font-weight: 600;
  font-size: 28px;
  line-height: 70px;
}

#container.sub.customer .resources .board-view .con-title .date {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
}

#container.sub.customer .resources .board-view .con-txt {
  padding: 40px 30px;
  font-size: 18px;
  line-height: 28px;
  border-bottom: 1px solid #ddd;
  font-family: 'Pretendard';
  font-weight: 300;
}

#container.sub.customer .resources .list-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 60px;
  border: 1px solid #ddd;
  font-family: 'Pretendard';
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #111;
  margin: 20px 0 0 auto;
}

#container.sub.customer .resources .list-btn img {
  transform: rotate(90deg);
  margin-right: 10px;
}

#container.sub.application {
  margin-bottom: 170px;
}

#container.sub.application #svis .inner p {
  font-weight: 300;
  font-size: 72px;
  line-height: 90px;
}

#container.sub.application #svis .inner p strong {
  font-weight: 800;
}

#container.sub.application .contents .section01 {
  margin-top: 160px;
}

#container.sub.application .contents .section01 .inner {
  display: flex;
}

#container.sub.application .contents .section01 .inner .txt-box {
  margin-right: 230px;
}

#container.sub.application .contents .section01 .inner .txt-box p {
  font-size: 36px;
  line-height: 40px;
  font-weight: 800;
  margin-bottom: 10px;
}

#container.sub.application .contents .section01 .inner .txt-box span {
  font-size: 18px;
  line-height: 28px;
  font-family: 'Pretendard';
  font-weight: 300;
}

#container.sub.application .contents .section01 .inner ul {
  display: flex;
  column-gap: 100px;
}

#container.sub.application .contents .section01 .inner ul li {
  text-align: center;
}

#container.sub.application .contents .section01 .inner ul li p {
  font-family: 'Pretendard';
  font-weight: 500;
  font-size: 22px;
  line-height: 26px;
}

#container.sub.application .contents .section01 .inner ul li > img {
  display: block;
  margin: 40px auto 60px;
}

#container.sub.member {
  margin-bottom: 170px;
}

#container.sub.member .sub-header {
  text-align: center;
  border-bottom: none;
  margin-bottom: 100px;
}

#container.sub.member .sub-header .inner {
  justify-content: center;
}

#container.sub.member .login form {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
}

#container.sub.member .login form div {
  display: grid;
  grid-template-columns: 100px 580px;
  justify-content: center;
}

#container.sub.member .login form div label {
  font-family: 'Pretendard';
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  display: flex;
  align-items: center;
}

#container.sub.member .login form div input {
  font-family: 'Pretendard';
  font-weight: 300;
  line-height: 100px;
  font-size: 18px;
  color: #111;
  outline: none;
  border-bottom: 1px solid #ddd;
}

#container.sub.member .login form div input::placeholder {
  color: #888;
}

#container.sub.member .login .util {
  display: flex;
  padding-left: 100px;
  justify-content: space-between;
  margin: 30px 0 50px;
}

#container.sub.member .login .util a {
  font-family: 'Pretendard';
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: #666;
}

#container.sub.member .login .util ul {
  display: flex;
}

#container.sub.member .login .util ul li:nth-child(1) {
  margin-right: 20px;
  padding-right: 20px;
  position: relative;
}

#container.sub.member .login .util ul li:nth-child(1):after {
  content: "";
  width: 0;
  height: 8px;
  display: block;
  position: absolute;
  right: 0;
  top: calc(50% - 4px);
  border-right: 1px solid #ddd;
}

#container.sub.member .login input[type="submit"] {
  width: 140px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Pretendard';
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  background-color: #FFB600;
  margin: 0 auto;
  color: #fff;
  cursor: pointer;
}

#container.sub.member .login.find form > p {
  text-align: center;
  margin: 30px 0 60px;
  font-weight: 300;
  font-size: 15px;
  line-height: 18px;
  color: #666666;
  font-family: 'Pretendard';
}

#container.sub.member .join .inner {
  display: grid;
  grid-template-columns: repeat(2, 320px);
  column-gap: 40px;
  justify-content: center;
}

#container.sub.member .join .inner div {
  width: 100%;
  text-align: center;
  padding: 60px 0;
  border: 1px solid #ddd;
}

#container.sub.member .join .inner div p {
  font-weight: 800;
  font-size: 28px;
  line-height: 32px;
  margin: 50px 0 10px;
}

#container.sub.member .join .inner div span {
  font-family: 'Pretendard';
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  color: #888;
}

#container.sub.member .join .inner div a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Pretendard';
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  background-color: #FFB600;
  width: 100px;
  height: 40px;
  margin: 40px auto 0;
}

#container.sub.member .sign-up .sub-title {
  padding-bottom: 30px;
  margin: 90px 0 40px;
  border-bottom: 1px solid #ddd;
  font-weight: 800;
  font-size: 36px;
  line-height: 42px;
}

#container.sub.member .sign-up .sub-title p {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
}

#container.sub.member .sign-up form > div:not(.agree) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
}

#container.sub.member .sign-up form > div:not(.agree) > div {
  display: grid;
  grid-template-columns: 100px 600px;
  align-items: center;
  position: relative;
}

#container.sub.member .sign-up form > div:not(.agree) > div label {
  font-family: 'Pretendard';
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}

#container.sub.member .sign-up form > div:not(.agree) > div input {
  font-family: 'Pretendard';
  font-weight: 300;
  line-height: 100px;
  font-size: 18px;
  color: #111;
  outline: none;
  border-bottom: 1px solid #ddd;
}

#container.sub.member .sign-up form > div:not(.agree) > div input::placeholder {
  color: #888;
}

#container.sub.member .sign-up form > div:not(.agree) > div input[type="button"] {
  width: 130px;
  height: 60px;
  background-color: #111;
  color: #fff;
  position: absolute;
  top: calc(50% - 30px);
  right: 20px;
  line-height: normal;
  cursor: pointer;
}

#container.sub.member .sign-up form > div:not(.agree) .file-upload {
  position: relative;
  display: flex;
  height: 100px;
}

#container.sub.member .sign-up form > div:not(.agree) .file-upload .upload-name {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #888;
  border-bottom: 1px solid #ddd;
}

#container.sub.member .sign-up form > div:not(.agree) .file-upload input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  cursor: pointer;
}

#container.sub.member .sign-up form > div:not(.agree) .file-upload .btn {
  width: 100px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #111;
  cursor: pointer;
  position: absolute;
  top: calc(50% - 30px);
  right: 20px;
  z-index: -1;
  font-family: 'Pretendard';
  font-size: 18px;
}

#container.sub.member .sign-up form .policy {
  padding: 40px 60px;
  border: 1px solid #ddd;
  color: #666;
  font-family: 'Pretendard';
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  margin: 60px 0 30px;
}

#container.sub.member .sign-up form .agree {
  margin-bottom: 100px;
}

#container.sub.member .sign-up form .agree p {
  font-family: 'Pretendard';
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  padding-right: 30px;
  text-align: right;
  color: #666;
  position: relative;
  margin-top: 20px;
}

#container.sub.member .sign-up form .agree p:last-child {
  margin-top: 10px;
}

#container.sub.member .sign-up form .agree p label:after {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  border: 1px solid #666;
  right: 0;
  top: calc(50% - 10px);
}

#container.sub.member .sign-up form .agree p input:checked ~ label:after {
  background-image: url("../images/checked.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-size: 80%;
  background-color: #ffb600;
  border-color: #ffb600;
}

#container.sub.member .sign-up form input[type="submit"] {
  width: 90px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  font-family: 'Pretendard';
  font-weight: 400;
  font-size: 18px;
  background-color: transparent;
  margin: 0 auto;
  cursor: pointer;
}

#container.sub.member .complete .txt-box {
  margin-top: 260px;
  text-align: center;
}

#container.sub.member .complete .txt-box p {
  font-weight: 800;
  font-size: 36px;
  line-height: 40px;
  margin: 60px 0 20px;
}

#container.sub.member .complete .txt-box span {
  font-size: 18px;
  line-height: 28px;
  color: #888;
  font-family: 'Pretendard';
  font-weight: 300;
}

#container.sub.member .complete .txt-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 60px;
  border: 1px solid #ddd;
  font-family: 'Pretendard';
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #111;
  margin: 60px auto 0;
}
