@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+KR:100,300,400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Nanum+Myeongjo:400,700&display=swap&subset=korean");
@import url("https://cdn.rawgit.com/innks/NanumSquareRound/master/nanumsquareround.min.css");
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

._con {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

._flex-center {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* 톱 버튼 */
.top {
  position: fixed;
  z-index: 500;
  width: 35px;
  height: 35px;
  background-color: #323388;
  right: 10px;
  bottom: 20px;
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  line-height: 35px;
  color: white;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.top:hover {
  background-color: #e2645a;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

/*  */
body.hide {
  overflow: hidden;
}

button {
  border: none;
  outline: none;
}

a {
  display: inline-block;
  text-decoration: none;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::after,
::before {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: '';
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

section {
  position: relative;
  width: 100%;
  height: auto;
}

section::after {
  clear: both;
}

.bgsize {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* @import url('https://fonts.googleapis.com/css?family=Lato:700,900'); */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body.scroll-none {
  overflow-y: hidden;
  -webkit-transition: all 1s ease 1s;
  transition: all 1s ease 1s;
}

body.scroll-auto {
  overflow-y: auto;
  -webkit-transition: all 2s ease 1s;
  transition: all 2s ease 1s;
}

/* 오버레이 */
body.modal-open {
  overflow: hidden;
}

body.scbar {
  -ms-overflow-style: none;
}

body.scbar::-webkit-scrollbar {
  display: none !important;
}

.scroll-icon {
  position: absolute;
  z-index: 2000;
  cursor: pointer;
}

.scroll-icon.down {
  left: 50%;
  top: auto;
  bottom: 50px;
}

.scroll-icon.up {
  left: 50%;
  top: 50px;
  bottom: auto;
}

.scroll-icon .icon img {
  width: calc(53px * 0.2);
  height: calc(100px * 0.2);
  -webkit-animation: arrowicon 2s ease infinite;
          animation: arrowicon 2s ease infinite;
}

/* background-image */
/* 원형 박스 */
/* transform */
/* 쇼핑몰 뷰어 */
input[id="item-1"] + label.label-box {
  left: 0;
}

input[id="item-1"] + label.label-box .pic-box {
  left: 0;
}

@-webkit-keyframes error {
  0% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  10% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  20% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  30% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  40% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  60% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  70% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  80% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes error {
  0% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  10% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  20% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  30% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  40% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  60% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  70% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  80% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.visu-sec {
  width: 100%;
  margin-top: 128px;
  -webkit-transition: all 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: all 1s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.visu-sec .cont-wrap {
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.visu-sec .cont-wrap ._con .content {
  width: 100%;
}

.visu-sec .cont-wrap ._con .content .tit-box h1 {
  margin-top: 70px;
  font-size: 50px;
  font-weight: 500;
  line-height: 50px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  text-align: center;
}

.visu-sec .cont-wrap ._con .content .tit-box h1 span {
  color: #ffba43;
}

.visu-sec .cont-wrap ._con .content .tit-box h3 {
  margin-top: 30px;
  font-size: 28px;
  font-weight: 500;
  line-height: 28px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  text-align: center;
}

.visu-sec .cont-wrap ._con .content .visu-bnBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70px;
}

.visu-sec .cont-wrap ._con .content .visu-bnBox__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 600px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.visu-sec .cont-wrap ._con .content .visu-bnBox__cont .bn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 250px;
  height: 80px;
  margin: 15px;
  background-color: #7cc3b5;
  border-top-left-radius: 17px;
  border-top-right-radius: 17px;
  border-bottom-left-radius: 17px;
  border-bottom-right-radius: 17px;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
}

.visu-sec .cont-wrap ._con .content .visu-bnBox__cont .bn-box img {
  width: calc(70px * 0.5);
  height: auto;
  margin-right: 20px;
}

.visu-sec .cont-wrap ._con .content .visu-bnBox__cont .bn-box:hover {
  background-color: #d07ea4;
}

.visu-sec .visu-slider {
  width: 100%;
  height: 100%;
}

.visu-sec .visu-slider .slick-list {
  width: 100%;
}

.visu-sec .visu-slider .slick-list .slick-track .slick-slide {
  height: 550px;
  overflow: hidden;
}

.visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active {
  width: 100%;
}

.visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider1-box .tex-box,
.visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider2-box .tex-box,
.visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider3-box .tex-box {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  opacity: 1;
  -webkit-transition: all 1s cubic-bezier(0.21, 0.91, 0.32, 0.95) 1s;
  transition: all 1s cubic-bezier(0.21, 0.91, 0.32, 0.95) 1s;
}

.visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider1-box .tex-box h2,
.visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider2-box .tex-box h2,
.visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider3-box .tex-box h2 {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: all 1.5s cubic-bezier(0.21, 0.91, 0.32, 0.95) 1.3s;
  transition: all 1.5s cubic-bezier(0.21, 0.91, 0.32, 0.95) 1.3s;
}

.visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider1-box .tex-box p,
.visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider2-box .tex-box p,
.visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider3-box .tex-box p {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: all 1.5s cubic-bezier(0.21, 0.91, 0.32, 0.95) 1.6s;
  transition: all 1.5s cubic-bezier(0.21, 0.91, 0.32, 0.95) 1.6s;
}

.visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider1-box .tex-box a,
.visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider2-box .tex-box a,
.visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider3-box .tex-box a {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: all 1.5s cubic-bezier(0.21, 0.91, 0.32, 0.95) 1.9s;
  transition: all 1.5s cubic-bezier(0.21, 0.91, 0.32, 0.95) 1.9s;
}

.visu-sec .visu-slider div .slider1-box,
.visu-sec .visu-slider div .slider2-box,
.visu-sec .visu-slider div .slider3-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 550px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.visu-sec .visu-slider div .slider1-box .tex-box,
.visu-sec .visu-slider div .slider2-box .tex-box,
.visu-sec .visu-slider div .slider3-box .tex-box {
  overflow: hidden;
  position: absolute;
  padding: 30px 30px 30px 50px;
  top: calc(50% - 160px);
  left: calc(50% + 170px);
  background-color: rgba(26, 27, 29, 0.4);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
}

.visu-sec .visu-slider div .slider1-box .tex-box h2,
.visu-sec .visu-slider div .slider2-box .tex-box h2,
.visu-sec .visu-slider div .slider3-box .tex-box h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  font-family: "Frank Ruhl Libre", serif !important;
  color: #ffffff;
  margin-bottom: 30px;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
}

.visu-sec .visu-slider div .slider1-box .tex-box p,
.visu-sec .visu-slider div .slider2-box .tex-box p,
.visu-sec .visu-slider div .slider3-box .tex-box p {
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  font-family: "Frank Ruhl Libre", serif !important;
  color: #ffffff;
  margin-top: 20px;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
}

.visu-sec .visu-slider div .slider1-box .tex-box a,
.visu-sec .visu-slider div .slider2-box .tex-box a,
.visu-sec .visu-slider div .slider3-box .tex-box a {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 140px;
  height: 25px;
  background-color: #000000;
  -webkit-transform: translateX(250%);
          transform: translateX(250%);
}

.visu-sec .visu-slider div .slider1-box .tex-box a span,
.visu-sec .visu-slider div .slider2-box .tex-box a span,
.visu-sec .visu-slider div .slider3-box .tex-box a span {
  font-size: 11px;
  font-weight: 300;
  line-height: 25px;
  font-family: "Frank Ruhl Libre", serif !important;
  color: #bbbfc5;
  padding-left: 20px;
}

.visu-sec .visu-slider div .slider1-box .tex-box a img,
.visu-sec .visu-slider div .slider2-box .tex-box a img,
.visu-sec .visu-slider div .slider3-box .tex-box a img {
  width: 5px;
  height: 11px;
  margin-left: 40px;
}

.visu-sec .visu-slider div .slider1-box {
  background-image: url("../imgs/visu-1.jpg");
  position: relative;
}

.visu-sec .visu-slider div .slider2-box {
  background-image: url("../imgs/visu-2.jpg");
}

.visu-sec .visu-slider div .slider2-box .slide-con {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.visu-sec .visu-slider div .slider3-box {
  background-image: url("../imgs/visu-3.jpg");
}

.visu-sec .visu-slider div .slider3-box .slide-con {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.visu-sec .visu-slider:hover .Prev,
.visu-sec .visu-slider:hover .Next {
  opacity: 1;
}

.visu-sec .visu-slider .Prev {
  position: absolute;
  z-index: 10;
  left: 15px;
  top: 50%;
  margin-top: -35px;
  width: 80px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.visu-sec .visu-slider .Prev:hover {
  opacity: 1;
  background-color: transparent;
}

.visu-sec .visu-slider .Prev span {
  position: absolute;
  width: 50px;
  height: 2px;
  top: 50%;
  margin-left: 20px;
  background-color: #fff;
}

.visu-sec .visu-slider .Prev span:first-of-type {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.visu-sec .visu-slider .Prev span:last-of-type {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.visu-sec .visu-slider .Next {
  position: absolute;
  z-index: 10;
  right: 15px;
  top: 50%;
  margin-top: -35px;
  width: 80px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.visu-sec .visu-slider .Next:hover {
  opacity: 1;
}

.visu-sec .visu-slider .Next span {
  position: absolute;
  width: 50px;
  height: 2px;
  top: 50%;
  margin-left: 0;
  background-color: #fff;
}

.visu-sec .visu-slider .Next span:first-of-type {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: right;
          transform-origin: right;
}

.visu-sec .visu-slider .Next span:last-of-type {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: right;
          transform-origin: right;
}

.visu-sec .visu-slider ul.slick-dots {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: -70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.visu-sec .visu-slider ul.slick-dots > li button {
  width: 11px;
  height: 11px;
  padding: 6px;
  border: 1px solid #ffffff;
  background-color: transparent;
  margin: 5px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  cursor: pointer;
  font-size: 0;
}

.visu-sec .visu-slider ul.slick-dots > li button::after {
  position: absolute;
  content: '';
  width: 12px;
  height: 1px;
  margin-left: -17px;
  background-color: #fff;
}

.visu-sec .visu-slider ul.slick-dots > li button#slick-slide-control00::after {
  display: none;
}

.visu-sec .visu-slider ul.slick-dots > li.slick-active button {
  background-color: #fff;
  width: 16px;
  height: 16px;
}

.visu-sec .visu-slider ul.slick-dots > li.slick-active button#slick-slide-control01::after {
  margin-left: -18px;
}

.visu-sec .visu-slider ul.slick-dots > li.slick-active button#slick-slide-control02::after {
  margin-left: -18px;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .visu-sec {
    margin-top: 128px;
  }
  .visu-sec .cont-wrap ._con .content {
    width: 100%;
  }
  .visu-sec .cont-wrap ._con .content .tit-box h1 {
    margin-top: 60px;
    font-size: 40px;
    font-weight: 500;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .visu-sec .cont-wrap ._con .content .tit-box h3 {
    margin-top: 20px;
    font-size: 22px;
    font-weight: 500;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox {
    margin-top: 50px;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox__cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 600px;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox__cont .bn-box {
    width: calc(50% - 10px);
    height: 80px;
    margin: 0;
    margin-bottom: 20px;
    background-color: #7cc3b5;
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
    border-bottom-left-radius: 17px;
    border-bottom-right-radius: 17px;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    cursor: pointer;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox__cont .bn-box:nth-of-type(2n) {
    margin-left: 20px;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox__cont .bn-box img {
    width: calc(70px * 0.5);
    height: auto;
    margin-right: 20px;
  }
  .visu-sec .visu-slider .slick-list {
    width: 100%;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide {
    height: 450px;
    overflow: hidden;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active {
    width: 100%;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider1-box .tex-box,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider2-box .tex-box,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider3-box .tex-box {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
    -webkit-transition: all 1s cubic-bezier(0.21, 0.91, 0.32, 0.95) 1s;
    transition: all 1s cubic-bezier(0.21, 0.91, 0.32, 0.95) 1s;
  }
  .visu-sec .visu-slider div .slider1-box,
  .visu-sec .visu-slider div .slider2-box,
  .visu-sec .visu-slider div .slider3-box {
    height: 450px;
  }
  .visu-sec .visu-slider div .slider1-box {
    background-image: url("../imgs/visu-1.jpg");
    position: relative;
  }
  .visu-sec .visu-slider div .slider2-box {
    background-image: url("../imgs/visu-2.jpg");
  }
  .visu-sec .visu-slider div .slider2-box .slide-con {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .visu-sec .visu-slider div .slider3-box {
    background-image: url("../imgs/visu-3.jpg");
  }
  .visu-sec .visu-slider div .slider3-box .slide-con {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .visu-sec .visu-slider:hover .Prev,
  .visu-sec .visu-slider:hover .Next {
    opacity: 1;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .visu-sec {
    margin-top: 50px;
  }
  .visu-sec .cont-wrap ._con .content {
    width: 100%;
  }
  .visu-sec .cont-wrap ._con .content .tit-box h1 {
    margin-top: 50px;
    font-size: 32px;
    font-weight: 500;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .visu-sec .cont-wrap ._con .content .tit-box h3 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox {
    margin-top: 40px;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox__cont {
    width: 500px;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox__cont .bn-box {
    width: calc(50% - 10px);
    height: 70px;
    margin: 0;
    margin-bottom: 20px;
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
    border-bottom-left-radius: 17px;
    border-bottom-right-radius: 17px;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    cursor: pointer;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox__cont .bn-box:nth-of-type(2n) {
    margin-left: 20px;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox__cont .bn-box img {
    width: calc(70px * 0.4);
    height: auto;
    margin-right: 20px;
  }
  .visu-sec .visu-slider .slick-list {
    width: 100%;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide {
    height: 380px;
    overflow: hidden;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active {
    width: 100%;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider1-box .tex-box,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider2-box .tex-box,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider3-box .tex-box {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
    -webkit-transition: all 1s cubic-bezier(0.21, 0.91, 0.32, 0.95) 1s;
    transition: all 1s cubic-bezier(0.21, 0.91, 0.32, 0.95) 1s;
  }
  .visu-sec .visu-slider div .slider1-box,
  .visu-sec .visu-slider div .slider2-box,
  .visu-sec .visu-slider div .slider3-box {
    height: 380px;
  }
  .visu-sec .visu-slider div .slider1-box {
    background-image: url("../imgs/visu-1.jpg");
    position: relative;
  }
  .visu-sec .visu-slider div .slider2-box {
    background-image: url("../imgs/visu-2.jpg");
  }
  .visu-sec .visu-slider div .slider2-box .slide-con {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .visu-sec .visu-slider div .slider3-box {
    background-image: url("../imgs/visu-3.jpg");
  }
  .visu-sec .visu-slider div .slider3-box .slide-con {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .visu-sec .visu-slider:hover .Prev,
  .visu-sec .visu-slider:hover .Next {
    opacity: 1;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .visu-sec {
    margin-top: 50px;
  }
  .visu-sec .cont-wrap ._con .content {
    width: 100%;
  }
  .visu-sec .cont-wrap ._con .content .tit-box h1 {
    margin-top: 40px;
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .visu-sec .cont-wrap ._con .content .tit-box h3 {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox {
    margin-top: 40px;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox__cont {
    width: 80%;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox__cont .bn-box {
    width: calc(50% - 5px);
    height: 60px;
    margin: 0;
    margin-bottom: 10px;
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
    border-bottom-left-radius: 17px;
    border-bottom-right-radius: 17px;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    cursor: pointer;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox__cont .bn-box:nth-of-type(2n) {
    margin-left: 10px;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox__cont .bn-box img {
    width: calc(70px * 0.4);
    height: auto;
    margin-right: 20px;
  }
  .visu-sec .visu-slider .slick-list {
    width: 100%;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide {
    height: 330px;
    overflow: hidden;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active {
    width: 100%;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider1-box .tex-box,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider2-box .tex-box,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider3-box .tex-box {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
    -webkit-transition: all 1s cubic-bezier(0.21, 0.91, 0.32, 0.95) 1s;
    transition: all 1s cubic-bezier(0.21, 0.91, 0.32, 0.95) 1s;
  }
  .visu-sec .visu-slider div .slider1-box,
  .visu-sec .visu-slider div .slider2-box,
  .visu-sec .visu-slider div .slider3-box {
    height: 330px;
  }
  .visu-sec .visu-slider div .slider1-box {
    background-image: url("../imgs/visu-1.jpg");
    position: relative;
  }
  .visu-sec .visu-slider div .slider2-box {
    background-image: url("../imgs/visu-2.jpg");
  }
  .visu-sec .visu-slider div .slider2-box .slide-con {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .visu-sec .visu-slider div .slider3-box {
    background-image: url("../imgs/visu-3.jpg");
  }
  .visu-sec .visu-slider div .slider3-box .slide-con {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .visu-sec .visu-slider:hover .Prev,
  .visu-sec .visu-slider:hover .Next {
    opacity: 1;
  }
}

@media (max-width: 575.99px) and (min-width: 420px) {
  .visu-sec {
    margin-top: 50px;
  }
  .visu-sec .cont-wrap ._con .content {
    width: 100%;
  }
  .visu-sec .cont-wrap ._con .content .tit-box h1 {
    margin-top: 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .visu-sec .cont-wrap ._con .content .tit-box h3 {
    margin-top: 5px;
    font-size: 13px;
    font-weight: 500;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox {
    margin-top: 30px;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox__cont {
    width: 90%;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox__cont .bn-box {
    width: calc(50% - 5px);
    height: 60px;
    margin: 0;
    margin-bottom: 10px;
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    cursor: pointer;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox__cont .bn-box:nth-of-type(2n) {
    margin-left: 10px;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox__cont .bn-box img {
    width: calc(70px * 0.3);
    height: auto;
    margin-right: 20px;
  }
  .visu-sec .visu-slider .slick-list {
    width: 100%;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide {
    height: 290px;
    overflow: hidden;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active {
    width: 100%;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider1-box .tex-box,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider2-box .tex-box,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider3-box .tex-box {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
    -webkit-transition: all 1s cubic-bezier(0.21, 0.91, 0.32, 0.95) 1s;
    transition: all 1s cubic-bezier(0.21, 0.91, 0.32, 0.95) 1s;
  }
  .visu-sec .visu-slider div .slider1-box,
  .visu-sec .visu-slider div .slider2-box,
  .visu-sec .visu-slider div .slider3-box {
    height: 290px;
  }
  .visu-sec .visu-slider div .slider1-box {
    background-image: url("../imgs/visu-1.jpg");
    position: relative;
  }
  .visu-sec .visu-slider div .slider2-box {
    background-image: url("../imgs/visu-2.jpg");
  }
  .visu-sec .visu-slider div .slider2-box .slide-con {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .visu-sec .visu-slider div .slider3-box {
    background-image: url("../imgs/visu-3.jpg");
  }
  .visu-sec .visu-slider div .slider3-box .slide-con {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .visu-sec .visu-slider:hover .Prev,
  .visu-sec .visu-slider:hover .Next {
    opacity: 1;
  }
}

@media (max-width: 419.99px) {
  .visu-sec {
    margin-top: 50px;
  }
  .visu-sec .cont-wrap ._con .content {
    width: 100%;
  }
  .visu-sec .cont-wrap ._con .content .tit-box h1 {
    margin-top: 40px;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .visu-sec .cont-wrap ._con .content .tit-box h3 {
    margin-top: 0px;
    font-size: 12px;
    font-weight: 500;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox {
    margin-top: 20px;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox__cont {
    width: 95%;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox__cont .bn-box {
    width: calc(50% - 5px);
    height: 50px;
    margin: 0;
    margin-bottom: 10px;
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    cursor: pointer;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox__cont .bn-box:nth-of-type(2n) {
    margin-left: 10px;
  }
  .visu-sec .cont-wrap ._con .content .visu-bnBox__cont .bn-box img {
    width: calc(70px * 0.3);
    height: auto;
    margin-right: 10px;
  }
  .visu-sec .visu-slider .slick-list {
    width: 100%;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide {
    height: 250px;
    overflow: hidden;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active {
    width: 100%;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider1-box .tex-box,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider2-box .tex-box,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider3-box .tex-box {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    opacity: 1;
    -webkit-transition: all 1s cubic-bezier(0.21, 0.91, 0.32, 0.95) 1s;
    transition: all 1s cubic-bezier(0.21, 0.91, 0.32, 0.95) 1s;
  }
  .visu-sec .visu-slider div .slider1-box,
  .visu-sec .visu-slider div .slider2-box,
  .visu-sec .visu-slider div .slider3-box {
    height: 250px;
  }
  .visu-sec .visu-slider div .slider1-box {
    background-image: url("../imgs/visu-1.jpg");
    position: relative;
  }
  .visu-sec .visu-slider div .slider2-box {
    background-image: url("../imgs/visu-2.jpg");
  }
  .visu-sec .visu-slider div .slider2-box .slide-con {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .visu-sec .visu-slider div .slider3-box {
    background-image: url("../imgs/visu-3.jpg");
  }
  .visu-sec .visu-slider div .slider3-box .slide-con {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .visu-sec .visu-slider:hover .Prev,
  .visu-sec .visu-slider:hover .Next {
    opacity: 1;
  }
}

header {
  z-index: 9000;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
}

header nav {
  width: 100%;
  height: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header nav #logoTop-link {
  z-index: 1000;
  position: absolute;
  width: 200px;
  height: 100%;
  left: 0;
}

header nav .logoBox {
  position: relative;
  width: 200px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 60px;
}

header nav .logoBox a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

header nav .logoBox img {
  width: calc(134px * 1);
  height: 63px;
}

header nav .menuBox {
  width: calc(100% - 200px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 20px;
}

header nav .menuBox ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header nav .menuBox ul li {
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

header nav .menuBox ul li a {
  width: 100%;
  height: 100%;
  padding: 0 35px;
  font-size: 15px;
  font-weight: 400;
  line-height: 85px;
  font-family: "NanumSquareRound", sans-serif !important;
  color: #ffffff;
  background-color: transparent;
  cursor: pointer;
}

header nav .menuBox ul li a.menu-active {
  background-color: #79b0e9;
}

header nav .menuBox ul li:hover {
  background-color: #79b0e9;
}

.m-quick {
  display: none;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  header {
    z-index: 5000;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
  }
  header nav {
    width: 100%;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: rgba(0, 0, 0, 0.5);
  }
  header nav #logoTop-link {
    z-index: 1000;
    position: absolute;
    width: 150px;
    height: 100%;
    left: 0;
  }
  header nav .logoBox {
    width: 130px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 20px;
  }
  header nav .logoBox img {
    width: calc(134px * 0.65);
    height: 40.95px;
  }
  header nav .menuBox {
    width: calc(100% - 130px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 10px;
  }
  header nav .menuBox ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header nav .menuBox ul li {
    -webkit-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
  }
  header nav .menuBox ul li a {
    width: 100%;
    height: 100%;
    padding: 0 23px;
    font-size: 15px;
    font-weight: 400;
    line-height: 70px;
    font-family: "NanumSquareRound", sans-serif !important;
    color: #ffffff;
    background-color: transparent;
    cursor: pointer;
  }
  header nav .menuBox ul li a.menu-active {
    background-color: #79b0e9;
  }
  header nav .menuBox ul li:hover {
    background-color: #79b0e9;
  }
}

@media (max-width: 992px) {
  header {
    display: none;
  }
}

.naviBox {
  position: fixed;
  z-index: 1000;
  right: 10px;
  bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.naviBox ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 140px;
}

.naviBox ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 3px;
}

.naviBox ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100%;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}

.naviBox ul li a.menu-active {
  background-color: #79b0e9;
}

.naviBox ul li a:hover {
  border: 1px solid white;
}

.naviBox ul li a.active {
  background-color: #ffffff;
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .naviBox {
    position: fixed;
    z-index: 1000;
    right: 10px;
    bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .naviBox ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 140px;
  }
  .naviBox ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 3px;
  }
  .naviBox ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100%;
    background-color: transparent;
    outline: none;
    cursor: pointer;
  }
  .naviBox ul li a.menu-active {
    background-color: #79b0e9;
  }
  .naviBox ul li a:hover {
    border: 1px solid white;
  }
  .naviBox ul li a.active {
    background-color: #ffffff;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .naviBox {
    position: fixed;
    z-index: 1000;
    right: 10px;
    bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .naviBox ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 140px;
  }
  .naviBox ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 3px;
  }
  .naviBox ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100%;
    background-color: transparent;
    outline: none;
    cursor: pointer;
  }
  .naviBox ul li a.menu-active {
    background-color: #79b0e9;
  }
  .naviBox ul li a:hover {
    border: 1px solid white;
  }
  .naviBox ul li a.active {
    background-color: #ffffff;
  }
}

@-webkit-keyframes bbLine {
  0% {
    background-color: #f2f2f5;
    width: 50%;
  }
  50% {
    background-color: #f2f2f5;
    width: 0%;
  }
  51% {
    background-color: #2f3033;
    width: 0%;
  }
  100% {
    background-color: #2f3033;
    width: 100%;
  }
}

@keyframes bbLine {
  0% {
    background-color: #f2f2f5;
    width: 50%;
  }
  50% {
    background-color: #f2f2f5;
    width: 0%;
  }
  51% {
    background-color: #2f3033;
    width: 0%;
  }
  100% {
    background-color: #2f3033;
    width: 100%;
  }
}

.moTop-wrap {
  z-index: 5000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
}

.moTop-wrap .moMenu-box {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.moTop-wrap .moMenu-box #logoTop-link {
  z-index: 9000;
  position: absolute;
  width: 100px;
  height: 40px;
  left: 0;
  top: 0;
}

.moTop-wrap .moMenu-box img.moLogo {
  position: absolute;
  width: calc(134px * 0.45);
  height: calc(63px * 0.45);
  left: 20px;
  margin-top: 7px;
}

.moTop-wrap .moMenu-box .quickMenu-box {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.moTop-wrap .moMenu-box .quickMenu-box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.moTop-wrap .moMenu-box .quickMenu-box ul li {
  position: relative;
  width: 100%;
  height: 100%;
}

.moTop-wrap .moMenu-box .quickMenu-box ul li a {
  z-index: 8000;
  position: absolute;
  width: 100%;
  height: 100%;
}

.moTop-wrap .moMenu-box .quickMenu-box ul li img.icon-1 {
  z-index: -1;
  width: calc(20px * 0.5);
  height: calc(32px * 0.5);
  margin: 0 10px;
}

.moTop-wrap .moMenu-box .quickMenu-box ul li img.icon-2 {
  width: calc(34px * 0.5);
  height: calc(29px * 0.5);
  margin: 0 10px;
}

.moTop-wrap .moMenu-box .quickMenu-box ul li img.icon-3 {
  width: calc(31px * 0.5);
  height: calc(31px * 0.5);
  margin: 0 10px;
}

.moTop-wrap .moMenu-box .quickMenu-box ul li img.icon-4 {
  width: calc(35px * 0.5);
  height: calc(35px * 0.5);
  margin: 0 10px;
}

.moBg-sec {
  overflow: hidden;
}

.moBg-sec .moOver-bg {
  position: fixed;
  z-index: 7000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.49, 1.01);
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.49, 1.01);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.49, 1.01);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.49, 1.01), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.49, 1.01);
}

.moBg-sec .moOver-bg .moOver-menuBox {
  width: 100%;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.moBg-sec .moOver-bg .moOver-menuBox dl {
  margin-top: 100px;
  width: 70%;
  height: 50px;
}

.moBg-sec .moOver-bg .moOver-menuBox dl dt {
  width: 100%;
  height: 100%;
}

.moBg-sec .moOver-bg .moOver-menuBox dl dt a {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 50px;
  font-family: "NanumSquareRound", sans-serif !important;
  color: #17181a;
  text-align: center;
  border: 1px solid #e1e3e5;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.moBg-sec .moOver-bg .moOver-menuBox dl dt a::after {
  z-index: -1;
  position: absolute;
  content: '';
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2f3033;
  -webkit-transform: translateY(110%);
          transform: translateY(110%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.moBg-sec .moOver-bg .moOver-menuBox dl dt a:hover {
  color: #ffffff;
}

.moBg-sec .moOver-bg .moOver-menuBox dl dt a:hover::after {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.moBg-sec .moOver-bg .moOver-menuBox dl dd {
  width: 100%;
  height: 100%;
}

.moBg-sec .moOver-bg .moOver-menuBox dl dd a {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 50px;
  font-family: "NanumSquareRound", sans-serif !important;
  color: #17181a;
  text-align: center;
}

.moBg-sec .moOver-bg .moOver-menuBox dl dd a::after {
  position: absolute;
  content: '';
  margin: 0;
  padding: 0;
  width: 50%;
  height: 1px;
  left: 50%;
  background-color: #f2f2f5;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.moBg-sec .moOver-bg .moOver-menuBox dl dd a:hover::after {
  -webkit-animation: bbLine 1s ease 0s both;
          animation: bbLine 1s ease 0s both;
}

.moBg-sec .moOver-bg.bgOpen {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.moMenu-btn {
  z-index: 8000;
  position: fixed;
  top: 0;
  right: 20px;
  width: 50px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.moMenu-btn span {
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.moMenu-btn span:nth-of-type(1) {
  margin-top: -8px;
}

.moMenu-btn span:nth-of-type(2) {
  margin-top: 0px;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.moMenu-btn span:nth-of-type(3) {
  margin-top: 8px;
}

.moMenu-btn:hover span:nth-of-type(2) {
  width: 20px;
}

.moMenu-btn.closeBtn span {
  -webkit-transform-origin: center;
          transform-origin: center;
}

.moMenu-btn.closeBtn span:nth-of-type(1) {
  margin-top: 0;
  margin-left: 3px;
  left: 3px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.moMenu-btn.closeBtn span:nth-of-type(2) {
  width: 0;
}

.moMenu-btn.closeBtn span:nth-of-type(3) {
  margin-top: 0;
  margin-left: 3px;
  left: 3px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.m-quick {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 5px;
  position: fixed;
  bottom: 10px;
  z-index: 5001;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.m-quick li {
  width: 18%;
  background-color: #fff;
  margin: 0 2px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #ddd;
}

.m-quick li:nth-of-type(1) {
  width: 28%;
  background-color: #de9c9c;
  border: 1px solid #de9c9c;
}

.m-quick li:nth-of-type(1) a {
  padding-top: 13px;
  color: #fff;
}

.m-quick li:nth-of-type(1) img {
  vertical-align: middle;
  width: calc(36px * 0.5);
  height: calc(50px * 0.5);
}

.m-quick li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  font-family: "Noto Sans KR", sans-serif !important;
  text-align: center;
  color: #4e4e4e;
  padding: 5px 0;
  height: 48px;
}

.m-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 5px;
  position: fixed;
  bottom: 63px;
  z-index: 5001;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.m-menu li {
  width: calc(100% / 6);
  margin: 0 2px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #ddd;
}

.m-menu li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  font-family: "Noto Sans KR", sans-serif !important;
  text-align: center;
  color: #ddd;
  padding: 5px 0;
  height: 29px;
  width: 100%;
}

.m-menu .m-active {
  background-color: #95b0cd;
  border-radius: 4px;
  color: #fff;
}

.m-menu .m-active a {
  color: fff;
}

@media (min-width: 992px) {
  .moTop-wrap, .moMenu-btn, .m-quick, .m-menu {
    display: none;
  }
}

footer {
  padding: 30px 0 50px;
  background-color: #383838;
}

footer ._con .footer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

footer ._con .footer-box__left {
  width: 28%;
}

footer ._con .footer-box__left img {
  width: calc(156px * 0.6);
  height: auto;
}

footer ._con .footer-box__center {
  width: 52%;
}

footer ._con .footer-box__center p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 26px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  text-align: left;
}

footer ._con .footer-box__right {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

footer ._con .footer-box__right img {
  width: calc(70px * 0.5);
  height: calc(70px * 0.5);
  margin: 5px;
}

footer ._con .footer-box__right img:nth-of-type(3) {
  height: calc(65px * 0.5);
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  footer {
    padding: 30px 10px 50px;
  }
  footer ._con .footer-box__left {
    width: 28%;
  }
  footer ._con .footer-box__left img {
    width: calc(156px * 0.6);
    height: auto;
  }
  footer ._con .footer-box__center {
    width: 52%;
  }
  footer ._con .footer-box__center p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
  }
  footer ._con .footer-box__right {
    width: 20%;
  }
  footer ._con .footer-box__right img {
    width: calc(70px * 0.5);
    height: calc(70px * 0.5);
    margin: 5px;
  }
  footer ._con .footer-box__right img:nth-of-type(3) {
    height: calc(65px * 0.5);
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  footer {
    padding: 30px 10px 50px;
  }
  footer ._con .footer-box__left {
    width: 17%;
  }
  footer ._con .footer-box__left img {
    width: calc(156px * 0.5);
    height: auto;
  }
  footer ._con .footer-box__center {
    width: 63%;
  }
  footer ._con .footer-box__center p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
  }
  footer ._con .footer-box__right {
    width: 20%;
  }
  footer ._con .footer-box__right img {
    width: calc(70px * 0.4);
    height: calc(70px * 0.4);
    margin: 5px;
  }
  footer ._con .footer-box__right img:nth-of-type(3) {
    height: calc(65px * 0.5);
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  footer {
    padding: 30px 10px 50px;
  }
  footer ._con .footer-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer ._con .footer-box__left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer ._con .footer-box__left img {
    width: calc(156px * 0.5);
    height: auto;
  }
  footer ._con .footer-box__center {
    width: 100%;
    margin-top: 20px;
  }
  footer ._con .footer-box__center p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
  }
  footer ._con .footer-box__right {
    margin-top: 20px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer ._con .footer-box__right img {
    width: calc(70px * 0.4);
    height: calc(70px * 0.4);
    margin: 5px;
  }
  footer ._con .footer-box__right img:nth-of-type(3) {
    height: calc(65px * 0.5);
  }
}

@media (max-width: 575.99px) and (min-width: 420px) {
  footer {
    padding: 30px 10px 50px;
  }
  footer ._con .footer-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer ._con .footer-box__left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer ._con .footer-box__left img {
    width: calc(156px * 0.5);
    height: auto;
  }
  footer ._con .footer-box__center {
    width: 100%;
    margin-top: 20px;
  }
  footer ._con .footer-box__center p {
    margin: 0;
    font-size: 13px;
    font-weight: 300;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
  }
  footer ._con .footer-box__right {
    margin-top: 20px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer ._con .footer-box__right img {
    width: calc(70px * 0.4);
    height: calc(70px * 0.4);
    margin: 5px;
  }
  footer ._con .footer-box__right img:nth-of-type(3) {
    height: calc(65px * 0.5);
  }
}

@media (max-width: 419.99px) {
  footer {
    padding: 30px 10px 50px;
  }
  footer ._con .footer-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer ._con .footer-box__left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer ._con .footer-box__left img {
    width: calc(156px * 0.5);
    height: auto;
  }
  footer ._con .footer-box__center {
    width: 100%;
    margin-top: 20px;
  }
  footer ._con .footer-box__center p {
    margin: 0;
    font-size: 13px;
    font-weight: 300;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
  }
  footer ._con .footer-box__center p br {
    display: none;
  }
  footer ._con .footer-box__right {
    margin-top: 20px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer ._con .footer-box__right img {
    width: calc(70px * 0.4);
    height: calc(70px * 0.4);
    margin: 5px;
  }
  footer ._con .footer-box__right img:nth-of-type(3) {
    height: calc(65px * 0.5);
  }
}

@-webkit-keyframes mouse {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  30% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  35% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  40% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  45% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  50% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  55% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  60% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  65% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  70% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes mouse {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  30% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  35% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  40% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  45% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  50% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  55% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  60% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  65% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  70% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.quick-menu {
  z-index: 7000;
  position: fixed;
  top: 85px;
  right: 0;
  width: 100px;
}

.quick-menu--top {
  width: 100%;
  padding: 10px 0;
  background-color: #101010;
}

.quick-menu--top p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  text-align: center;
  color: #ffffff;
}

.quick-menu .quick-menu--box {
  position: relative;
  width: 100%;
  height: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid #ffffff;
  cursor: pointer;
}

.quick-menu .quick-menu--box:last-of-type {
  border-bottom: 0px solid #000;
}

.quick-menu .quick-menu--box #box-1a {
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.quick-menu .quick-menu--box img {
  margin-bottom: 10px;
}

.quick-menu .quick-menu--box img.icon-1 {
  width: calc(20px * 1);
  height: calc(32px * 1);
}

.quick-menu .quick-menu--box img.icon-2 {
  width: calc(34px * 1);
  height: calc(29px * 1);
}

.quick-menu .quick-menu--box img.icon-3 {
  width: calc(31px * 1);
  height: calc(31px * 1);
}

.quick-menu .quick-menu--box img.icon-4 {
  width: calc(35px * 1);
  height: calc(35px * 1);
}

.quick-menu .quick-menu--box p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 15px;
  font-family: "Noto Sans KR", sans-serif !important;
  text-align: center;
  color: #17181a;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .quick-menu {
    z-index: 1000;
    position: fixed;
    top: 85px;
    right: 0;
    width: 80px;
  }
  .quick-menu--top {
    width: 100%;
    padding: 10px 0;
    background-color: #101010;
  }
  .quick-menu--top p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
    color: #ffffff;
  }
  .quick-menu--box {
    width: 100%;
    height: 85px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid #ffffff;
  }
  .quick-menu--box:last-of-type {
    border-bottom: 0px solid #000;
  }
  .quick-menu--box img {
    margin-bottom: 10px;
  }
  .quick-menu--box img.icon-1 {
    width: calc(20px * 0.7);
    height: calc(32px * 0.7);
  }
  .quick-menu--box img.icon-2 {
    width: calc(34px * 0.7);
    height: calc(29px * 0.7);
  }
  .quick-menu--box img.icon-3 {
    width: calc(31px * 0.7);
    height: calc(31px * 0.7);
  }
  .quick-menu--box img.icon-4 {
    width: calc(35px * 0.7);
    height: calc(35px * 0.7);
  }
  .quick-menu--box p {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: center;
    color: #17181a;
  }
}

@media (max-width: 992px) {
  .quick-menu {
    display: none;
  }
}

.phoneBox {
  z-index: 300;
  position: fixed;
  top: 40px;
  right: 0;
  width: 100%;
  height: 20px;
  background-color: #d33162;
}

.phoneBox--num h3 {
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  text-align: center;
}

.phoneBox--num h3 span {
  margin-right: 10px;
}

@media (min-width: 992px) {
  .phoneBox {
    display: none;
  }
}

.sec {
  overflow: hidden;
  height: 100vh;
}

.sec a.mouseScroll {
  z-index: 5000;
  position: absolute;
  z-index: 5000;
  left: 50%;
  width: calc(28px * 0.8);
  height: calc(78px * 0.8);
  margin-left: -11px;
  bottom: 30px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-name: mouse;
          animation-name: mouse;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  display: none !important;
}

.sec__wrap {
  z-index: 0;
  width: 100%;
  height: 100vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sec__wrap::after {
  position: absolute;
  content: '';
  margin: 0;
  padding: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.sec__wrap .harfOver-bg-right {
  z-index: 50;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  padding-left: 40px;
  -webkit-transform: translateX(110%);
          transform: translateX(110%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.sec__wrap .harfOver-bg-right .texBox {
  overflow: hidden;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 50%;
  -webkit-transform: translate(110%, -50%);
          transform: translate(110%, -50%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.sec__wrap .harfOver-bg-left {
  z-index: 50;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.sec__wrap .harfOver-bg-left .texBox {
  z-index: 500;
  position: absolute;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  top: 50%;
  background-color: #d3d5ea;
  -webkit-transform: translate(-110%, -50%);
          transform: translate(-110%, -50%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.sec__wrap .harfOver-bg-left .texBox::after {
  z-index: -1;
  position: absolute;
  content: '';
  margin: 0;
  padding: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(110%);
          transform: translateX(110%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.sec__wrap .harfOver-bg-left .texBox--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section1 .sec__wrap::after {
  background-color: rgba(161, 143, 123, 0.1);
  -webkit-transform: translateX(110%);
          transform: translateX(110%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section1 .sec__wrap .sec1-bg-right {
  width: calc(50% + 100px);
  background-color: rgba(47, 43, 39, 0.5);
}

.section1 .sec__wrap .sec1-bg-right .texBox {
  width: 100%;
  padding: 50px 50px;
  background-color: #5b5650;
}

.section1 .sec__wrap .sec1-bg-right .texBox::after {
  z-index: 0;
  position: absolute;
  content: '';
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section1 .sec__wrap .sec1-bg-right .texBox .boxLogo {
  z-index: 500;
  width: calc(351px * 1);
  height: calc(129px * 1);
  margin-bottom: 40px;
  -webkit-transform: translateX(-150%);
          transform: translateX(-150%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section1 .sec__wrap .sec1-bg-right .texBox .sec-1-h3 {
  z-index: 500;
  font-size: 44px;
  font-weight: 700;
  line-height: 55px;
  font-family: "Nanum Myeongjo", serif !important;
  color: #ffffff;
  margin-bottom: 30px;
  -webkit-transform: translateX(-150%);
          transform: translateX(-150%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section1 .sec__wrap .sec1-bg-right .texBox .sec-1-h3 span {
  color: #fea4a4;
}

.section1 .sec__wrap .sec1-bg-right .texBox .sec-1-p {
  z-index: 500;
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  font-family: "Noto Sans KR", sans-serif !important;
  text-align: left;
  color: #fee7a4;
  -webkit-transform: translateX(-150%);
          transform: translateX(-150%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section1.show .sec__wrap::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
}

.section1.show .sec__wrap .harfOver-bg-right {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.section1.show .sec__wrap .harfOver-bg-right .texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
}

.section1.show .sec__wrap .harfOver-bg-right .texBox::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
}

.section1.show .sec__wrap .harfOver-bg-right .texBox .boxLogo {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
}

.section1.show .sec__wrap .harfOver-bg-right .texBox .sec-1-h3 {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
}

.section1.show .sec__wrap .harfOver-bg-right .texBox .sec-1-p {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
}

.section2 .sec__wrap::after {
  position: absolute;
  content: '';
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(99, 103, 113, 0.1);
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section2 .sec__wrap .sec2-bg-left {
  width: calc(50% + 100px);
  background-color: rgba(99, 103, 113, 0.5);
}

.section2 .sec__wrap .sec2-bg-left .sec2-texBox--pnText {
  position: absolute;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #ffffff;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 50%;
  right: -17px;
  padding: 7px 15px;
  background-color: #1A1C23;
  -webkit-transform: rotate(90deg) translateY(-50%);
          transform: rotate(90deg) translateY(-50%);
}

.section2 .sec__wrap .sec2-bg-left .texBox {
  width: calc(100% - 40px);
  padding: 50px 50px;
}

.section2 .sec__wrap .sec2-bg-left .texBox::after {
  background-color: rgba(255, 255, 255, 0.2);
}

.section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-h3 {
  z-index: 500;
  font-size: 34px;
  font-weight: 700;
  line-height: 44px;
  font-family: "Nanum Myeongjo", serif !important;
  color: #2f3033;
  margin-bottom: 30px;
  margin-top: 30px;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-h3 span {
  color: #00a0ca;
}

.section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-p {
  z-index: 500;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  font-family: "NanumSquareRound", sans-serif !important;
  text-align: left;
  color: #2f3033;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-p span {
  color: #00a0ca;
}

.section2.section2.show .sec__wrap::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
}

.section2.section2.show .sec__wrap .harfOver-bg-left {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.section2.section2.show .sec__wrap .harfOver-bg-left .texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
}

.section2.section2.show .sec__wrap .harfOver-bg-left .texBox::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
}

.section2.section2.show .sec__wrap .harfOver-bg-left .texBox .sec-2-h3 {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
}

.section2.section2.show .sec__wrap .harfOver-bg-left .texBox .sec-2-p {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
}

.section3 .sec__wrap::after {
  background-color: rgba(26, 28, 35, 0.1);
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section3 .sec__wrap .harfOver-bg-right {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section3 .sec__wrap .harfOver-bg-right .texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section3 .sec__wrap .sec3-bg-right {
  width: calc(50% + 100px);
  background-color: rgba(26, 28, 35, 0.5);
}

.section3 .sec__wrap .sec3-bg-right .sec3-texBox--pnText {
  position: absolute;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #ffffff;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 50%;
  left: -45px;
  padding: 7px 15px;
  background-color: #1A1C23;
  -webkit-transform: rotate(90deg) translateY(-50%);
          transform: rotate(90deg) translateY(-50%);
}

.section3 .sec__wrap .sec3-bg-right .sec3-texBox {
  width: calc(100% - 30px);
  padding: 50px 50px;
  background-color: #1a1c23;
}

.section3 .sec__wrap .sec3-bg-right .sec3-texBox::after {
  background-color: rgba(0, 0, 0, 0.2);
}

.section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-h3 {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 300;
  line-height: 30px;
  font-family: "Noto Sans KR", sans-serif !important;
  text-align: left;
  color: #91ded1;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  font-family: "Noto Sans KR", sans-serif !important;
  text-align: left;
  color: #ffffff;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(2), .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(4) {
  margin-top: 20px;
}

.section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(4) span {
  font-size: 18px;
  color: #91ded1;
}

.section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p span {
  color: #f8ef8f;
}

.section3.show .sec__wrap::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section3.show .sec__wrap .harfOver-bg-right {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.section3.show .sec__wrap .harfOver-bg-right .sec3-texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section3.show .sec__wrap .harfOver-bg-right .sec3-texBox::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section3.show .sec__wrap .harfOver-bg-right .sec3-texBox .texBox--content .sec-3-h3 {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section3.show .sec__wrap .harfOver-bg-right .sec3-texBox .texBox--content .sec-3-p {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section3.show .sec__wrap .harfOver-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(3), .section3.show .sec__wrap .harfOver-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(4) {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section4 .sec__wrap::after {
  background-color: rgba(4, 25, 27, 0.1);
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section4 .sec__wrap .harfOver-bg-left {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section4 .sec__wrap .harfOver-bg-left .texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section4 .sec__wrap .sec4-bg-left {
  width: calc(50% + 100px);
  background-color: rgba(4, 25, 27, 0.6);
}

.section4 .sec__wrap .sec4-bg-left .sec4-texBox--pnText {
  position: absolute;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #ffffff;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 50%;
  right: -47px;
  padding: 7px 15px;
  background-color: #107279;
  -webkit-transform: rotate(90deg) translateY(-50%);
          transform: rotate(90deg) translateY(-50%);
}

.section4 .sec__wrap .sec4-bg-left .sec4-texBox {
  width: calc(100% - 40px);
  padding: 50px 50px;
  background-color: #107279;
}

.section4 .sec__wrap .sec4-bg-left .sec4-texBox::after {
  width: calc(100% - 0px);
  background-color: rgba(45, 146, 153, 0.2);
}

.section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-h3 {
  margin-top: 20px;
  font-size: 21px;
  font-weight: 700;
  line-height: 30px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #f9ca9c;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  font-family: "Noto Sans KR", sans-serif !important;
  text-align: left;
  color: #ffffff;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(2), .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(4) {
  margin-top: 20px;
}

.section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(3) {
  margin-top: 20px;
}

.section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p span {
  color: #ffda53;
}

.section4.show .sec__wrap::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section4.show .sec__wrap .harfOver-bg-left {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.section4.show .sec__wrap .harfOver-bg-left .sec4-texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section4.show .sec__wrap .harfOver-bg-left .sec4-texBox .texBox--content .sec-4-h3 {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section4.show .sec__wrap .harfOver-bg-left .sec4-texBox .texBox--content .sec-4-p {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section4.show .sec__wrap .harfOver-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(2) {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section4.show .sec__wrap .harfOver-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(3) {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section5 .sec__wrap::after {
  background-color: rgba(26, 28, 35, 0.1);
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section5 .sec__wrap .harfOver-bg-right {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section5 .sec__wrap .harfOver-bg-right .texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section5 .sec__wrap .sec5-bg-right {
  width: calc(50% + 100px);
  background-color: rgba(26, 28, 35, 0.5);
}

.section5 .sec__wrap .sec5-bg-right .sec5-texBox--pnText {
  position: absolute;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #ffffff;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 50%;
  left: -76px;
  padding: 7px 15px;
  background-color: #655c25;
  -webkit-transform: rotate(90deg) translateY(-50%);
          transform: rotate(90deg) translateY(-50%);
}

.section5 .sec__wrap .sec5-bg-right .sec5-texBox {
  width: calc(100% - 30px);
  padding: 50px 50px;
  background-color: #655c25;
}

.section5 .sec__wrap .sec5-bg-right .sec5-texBox::after {
  background-color: rgba(126, 111, 29, 0.2);
}

.section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-h3 {
  margin-top: 20px;
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #f4b2e5;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  font-family: "Noto Sans KR", sans-serif !important;
  text-align: left;
  color: #ffffff;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(1), .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(2), .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(3) {
  margin-top: 20px;
}

.section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(3) span {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  font-family: "Nanum Myeongjo", serif !important;
  color: #f4b2e5;
}

.section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p span {
  color: #d4e458;
}

.section5.show .sec__wrap::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section5.show .sec__wrap .harfOver-bg-right {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.section5.show .sec__wrap .harfOver-bg-right .sec5-texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section5.show .sec__wrap .harfOver-bg-right .sec5-texBox::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section5.show .sec__wrap .harfOver-bg-right .sec5-texBox .texBox--content .sec-5-h3 {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section5.show .sec__wrap .harfOver-bg-right .sec5-texBox .texBox--content .sec-5-p {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section5.show .sec__wrap .harfOver-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(3), .section5.show .sec__wrap .harfOver-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(4) {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section6 .sec__wrap::after {
  background-color: rgba(52, 61, 69, 0.1);
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section6 .sec__wrap .harfOver-bg-left {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section6 .sec__wrap .harfOver-bg-left .texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section6 .sec__wrap .sec6-bg-left {
  width: calc(50% + 100px);
  background-color: rgba(52, 61, 69, 0.5);
}

.section6 .sec__wrap .sec6-bg-left .sec6-texBox--pnText {
  position: absolute;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #ffffff;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 50%;
  right: -48px;
  padding: 7px 15px;
  background-color: #627d96;
  -webkit-transform: rotate(90deg) translateY(0%);
          transform: rotate(90deg) translateY(0%);
}

.section6 .sec__wrap .sec6-bg-left .sec6-texBox {
  width: calc(100% - 40px);
  padding: 50px 50px;
  background-color: #627d96;
}

.section6 .sec__wrap .sec6-bg-left .sec6-texBox::after {
  width: calc(100% - 0px);
  background-color: rgba(64, 79, 93, 0.2);
}

.section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-h3 {
  margin-top: 20px;
  font-size: 21px;
  font-weight: 700;
  line-height: 30px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #f9ca9c;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  font-family: "Noto Sans KR", sans-serif !important;
  text-align: left;
  color: #ffffff;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(2), .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(4), .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(4) {
  margin-top: 20px;
}

.section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(3) {
  margin-top: 20px;
}

.section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p span {
  color: #d8e039;
}

.section6.show .sec__wrap::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section6.show .sec__wrap .harfOver-bg-left {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.section6.show .sec__wrap .harfOver-bg-left .sec6-texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section6.show .sec__wrap .harfOver-bg-left .sec6-texBox .texBox--content .sec-6-h3 {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section6.show .sec__wrap .harfOver-bg-left .sec6-texBox .texBox--content .sec-6-p {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section6.show .sec__wrap .harfOver-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(2) {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section6.show .sec__wrap .harfOver-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(3) {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section6.show .sec__wrap .harfOver-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(4) {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section6.show .sec__wrap .harfOver-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(5) {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section7 .sec__wrap::after {
  background-color: rgba(26, 28, 35, 0.1);
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section7 .sec__wrap .harfOver-bg-right {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section7 .sec__wrap .harfOver-bg-right .texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section7 .sec__wrap .sec7-bg-right {
  width: calc(50% + 100px);
  background-color: rgba(34, 28, 47, 0.5);
}

.section7 .sec__wrap .sec7-bg-right .sec7-texBox--pnText {
  position: absolute;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #ffffff;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 50%;
  left: -63px;
  padding: 7px 15px;
  background-color: #7d6d99;
  -webkit-transform: rotate(90deg) translateY(-50%);
          transform: rotate(90deg) translateY(-50%);
}

.section7 .sec__wrap .sec7-bg-right .sec7-texBox {
  width: calc(100% - 30px);
  padding: 50px 50px;
  background-color: #7d6d99;
}

.section7 .sec__wrap .sec7-bg-right .sec7-texBox::after {
  background-color: rgba(108, 100, 123, 0.2);
}

.section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-h3 {
  margin-top: 20px;
  font-size: 26px;
  font-weight: 700;
  line-height: 34px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #f4b2e5;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  font-family: "Noto Sans KR", sans-serif !important;
  text-align: left;
  color: #ffffff;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(2) {
  margin-top: 20px;
}

.section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(2) {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Nanum Myeongjo", serif !important;
  color: #ffc5db;
}

.section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(2) span {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  font-family: "Nanum Myeongjo", serif !important;
  color: #ffc5db;
}

.section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p span {
  color: #f9f38c;
}

.section7.show .sec__wrap::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section7.show .sec__wrap .sec7-bg-right {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.section7.show .sec__wrap .sec7-bg-right .sec7-texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section7.show .sec__wrap .sec7-bg-right .sec7-texBox::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section7.show .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-h3 {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section7.show .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section7.show .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(2), .section7.show .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(4) {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section8 .sec__wrap::after {
  background-color: rgba(161, 143, 123, 0.1);
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section8 .sec__wrap .harfOver-bg-left {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section8 .sec__wrap .harfOver-bg-left .texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section8 .sec__wrap .sec8-bg-left {
  width: calc(50% + 100px);
  background-color: rgba(47, 43, 39, 0.5);
}

.section8 .sec__wrap .sec8-bg-left .sec8-texBox--pnText {
  position: absolute;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #ffffff;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 50%;
  right: -45px;
  padding: 7px 15px;
  background-color: #9c8f82;
  -webkit-transform: rotate(90deg) translateY(0%);
          transform: rotate(90deg) translateY(0%);
}

.section8 .sec__wrap .sec8-bg-left .sec8-texBox {
  width: calc(100% - 40px);
  padding: 50px 50px;
  background-color: #9c8f82;
}

.section8 .sec__wrap .sec8-bg-left .sec8-texBox::after {
  width: calc(100% - 0px);
  background-color: rgba(91, 86, 80, 0.2);
}

.section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-h3 {
  margin-top: 20px;
  font-size: 21px;
  font-weight: 700;
  line-height: 30px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #f9ca9c;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  font-family: "Noto Sans KR", sans-serif !important;
  text-align: left;
  color: #ffffff;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(2), .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(4), .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(4), .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(5) {
  margin-top: 20px;
}

.section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(3) {
  margin-top: 20px;
}

.section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p span {
  color: #c7d600;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Nanum Myeongjo", serif !important;
}

.section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(5) span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Nanum Myeongjo", serif !important;
}

.section8.show .sec__wrap::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section8.show .sec__wrap .harfOver-bg-left {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.section8.show .sec__wrap .harfOver-bg-left .sec8-texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section8.show .sec__wrap .harfOver-bg-left .sec8-texBox .texBox--content .sec-8-h3 {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section8.show .sec__wrap .harfOver-bg-left .sec8-texBox .texBox--content .sec-8-p {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section8.show .sec__wrap .harfOver-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(2) {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section8.show .sec__wrap .harfOver-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(3) {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section8.show .sec__wrap .harfOver-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(4) {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section8.show .sec__wrap .harfOver-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(5) {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section9 .sec__wrap::after {
  background-color: rgba(199, 214, 0, 0.1);
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section9 .sec__wrap .harfOver-bg-right {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section9 .sec__wrap .harfOver-bg-right .texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section9 .sec__wrap .sec9-bg-right {
  width: calc(50% + 100px);
  background-color: rgba(58, 60, 33, 0.5);
}

.section9 .sec__wrap .sec9-bg-right .sec9-texBox--pnText {
  position: absolute;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #ffffff;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 50%;
  left: -63px;
  padding: 7px 15px;
  background-color: #858400;
  -webkit-transform: rotate(90deg) translateY(-50%);
          transform: rotate(90deg) translateY(-50%);
}

.section9 .sec__wrap .sec9-bg-right .sec9-texBox {
  width: calc(100% - 30px);
  padding: 50px 50px;
  background-color: #858400;
}

.section9 .sec__wrap .sec9-bg-right .sec9-texBox::after {
  background-color: rgba(148, 152, 0, 0.2);
}

.section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #f6ff00;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  font-family: "Noto Sans KR", sans-serif !important;
  text-align: left;
  color: #ffffff;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p:nth-of-type(2) {
  margin-top: 20px;
}

.section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p span {
  color: #56f5e1;
}

.section9.show .sec__wrap::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section9.show .sec__wrap .sec9-bg-right {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.section9.show .sec__wrap .sec9-bg-right .sec9-texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section9.show .sec__wrap .sec9-bg-right .sec9-texBox::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section9.show .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-h3 {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section9.show .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section9.show .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p:nth-of-type(3), .section9.show .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p:nth-of-type(4) {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section10 .sec__wrap::after {
  background-color: rgba(236, 101, 4, 0.1);
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section10 .sec__wrap .harfOver-bg-left {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section10 .sec__wrap .harfOver-bg-left .texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section10 .sec__wrap .sec10-bg-left {
  width: calc(50% + 100px);
  background-color: rgba(55, 28, 9, 0.5);
}

.section10 .sec__wrap .sec10-bg-left .sec10-texBox--pnText {
  position: absolute;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #ffffff;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 50%;
  right: -65px;
  padding: 7px 15px;
  background-color: #933e00;
  -webkit-transform: rotate(90deg) translateY(0%);
          transform: rotate(90deg) translateY(0%);
}

.section10 .sec__wrap .sec10-bg-left .sec10-texBox {
  width: calc(100% - 40px);
  padding: 50px 50px;
  background-color: #933e00;
}

.section10 .sec__wrap .sec10-bg-left .sec10-texBox::after {
  width: calc(100% - 0px);
  background-color: rgba(53, 24, 2, 0.2);
}

.section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #facb00;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  font-family: "Noto Sans KR", sans-serif !important;
  text-align: left;
  color: #ffffff;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(2), .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(3) {
  margin-top: 5px;
}

.section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(2) {
  color: #bedb96;
}

.section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p span {
  color: #c7d600;
}

.section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(4) {
  margin-top: 20px;
}

.section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(4) span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Nanum Myeongjo", serif !important;
  color: #facb00;
}

.section10.show .sec__wrap::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section10.show .sec__wrap .harfOver-bg-left {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.section10.show .sec__wrap .harfOver-bg-left .sec10-texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section10.show .sec__wrap .harfOver-bg-left .sec10-texBox .texBox--content .sec-10-h3 {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section10.show .sec__wrap .harfOver-bg-left .sec10-texBox .texBox--content .sec-10-p {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section10.show .sec__wrap .harfOver-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(2) {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section10.show .sec__wrap .harfOver-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(3) {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section10.show .sec__wrap .harfOver-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(4) {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section10.show .sec__wrap .harfOver-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(5) {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section11 .sec__wrap::after {
  background-color: rgba(179, 189, 146, 0.1);
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section11 .sec__wrap .harfOver-bg-right {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section11 .sec__wrap .harfOver-bg-right .texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section11 .sec__wrap .sec11-bg-right {
  width: calc(50% + 100px);
  background-color: rgba(67, 75, 41, 0.5);
}

.section11 .sec__wrap .sec11-bg-right .sec11-texBox--pnText {
  position: absolute;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #ffffff;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 50%;
  left: -80px;
  padding: 7px 15px;
  background-color: #75814b;
  -webkit-transform: rotate(90deg) translateY(-50%);
          transform: rotate(90deg) translateY(-50%);
}

.section11 .sec__wrap .sec11-bg-right .sec11-texBox {
  width: calc(100% - 30px);
  padding: 50px 50px;
  background-color: #75814b;
}

.section11 .sec__wrap .sec11-bg-right .sec11-texBox::after {
  background-color: rgba(150, 161, 110, 0.2);
}

.section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #f6ff00;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  font-family: "Noto Sans KR", sans-serif !important;
  text-align: left;
  color: #ffffff;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p:nth-of-type(2), .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p:nth-of-type(3) {
  margin-top: 20px;
}

.section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Nanum Myeongjo", serif !important;
  color: #f8c093;
}

.section11.show .sec__wrap::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section11.show .sec__wrap .sec11-bg-right {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.section11.show .sec__wrap .sec11-bg-right .sec11-texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section11.show .sec__wrap .sec11-bg-right .sec11-texBox::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section11.show .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-h3 {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section11.show .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section11.show .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p:nth-of-type(3), .section11.show .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p:nth-of-type(4) {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section12 .sec__wrap::after {
  background-color: rgba(127, 184, 191, 0.1);
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section12 .sec__wrap .harfOver-bg-left {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section12 .sec__wrap .harfOver-bg-left .texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section12 .sec__wrap .sec12-bg-left {
  width: calc(50% + 100px);
  background-color: rgba(80, 94, 108, 0.5);
}

.section12 .sec__wrap .sec12-bg-left .sec12-texBox--pnText {
  position: absolute;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #ffffff;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 50%;
  right: -40px;
  padding: 7px 15px;
  background-color: #808c96;
  -webkit-transform: rotate(90deg) translateY(0%);
          transform: rotate(90deg) translateY(0%);
}

.section12 .sec__wrap .sec12-bg-left .sec12-texBox {
  width: calc(100% - 40px);
  padding: 50px 50px;
  background-color: #808c96;
}

.section12 .sec__wrap .sec12-bg-left .sec12-texBox::after {
  width: calc(100% - 0px);
  background-color: rgba(128, 140, 150, 0.2);
}

.section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #facb00;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  font-family: "Noto Sans KR", sans-serif !important;
  text-align: left;
  color: #ffffff;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(2), .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(3) {
  margin-top: 20px;
}

.section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(1) span, .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(2) span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Nanum Myeongjo", serif !important;
  color: #fef1a2;
}

.section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(4) {
  margin-top: 20px;
}

.section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(4) span {
  color: #c8e2ea;
}

.section12.show .sec__wrap::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section12.show .sec__wrap .harfOver-bg-left {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.section12.show .sec__wrap .harfOver-bg-left .sec12-texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section12.show .sec__wrap .harfOver-bg-left .sec12-texBox .texBox--content .sec-12-h3 {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section12.show .sec__wrap .harfOver-bg-left .sec12-texBox .texBox--content .sec-12-p {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section12.show .sec__wrap .harfOver-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(2) {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section12.show .sec__wrap .harfOver-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(3) {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section12.show .sec__wrap .harfOver-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(4) {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section12.show .sec__wrap .harfOver-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(5) {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section13 .sec__wrap::after {
  background-color: rgba(116, 200, 216, 0.1);
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section13 .sec__wrap .harfOver-bg-right {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section13 .sec__wrap .harfOver-bg-right .texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section13 .sec__wrap .sec13-bg-right {
  width: calc(50% + 100px);
  background-color: rgba(0, 99, 111, 0.5);
}

.section13 .sec__wrap .sec13-bg-right .sec13-texBox--pnText {
  position: absolute;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #ffffff;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 50%;
  left: -55px;
  padding: 7px 15px;
  background-color: #0089a3;
  -webkit-transform: rotate(90deg) translateY(-50%);
          transform: rotate(90deg) translateY(-50%);
}

.section13 .sec__wrap .sec13-bg-right .sec13-texBox {
  width: calc(100% - 30px);
  padding: 50px 50px;
  background-color: #0089a3;
}

.section13 .sec__wrap .sec13-bg-right .sec13-texBox::after {
  background-color: rgba(0, 140, 166, 0.2);
}

.section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Nanum Myeongjo", serif !important;
  text-align: left;
  color: #f6ff00;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  font-family: "Noto Sans KR", sans-serif !important;
  text-align: left;
  color: #ffffff;
  z-index: 500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1);
}

.section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(2), .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(3), .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(4), .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(5) {
  margin-top: 20px;
}

.section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p span {
  color: #fff352;
}

.section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(3) span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Nanum Myeongjo", serif !important;
  color: #f3d4e5;
}

.section13.show .sec__wrap::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 0s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section13.show .sec__wrap .sec13-bg-right {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.section13.show .sec__wrap .sec13-bg-right .sec13-texBox {
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section13.show .sec__wrap .sec13-bg-right .sec13-texBox::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section13.show .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-11-h3 {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section13.show .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section13.show .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(1), .section13.show .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(2) {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section13.show .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(3), .section13.show .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(4) {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section13.show .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(5) {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
  transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0s;
}

.section14 .sec__wrap {
  z-index: 0;
  padding-top: 50px;
}

.section14 .sec__wrap .map-container {
  width: 100%;
  height: 100%;
  max-width: 1800px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 100px 0 20px;
}

.section14 .sec__wrap .map-container .titBx {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section14 .sec__wrap .map-container .titBx h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #17181a;
  text-align: left;
  margin-bottom: 45px;
}

.section14 .sec__wrap .map-container .titBx h3::after {
  position: absolute;
  position: absolute;
  content: '';
  margin: 0;
  padding: 0;
  width: 400px;
  height: 1px;
  margin-top: 10px;
  background-color: #8e9298;
}

.section14 .sec__wrap .map-container .addrBx {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  padding-left: 20px;
  padding-top: 30px;
}

.section14 .sec__wrap .map-container .addrBx p {
  margin: 0;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 34px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #17181a;
  text-align: left;
  border-bottom: 1px dashed #8e9298;
}

.section14 .sec__wrap .map-container .kakaoMap {
  width: 100%;
}

.section14 .sec__wrap .map-container .kakaoMap a {
  width: 100%;
  max-width: 100%;
  background-image: url("../imgs/map.jpg");
  height: 450px;
  position: relative;
  z-index: 1;
  background-position: 50% 50%;
}

.section14 .sec__wrap .map-container .kakaoMap a .root_daum_roughmap.root_daum_roughmap_landing {
  width: 100%;
  max-width: 100%;
  display: none;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .sec {
    overflow: hidden;
    height: 100vh;
  }
  .sec a.mouseScroll {
    z-index: 5000;
    position: absolute;
    z-index: 5000;
    left: 50%;
    width: calc(28px * 0.6);
    height: calc(78px * 0.6);
    margin-left: -8px;
    bottom: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    -webkit-animation-name: mouse;
            animation-name: mouse;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
  .sec__wrap {
    z-index: 0;
    width: 100%;
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .sec__wrap::after {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .sec__wrap .harfOver-bg-right {
    z-index: 50;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    padding-left: 40px;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-right .texBox {
    overflow: hidden;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 50%;
    -webkit-transform: translate(110%, -50%);
            transform: translate(110%, -50%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-left {
    z-index: 50;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-left .texBox {
    z-index: 500;
    position: absolute;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    top: 50%;
    background-color: #cec8d8;
    -webkit-transform: translate(-110%, -50%);
            transform: translate(-110%, -50%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-left .texBox::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-left .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section1 .sec__wrap::after {
    background-color: rgba(161, 143, 123, 0.1);
  }
  .section1 .sec__wrap .sec1-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(47, 43, 39, 0.5);
  }
  .section1 .sec__wrap .sec1-bg-right .texBox {
    width: 100%;
    padding: 40px 40px;
    background-color: #5b5650;
  }
  .section1 .sec__wrap .sec1-bg-right .texBox::after {
    z-index: 0;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .section1 .sec__wrap .sec1-bg-right .texBox .boxLogo {
    width: calc(351px * 0.75);
    height: calc(129px * 0.75);
    margin-bottom: 30px;
  }
  .section1 .sec__wrap .sec1-bg-right .texBox .sec-1-h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 45px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #ffffff;
    margin-bottom: 20px;
  }
  .section1 .sec__wrap .sec1-bg-right .texBox .sec-1-p {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #fee7a4;
  }
  .section2 .sec__wrap::after {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(99, 103, 113, 0.1);
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .section2 .sec__wrap .sec2-bg-left {
    width: calc(50% + 200px);
    background-color: rgba(99, 103, 113, 0.5);
  }
  .section2 .sec__wrap .sec2-bg-left .texBox {
    width: calc(100% - 40px);
    padding: 40px;
  }
  .section2 .sec__wrap .sec2-bg-left .texBox::after {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-h3 {
    z-index: 500;
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #2f3033;
    margin-bottom: 20px;
    margin-top: 20px;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-h3 span {
    color: #00a0ca;
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-p {
    z-index: 500;
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    font-family: "NanumSquareRound", sans-serif !important;
    text-align: left;
    color: #2f3033;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-p span {
    color: #00a0ca;
  }
  .section2.section2.show .sec__wrap::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left .texBox {
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left .texBox::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left .texBox .sec-2-h3 {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.3s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.3s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.3s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.3s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.3s;
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left .texBox .sec-2-p {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.7s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.7s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.7s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.7s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.7s;
  }
  .section3 .sec__wrap::after {
    background-color: rgba(26, 28, 35, 0.1);
  }
  .section3 .sec__wrap .sec3-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(26, 28, 35, 0.5);
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    left: -45px;
    padding: 7px 15px;
    background-color: #1A1C23;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox {
    width: calc(100% - 30px);
    padding: 40px;
    background-color: #1a1c23;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox::after {
    background-color: rgba(0, 0, 0, 0.2);
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-h3 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #91ded1;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(2), .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(4) {
    margin-top: 15px;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(4) span {
    font-size: 18px;
    color: #91ded1;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p span {
    color: #f8ef8f;
  }
  .section4 .sec__wrap::after {
    background-color: rgba(4, 25, 27, 0.1);
  }
  .section4 .sec__wrap .sec4-bg-left {
    width: calc(50% + 200px);
    background-color: rgba(4, 25, 27, 0.5);
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    right: -60px;
    padding: 7px 15px;
    background-color: #107279;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox {
    width: calc(100% - 40px);
    padding: 40px;
    background-color: #107279;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(45, 146, 153, 0.2);
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-h3 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f9ca9c;
    z-index: 500;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(2), .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(4) {
    margin-top: 15px;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(3) {
    margin-top: 15px;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p span {
    color: #ffda53;
  }
  .section5 .sec__wrap::after {
    background-color: rgba(26, 28, 35, 0.1);
  }
  .section5 .sec__wrap .sec5-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(26, 28, 35, 0.5);
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    left: -76px;
    padding: 7px 15px;
    background-color: #655c25;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox {
    width: calc(100% - 30px);
    padding: 40px;
    background-color: #655c25;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox::after {
    background-color: rgba(126, 111, 29, 0.2);
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-h3 {
    margin-top: 0px;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f4b2e5;
    z-index: 500;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(1), .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(2), .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(3) {
    margin-top: 15px;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(3) span {
    font-size: 17px;
    font-weight: 500;
    line-height: 26px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #f4b2e5;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p span {
    color: #d4e458;
  }
  .section6 .sec__wrap::after {
    background-color: rgba(52, 61, 69, 0.1);
  }
  .section6 .sec__wrap .sec6-bg-left {
    width: calc(50% + 200px);
    background-color: rgba(52, 61, 69, 0.5);
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    padding: 7px 15px;
    background-color: #627d96;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox {
    width: calc(100% - 40px);
    padding: 40px;
    background-color: #627d96;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(64, 79, 93, 0.2);
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-h3 {
    margin-top: 15px;
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f9ca9c;
    z-index: 500;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(2), .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(4), .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(4) {
    margin-top: 15px;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(3) {
    margin-top: 15px;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p span {
    color: #d8e039;
  }
  .section7 .sec__wrap::after {
    background-color: rgba(26, 28, 35, 0.1);
  }
  .section7 .sec__wrap .sec7-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(34, 28, 47, 0.5);
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    padding: 7px 15px;
    background-color: #7d6d99;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox {
    width: calc(100% - 30px);
    padding: 40px;
    background-color: #7d6d99;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox::after {
    background-color: rgba(108, 100, 123, 0.2);
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-h3 {
    margin-top: 15px;
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f4b2e5;
    z-index: 500;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(2) {
    margin-top: 15px;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(2) {
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #ffc5db;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(2) span {
    font-size: 17px;
    font-weight: 700;
    line-height: 26px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #ffc5db;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p span {
    color: #f9f38c;
  }
  .section8 .sec__wrap::after {
    background-color: rgba(161, 143, 123, 0.1);
  }
  .section8 .sec__wrap .sec8-bg-left {
    width: calc(50% + 200px);
    background-color: rgba(47, 43, 39, 0.5);
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    right: -45px;
    padding: 7px 15px;
    background-color: #9c8f82;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox {
    width: calc(100% - 40px);
    padding: 40px;
    background-color: #9c8f82;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(91, 86, 80, 0.2);
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-h3 {
    margin-top: 20px;
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f9ca9c;
    z-index: 500;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(2), .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(4), .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(4), .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(5) {
    margin-top: 15px;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(3) {
    margin-top: 15px;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p span {
    color: #c7d600;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    font-family: "Nanum Myeongjo", serif !important;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(5) span {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    font-family: "Nanum Myeongjo", serif !important;
  }
  .section9 .sec__wrap::after {
    background-color: rgba(199, 214, 0, 0.1);
  }
  .section9 .sec__wrap .sec9-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(58, 60, 33, 0.5);
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    left: -63px;
    padding: 7px 15px;
    background-color: #858400;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox {
    width: calc(100% - 30px);
    padding: 40px;
    background-color: #858400;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox::after {
    background-color: rgba(148, 152, 0, 0.2);
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-h3 {
    margin-top: 15px;
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f6ff00;
    z-index: 500;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p:nth-of-type(2) {
    margin-top: 15px;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p span {
    color: #56f5e1;
  }
  .section10 .sec__wrap::after {
    background-color: rgba(236, 101, 4, 0.1);
  }
  .section10 .sec__wrap .sec10-bg-left {
    width: calc(50% + 200px);
    background-color: rgba(55, 28, 9, 0.5);
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    right: -65px;
    padding: 7px 15px;
    background-color: #933e00;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox {
    width: calc(100% - 40px);
    padding: 40px;
    background-color: #933e00;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(53, 24, 2, 0.2);
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-h3 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #facb00;
    z-index: 500;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(2), .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(3) {
    margin-top: 5px;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(2) {
    color: #bedb96;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p span {
    color: #c7d600;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(4) {
    margin-top: 15px;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(4) span {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #facb00;
  }
  .section11 .sec__wrap::after {
    background-color: rgba(179, 189, 146, 0.1);
  }
  .section11 .sec__wrap .sec11-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(67, 75, 41, 0.5);
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    left: -80px;
    padding: 7px 15px;
    background-color: #858400;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox {
    width: calc(100% - 30px);
    padding: 40px;
    background-color: #858400;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox::after {
    background-color: rgba(150, 161, 110, 0.2);
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-h3 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f6ff00;
    z-index: 500;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p:nth-of-type(2), .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p:nth-of-type(3) {
    margin-top: 15px;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p span {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #f8c093;
  }
  .section12 .sec__wrap::after {
    background-color: rgba(127, 184, 191, 0.1);
  }
  .section12 .sec__wrap .sec12-bg-left {
    width: calc(50% + 200px);
    background-color: rgba(80, 94, 108, 0.5);
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    right: -40px;
    padding: 7px 15px;
    background-color: #808c96;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox {
    width: calc(100% - 40px);
    padding: 40px;
    background-color: #808c96;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(128, 140, 150, 0.2);
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-h3 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #facb00;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(2), .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(3) {
    margin-top: 15px;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(1) span, .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(2) span {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #fef1a2;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(4) {
    margin-top: 15px;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(4) span {
    color: #c8e2ea;
  }
  .section13 .sec__wrap::after {
    background-color: rgba(116, 200, 216, 0.1);
  }
  .section13 .sec__wrap .sec13-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(0, 99, 111, 0.5);
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    left: -55px;
    padding: 7px 15px;
    background-color: #0089a3;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox {
    width: calc(100% - 30px);
    padding: 40px;
    background-color: #0089a3;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox::after {
    background-color: rgba(0, 140, 166, 0.2);
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-h3 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f6ff00;
    z-index: 500;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(2), .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(3), .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(4), .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(5) {
    margin-top: 15px;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p span {
    color: #fff352;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(3) span {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #f3d4e5;
  }
  .section14 .sec__wrap {
    z-index: 0;
    padding-top: 50px;
  }
  .section14 .sec__wrap .map-container {
    width: 100%;
    height: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 100px 0 20px;
  }
  .section14 .sec__wrap .map-container .titBx {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .section14 .sec__wrap .map-container .titBx h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #17181a;
    text-align: left;
    margin-bottom: 30px;
  }
  .section14 .sec__wrap .map-container .titBx h3::after {
    position: absolute;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    width: 400px;
    height: 1px;
    margin-top: 10px;
    background-color: #8e9298;
  }
  .section14 .sec__wrap .map-container .addrBx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    padding-left: 20px;
    padding-top: 20px;
  }
  .section14 .sec__wrap .map-container .addrBx p {
    margin: 0;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #17181a;
    text-align: left;
    border-bottom: 1px dashed #8e9298;
  }
  .section14 .sec__wrap .map-container .kakaoMap {
    width: 100%;
    height: 260px;
  }
  .section14 .sec__wrap .map-container .kakaoMap a {
    height: 260px;
  }
  .section14 .sec__wrap .map-container .kakaoMap a .root_daum_roughmap.root_daum_roughmap_landing {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .sec {
    overflow: hidden;
    height: 100vh;
  }
  .sec a.mouseScroll {
    z-index: 5000;
    position: absolute;
    left: 20px;
    width: calc(28px * 0.6);
    height: calc(78px * 0.6);
    margin-left: 0px;
    bottom: 20px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    -webkit-animation-name: mouse;
            animation-name: mouse;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
  .sec__wrap {
    z-index: 0;
    width: 100%;
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .sec__wrap::after {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .sec__wrap .harfOver-bg-right {
    z-index: 50;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    padding-left: 40px;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-right .texBox {
    overflow: hidden;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 50%;
    -webkit-transform: translate(110%, -50%);
            transform: translate(110%, -50%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-left {
    z-index: 50;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-left .texBox {
    z-index: 500;
    position: absolute;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    top: 50%;
    background-color: #cec8d8;
    -webkit-transform: translate(-110%, -50%);
            transform: translate(-110%, -50%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-left .texBox::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-left .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section1 .sec__wrap::after {
    background-color: rgba(161, 143, 123, 0.1);
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .section1 .sec__wrap .sec1-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(47, 43, 39, 0.5);
  }
  .section1 .sec__wrap .sec1-bg-right .texBox {
    width: 100%;
    padding: 30px;
    background-color: #5b5650;
  }
  .section1 .sec__wrap .sec1-bg-right .texBox::after {
    z-index: 0;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  .section1 .sec__wrap .sec1-bg-right .texBox .boxLogo {
    width: calc(351px * 0.5);
    height: calc(129px * 0.5);
    margin-bottom: 20px;
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
  .section1 .sec__wrap .sec1-bg-right .texBox .sec-1-h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 35px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #ffffff;
    margin-bottom: 20px;
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
  .section1 .sec__wrap .sec1-bg-right .texBox .sec-1-p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #fee7a4;
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
  .section2 .sec__wrap::after {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(99, 103, 113, 0.1);
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .section2 .sec__wrap .sec2-bg-left {
    width: calc(50% + 200px);
    background-color: rgba(99, 103, 113, 0.5);
  }
  .section2 .sec__wrap .sec2-bg-left .texBox {
    width: calc(100% - 40px);
    padding: 40px;
  }
  .section2 .sec__wrap .sec2-bg-left .texBox::after {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-h3 {
    z-index: 500;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #2f3033;
    margin-bottom: 10px;
    margin-top: 10px;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-h3 span {
    color: #00a0ca;
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-p {
    z-index: 500;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    font-family: "NanumSquareRound", sans-serif !important;
    text-align: left;
    color: #2f3033;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-p span {
    color: #00a0ca;
  }
  .section2.section2.show .sec__wrap::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left .texBox {
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left .texBox::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left .texBox .sec-2-h3 {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.3s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.3s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.3s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.3s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.3s;
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left .texBox .sec-2-p {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.7s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.7s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.7s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.7s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.7s;
  }
  .section3 .sec__wrap::after {
    background-color: rgba(26, 28, 35, 0.1);
  }
  .section3 .sec__wrap .sec3-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(26, 28, 35, 0.5);
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    left: -45px;
    padding: 7px 15px;
    background-color: #1A1C23;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox {
    width: calc(100% - 30px);
    padding: 30px;
    background-color: #1a1c23;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox::after {
    background-color: rgba(0, 0, 0, 0.2);
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #91ded1;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(2), .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(4) {
    margin-top: 10px;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(4) span {
    font-size: 16px;
    color: #91ded1;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p span {
    color: #f8ef8f;
  }
  .section4 .sec__wrap::after {
    background-color: rgba(4, 25, 27, 0.1);
  }
  .section4 .sec__wrap .sec4-bg-left {
    width: calc(50% + 200px);
    background-color: rgba(4, 25, 27, 0.5);
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    right: -60px;
    padding: 7px 15px;
    background-color: #107279;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox {
    width: calc(100% - 40px);
    padding: 30px;
    background-color: #107279;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(45, 146, 153, 0.2);
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f9ca9c;
    z-index: 500;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(2), .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(4) {
    margin-top: 10px;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p span {
    color: #ffda53;
  }
  .section5 .sec__wrap::after {
    background-color: rgba(26, 28, 35, 0.1);
  }
  .section5 .sec__wrap .sec5-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(26, 28, 35, 0.5);
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    left: -76px;
    padding: 7px 15px;
    background-color: #655c25;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox {
    width: calc(100% - 30px);
    padding: 30px;
    background-color: #655c25;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox::after {
    background-color: rgba(126, 111, 29, 0.2);
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-h3 {
    margin-top: 0px;
    font-size: 17px;
    font-weight: 700;
    line-height: 26px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f4b2e5;
    z-index: 500;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(1), .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(2), .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(3) span {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #f4b2e5;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p span {
    color: #d4e458;
  }
  .section6 .sec__wrap::after {
    background-color: rgba(52, 61, 69, 0.1);
  }
  .section6 .sec__wrap .sec6-bg-left {
    width: calc(50% + 200px);
    background-color: rgba(52, 61, 69, 0.5);
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    padding: 7px 15px;
    background-color: #627d96;
    -webkit-transform: rotate(90deg) translateX(0%);
            transform: rotate(90deg) translateX(0%);
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox {
    width: calc(100% - 40px);
    padding: 30px;
    background-color: #627d96;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(64, 79, 93, 0.2);
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-h3 {
    margin-top: 10px;
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f9ca9c;
    z-index: 500;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(2), .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(4), .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(4) {
    margin-top: 10px;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p span {
    color: #d8e039;
  }
  .section7 .sec__wrap::after {
    background-color: rgba(26, 28, 35, 0.1);
  }
  .section7 .sec__wrap .sec7-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(34, 28, 47, 0.5);
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    padding: 7px 15px;
    background-color: #7d6d99;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox {
    width: calc(100% - 30px);
    padding: 30px;
    background-color: #7d6d99;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox::after {
    background-color: rgba(108, 100, 123, 0.2);
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-h3 {
    margin-top: 10px;
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f4b2e5;
    z-index: 500;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(2) {
    margin-top: 10px;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(2) {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #ffc5db;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(2) span {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #ffc5db;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p span {
    color: #f9f38c;
  }
  .section8 .sec__wrap::after {
    background-color: rgba(161, 143, 123, 0.1);
  }
  .section8 .sec__wrap .sec8-bg-left {
    width: calc(50% + 200px);
    background-color: rgba(47, 43, 39, 0.5);
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    right: -45px;
    padding: 7px 15px;
    background-color: #9c8f82;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox {
    width: calc(100% - 40px);
    padding: 30px;
    background-color: #9c8f82;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(91, 86, 80, 0.2);
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-h3 {
    margin-top: 10px;
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f9ca9c;
    z-index: 500;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(2), .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(4), .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(4), .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(5) {
    margin-top: 10px;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p span {
    color: #c7d600;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(5) span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
  }
  .section9 .sec__wrap::after {
    background-color: rgba(199, 214, 0, 0.1);
  }
  .section9 .sec__wrap .sec9-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(58, 60, 33, 0.5);
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    left: -63px;
    padding: 7px 15px;
    background-color: #858400;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox {
    width: calc(100% - 30px);
    padding: 30px;
    background-color: #858400;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox::after {
    background-color: rgba(148, 152, 0, 0.2);
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f6ff00;
    z-index: 500;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p:nth-of-type(2) {
    margin-top: 10px;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p span {
    color: #56f5e1;
  }
  .section10 .sec__wrap::after {
    background-color: rgba(236, 101, 4, 0.1);
  }
  .section10 .sec__wrap .sec10-bg-left {
    width: calc(50% + 200px);
    background-color: rgba(55, 28, 9, 0.5);
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    right: -65px;
    padding: 7px 15px;
    background-color: #933e00;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox {
    width: calc(100% - 40px);
    padding: 30px;
    background-color: #933e00;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(53, 24, 2, 0.2);
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-h3 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #facb00;
    z-index: 500;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(2), .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(3) {
    margin-top: 5px;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(2) {
    color: #bedb96;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p span {
    color: #c7d600;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(4) {
    margin-top: 10px;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(4) span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #facb00;
  }
  .section11 .sec__wrap::after {
    background-color: rgba(179, 189, 146, 0.1);
  }
  .section11 .sec__wrap .sec11-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(67, 75, 41, 0.5);
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    left: -80px;
    padding: 7px 15px;
    background-color: #858400;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox {
    width: calc(100% - 30px);
    padding: 30px;
    background-color: #858400;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox::after {
    background-color: rgba(150, 161, 110, 0.2);
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f6ff00;
    z-index: 500;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p:nth-of-type(2), .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p span {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #f8c093;
  }
  .section12 .sec__wrap::after {
    background-color: rgba(127, 184, 191, 0.1);
  }
  .section12 .sec__wrap .sec12-bg-left {
    width: calc(50% + 200px);
    background-color: rgba(80, 94, 108, 0.5);
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    right: -40px;
    padding: 7px 15px;
    background-color: #808c96;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox {
    width: calc(100% - 40px);
    padding: 30px;
    background-color: #808c96;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(128, 140, 150, 0.2);
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #facb00;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(2), .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(1) span, .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(2) span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #fef1a2;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(4) {
    margin-top: 10px;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(4) span {
    color: #c8e2ea;
  }
  .section13 .sec__wrap::after {
    background-color: rgba(116, 200, 216, 0.1);
  }
  .section13 .sec__wrap .sec13-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(0, 99, 111, 0.5);
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    left: -55px;
    padding: 7px 15px;
    background-color: #0089a3;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox {
    width: calc(100% - 30px);
    padding: 30px;
    background-color: #0089a3;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox::after {
    background-color: rgba(0, 140, 166, 0.2);
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f6ff00;
    z-index: 500;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(2), .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(3), .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(4), .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(5) {
    margin-top: 10px;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p span {
    color: #fff352;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(3) span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #f3d4e5;
  }
  .section14 .sec__wrap {
    z-index: 0;
    padding-top: 50px;
  }
  .section14 .sec__wrap .map-container {
    width: 100%;
    height: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 20px 0 20px;
  }
  .section14 .sec__wrap .map-container .titBx {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .section14 .sec__wrap .map-container .titBx h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #17181a;
    text-align: left;
    margin-bottom: 20px;
  }
  .section14 .sec__wrap .map-container .titBx h3::after {
    position: absolute;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    width: 400px;
    height: 1px;
    margin-top: 5px;
    background-color: #ced2d8;
  }
  .section14 .sec__wrap .map-container .addrBx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    padding-left: 20px;
    padding-top: 10px;
  }
  .section14 .sec__wrap .map-container .addrBx p {
    margin: 0;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #17181a;
    text-align: left;
    border-bottom: 1px dashed #8e9298;
  }
  .section14 .sec__wrap .map-container .kakaoMap {
    width: 100%;
    height: 200px;
  }
  .section14 .sec__wrap .map-container .kakaoMap a {
    height: 200px;
  }
  .section14 .sec__wrap .map-container .kakaoMap a .root_daum_roughmap.root_daum_roughmap_landing {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .sec {
    overflow: hidden;
    height: 100vh;
  }
  .sec a.mouseScroll {
    z-index: 5000;
    position: absolute;
    left: 20px;
    width: calc(28px * 0.6);
    height: calc(78px * 0.6);
    margin-left: 0px;
    bottom: 20px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    -webkit-animation-name: mouse;
            animation-name: mouse;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
  .sec__wrap {
    z-index: 0;
    width: 100%;
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .sec__wrap::after {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .sec__wrap .harfOver-bg-right {
    z-index: 50;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    padding-left: 40px;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-right .texBox {
    overflow: hidden;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 50%;
    -webkit-transform: translate(110%, -50%);
            transform: translate(110%, -50%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-left {
    z-index: 50;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-left .texBox {
    z-index: 500;
    position: absolute;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    top: 50%;
    background-color: #cec8d8;
    -webkit-transform: translate(-110%, -50%);
            transform: translate(-110%, -50%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-left .texBox::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-left .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section1 .sec__wrap::after {
    background-color: rgba(161, 143, 123, 0.1);
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .section1 .sec__wrap .sec1-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(47, 43, 39, 0.5);
  }
  .section1 .sec__wrap .sec1-bg-right .texBox {
    width: 100%;
    padding: 30px;
    background-color: #5b5650;
  }
  .section1 .sec__wrap .sec1-bg-right .texBox::after {
    z-index: 0;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  .section1 .sec__wrap .sec1-bg-right .texBox .boxLogo {
    width: calc(351px * 0.5);
    height: calc(129px * 0.5);
    margin-bottom: 20px;
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
  .section1 .sec__wrap .sec1-bg-right .texBox .sec-1-h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 35px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #ffffff;
    margin-bottom: 20px;
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
  .section1 .sec__wrap .sec1-bg-right .texBox .sec-1-p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #fee7a4;
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
  .section2 .sec__wrap::after {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(99, 103, 113, 0.1);
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .section2 .sec__wrap .sec2-bg-left {
    width: calc(50% + 200px);
    background-color: rgba(99, 103, 113, 0.5);
  }
  .section2 .sec__wrap .sec2-bg-left .texBox {
    width: calc(100% - 40px);
    padding: 40px;
  }
  .section2 .sec__wrap .sec2-bg-left .texBox::after {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-h3 {
    z-index: 500;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #2f3033;
    margin-bottom: 10px;
    margin-top: 10px;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-h3 span {
    color: #00a0ca;
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-p {
    z-index: 500;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    font-family: "NanumSquareRound", sans-serif !important;
    text-align: left;
    color: #2f3033;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-p span {
    color: #00a0ca;
  }
  .section2.section2.show .sec__wrap::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left .texBox {
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left .texBox::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left .texBox .sec-2-h3 {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.3s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.3s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.3s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.3s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.3s;
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left .texBox .sec-2-p {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.7s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.7s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.7s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.7s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.7s;
  }
  .section3 .sec__wrap::after {
    background-color: rgba(26, 28, 35, 0.1);
  }
  .section3 .sec__wrap .sec3-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(26, 28, 35, 0.5);
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    left: -45px;
    padding: 7px 15px;
    background-color: #1A1C23;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox {
    width: calc(100% - 30px);
    padding: 30px;
    background-color: #1a1c23;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox::after {
    background-color: rgba(0, 0, 0, 0.2);
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #91ded1;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(2), .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(4) {
    margin-top: 10px;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(2) br {
    display: none;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(4) span {
    font-size: 16px;
    color: #91ded1;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p span {
    color: #f8ef8f;
  }
  .section4 .sec__wrap::after {
    background-color: rgba(4, 25, 27, 0.1);
  }
  .section4 .sec__wrap .sec4-bg-left {
    width: calc(50% + 200px);
    background-color: rgba(4, 25, 27, 0.5);
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    right: -60px;
    padding: 7px 15px;
    background-color: #107279;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox {
    width: calc(100% - 40px);
    padding: 30px;
    background-color: #107279;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(45, 146, 153, 0.2);
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f9ca9c;
    z-index: 500;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(2), .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(4) {
    margin-top: 10px;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p span {
    color: #ffda53;
  }
  .section5 .sec__wrap::after {
    background-color: rgba(26, 28, 35, 0.1);
  }
  .section5 .sec__wrap .sec5-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(26, 28, 35, 0.5);
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    left: -76px;
    padding: 7px 15px;
    background-color: #655c25;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox {
    width: calc(100% - 30px);
    padding: 30px;
    background-color: #655c25;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox::after {
    background-color: rgba(126, 111, 29, 0.2);
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-h3 {
    margin-top: 0px;
    font-size: 17px;
    font-weight: 700;
    line-height: 26px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f4b2e5;
    z-index: 500;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(1), .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(2), .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(2) br {
    display: none;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(3) span {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #f4b2e5;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p span {
    color: #d4e458;
  }
  .section6 .sec__wrap::after {
    background-color: rgba(52, 61, 69, 0.1);
  }
  .section6 .sec__wrap .sec6-bg-left {
    width: calc(50% + 200px);
    background-color: rgba(52, 61, 69, 0.5);
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    padding: 7px 15px;
    background-color: #627d96;
    -webkit-transform: rotate(90deg) translateX(0%);
            transform: rotate(90deg) translateX(0%);
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox {
    width: calc(100% - 40px);
    padding: 30px;
    background-color: #627d96;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(64, 79, 93, 0.2);
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-h3 {
    margin-top: 10px;
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f9ca9c;
    z-index: 500;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(2), .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(4), .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(4) {
    margin-top: 10px;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(2) br {
    display: none;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p span {
    color: #d8e039;
  }
  .section7 .sec__wrap::after {
    background-color: rgba(26, 28, 35, 0.1);
  }
  .section7 .sec__wrap .sec7-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(34, 28, 47, 0.5);
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    padding: 7px 15px;
    background-color: #7d6d99;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox {
    width: calc(100% - 30px);
    padding: 30px;
    background-color: #7d6d99;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox::after {
    background-color: rgba(108, 100, 123, 0.2);
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-h3 {
    margin-top: 10px;
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f4b2e5;
    z-index: 500;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(2) {
    margin-top: 10px;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(2) {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #ffc5db;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(2) span {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #ffc5db;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p span {
    color: #f9f38c;
  }
  .section8 .sec__wrap::after {
    background-color: rgba(161, 143, 123, 0.1);
  }
  .section8 .sec__wrap .sec8-bg-left {
    width: calc(50% + 200px);
    background-color: rgba(47, 43, 39, 0.5);
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    right: -45px;
    padding: 7px 15px;
    background-color: #9c8f82;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox {
    width: calc(100% - 40px);
    padding: 30px;
    background-color: #9c8f82;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(91, 86, 80, 0.2);
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-h3 {
    margin-top: 10px;
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f9ca9c;
    z-index: 500;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(2), .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(4), .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(4), .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(5) {
    margin-top: 10px;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p span {
    color: #c7d600;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(5) span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
  }
  .section9 .sec__wrap::after {
    background-color: rgba(199, 214, 0, 0.1);
  }
  .section9 .sec__wrap .sec9-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(58, 60, 33, 0.5);
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    left: -63px;
    padding: 7px 15px;
    background-color: #858400;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox {
    width: calc(100% - 30px);
    padding: 30px;
    background-color: #858400;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox::after {
    background-color: rgba(148, 152, 0, 0.2);
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f6ff00;
    z-index: 500;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-h3 br {
    display: none;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p:nth-of-type(2) {
    margin-top: 10px;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p span {
    color: #56f5e1;
  }
  .section10 .sec__wrap::after {
    background-color: rgba(236, 101, 4, 0.1);
  }
  .section10 .sec__wrap .sec10-bg-left {
    width: calc(50% + 200px);
    background-color: rgba(55, 28, 9, 0.5);
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    right: -65px;
    padding: 7px 15px;
    background-color: #933e00;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox {
    width: calc(100% - 40px);
    padding: 30px;
    background-color: #933e00;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(53, 24, 2, 0.2);
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-h3 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #facb00;
    z-index: 500;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-h3 br {
    display: none;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(2), .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(3) {
    margin-top: 5px;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(2) {
    color: #bedb96;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p span {
    color: #c7d600;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(4) {
    margin-top: 10px;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(4) span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #facb00;
  }
  .section11 .sec__wrap::after {
    background-color: rgba(179, 189, 146, 0.1);
  }
  .section11 .sec__wrap .sec11-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(67, 75, 41, 0.5);
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    left: -80px;
    padding: 7px 15px;
    background-color: #858400;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox {
    width: calc(100% - 30px);
    padding: 30px;
    background-color: #858400;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox::after {
    background-color: rgba(150, 161, 110, 0.2);
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f6ff00;
    z-index: 500;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p:nth-of-type(2), .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p span {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #f8c093;
  }
  .section12 .sec__wrap::after {
    background-color: rgba(127, 184, 191, 0.1);
  }
  .section12 .sec__wrap .sec12-bg-left {
    width: calc(50% + 200px);
    background-color: rgba(80, 94, 108, 0.5);
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    right: -40px;
    padding: 7px 15px;
    background-color: #808c96;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox {
    width: calc(100% - 40px);
    padding: 30px;
    background-color: #808c96;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(128, 140, 150, 0.2);
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #facb00;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(2), .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(1) span, .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(2) span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #fef1a2;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(4) {
    margin-top: 10px;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(4) span {
    color: #c8e2ea;
  }
  .section13 .sec__wrap::after {
    background-color: rgba(116, 200, 216, 0.1);
  }
  .section13 .sec__wrap .sec13-bg-right {
    width: calc(50% + 200px);
    background-color: rgba(0, 99, 111, 0.5);
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    left: -55px;
    padding: 7px 15px;
    background-color: #0089a3;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox {
    width: calc(100% - 30px);
    padding: 30px;
    background-color: #0089a3;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox::after {
    background-color: rgba(0, 140, 166, 0.2);
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f6ff00;
    z-index: 500;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(2), .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(3), .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(4), .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(5) {
    margin-top: 10px;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p span {
    color: #fff352;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(3) span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #f3d4e5;
  }
  .section14 .sec__wrap {
    z-index: 0;
    padding-top: 50px;
  }
  .section14 .sec__wrap .map-container {
    width: 100%;
    height: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 20px 0 20px;
  }
  .section14 .sec__wrap .map-container .titBx {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .section14 .sec__wrap .map-container .titBx h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #17181a;
    text-align: left;
    margin-bottom: 20px;
  }
  .section14 .sec__wrap .map-container .titBx h3::after {
    position: absolute;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    width: 400px;
    height: 1px;
    margin-top: 5px;
    background-color: #ced2d8;
  }
  .section14 .sec__wrap .map-container .addrBx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    padding-left: 20px;
    padding-top: 10px;
  }
  .section14 .sec__wrap .map-container .addrBx p {
    margin: 0;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #17181a;
    text-align: left;
    border-bottom: 1px dashed #8e9298;
  }
  .section14 .sec__wrap .map-container .kakaoMap {
    width: 100%;
    height: 200px;
  }
  .section14 .sec__wrap .map-container .kakaoMap a {
    height: 200px;
  }
  .section14 .sec__wrap .map-container .kakaoMap a .root_daum_roughmap.root_daum_roughmap_landing {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
}

@media (max-width: 575.99px) and (min-width: 420px) {
  .sec {
    overflow: hidden;
    height: 100vh;
  }
  .sec a.mouseScroll {
    z-index: 5000;
    position: absolute;
    left: 20px;
    width: calc(28px * 0.6);
    height: calc(78px * 0.6);
    margin-left: 0px;
    bottom: 20px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    -webkit-animation-name: mouse;
            animation-name: mouse;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
  .sec__wrap {
    z-index: 0;
    width: 100%;
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .sec__wrap::after {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .sec__wrap .harfOver-bg-right {
    z-index: 50;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    padding-left: 40px;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-right .texBox {
    overflow: hidden;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 50%;
    -webkit-transform: translate(110%, -50%);
            transform: translate(110%, -50%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-left {
    z-index: 50;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-left .texBox {
    z-index: 500;
    position: absolute;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    top: 50%;
    background-color: #cec8d8;
    -webkit-transform: translate(-110%, -50%);
            transform: translate(-110%, -50%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-left .texBox::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-left .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section1 .sec__wrap::after {
    background-color: rgba(161, 143, 123, 0.1);
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .section1 .sec__wrap .sec1-bg-right {
    width: 100%;
    background-color: rgba(47, 43, 39, 0.5);
  }
  .section1 .sec__wrap .sec1-bg-right .texBox {
    width: 100%;
    padding: 30px;
    background-color: #5b5650;
  }
  .section1 .sec__wrap .sec1-bg-right .texBox::after {
    z-index: 0;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  .section1 .sec__wrap .sec1-bg-right .texBox .boxLogo {
    width: calc(351px * 0.5);
    height: calc(129px * 0.5);
    margin-bottom: 20px;
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
  .section1 .sec__wrap .sec1-bg-right .texBox .sec-1-h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 35px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #ffffff;
    margin-bottom: 20px;
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
  .section1 .sec__wrap .sec1-bg-right .texBox .sec-1-p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #fee7a4;
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
  .section2 .sec__wrap::after {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(99, 103, 113, 0.1);
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .section2 .sec__wrap .sec2-bg-left {
    width: 100%;
    background-color: rgba(99, 103, 113, 0.5);
  }
  .section2 .sec__wrap .sec2-bg-left .texBox {
    width: calc(100% - 40px);
    padding: 40px;
  }
  .section2 .sec__wrap .sec2-bg-left .texBox::after {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-h3 {
    z-index: 500;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #2f3033;
    margin-bottom: 10px;
    margin-top: 10px;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-h3 span {
    color: #00a0ca;
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-p {
    z-index: 500;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    font-family: "NanumSquareRound", sans-serif !important;
    text-align: left;
    color: #2f3033;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-p span {
    color: #00a0ca;
  }
  .section2.section2.show .sec__wrap::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left .texBox {
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left .texBox::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.5s;
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left .texBox .sec-2-h3 {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.3s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.3s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.3s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.3s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.3s;
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left .texBox .sec-2-p {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.7s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.7s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.7s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.7s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 1.7s;
  }
  .section3 .sec__wrap::after {
    background-color: rgba(26, 28, 35, 0.1);
  }
  .section3 .sec__wrap .sec3-bg-right {
    width: 100%;
    background-color: rgba(26, 28, 35, 0.5);
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    left: -45px;
    padding: 7px 15px;
    background-color: #1A1C23;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox {
    width: calc(100% - 30px);
    padding: 30px;
    background-color: #1a1c23;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox::after {
    background-color: rgba(0, 0, 0, 0.2);
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #91ded1;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(2), .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(4) {
    margin-top: 10px;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(2) br {
    display: none;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(4) span {
    font-size: 16px;
    color: #91ded1;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(4) br {
    display: none;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p span {
    color: #f8ef8f;
  }
  .section4 .sec__wrap::after {
    background-color: rgba(4, 25, 27, 0.1);
  }
  .section4 .sec__wrap .sec4-bg-left {
    width: 100%;
    background-color: rgba(4, 25, 27, 0.5);
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    right: -60px;
    padding: 7px 15px;
    background-color: #107279;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox {
    width: calc(100% - 40px);
    padding: 30px;
    background-color: #107279;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(45, 146, 153, 0.2);
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f9ca9c;
    z-index: 500;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(2), .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(4) {
    margin-top: 10px;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(3) br {
    display: none;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p span {
    color: #ffda53;
  }
  .section5 .sec__wrap::after {
    background-color: rgba(26, 28, 35, 0.1);
  }
  .section5 .sec__wrap .sec5-bg-right {
    width: 100%;
    background-color: rgba(26, 28, 35, 0.5);
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    left: -76px;
    padding: 7px 15px;
    background-color: #655c25;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox {
    width: calc(100% - 30px);
    padding: 30px;
    background-color: #655c25;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox::after {
    background-color: rgba(126, 111, 29, 0.2);
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-h3 {
    margin-top: 0px;
    font-size: 17px;
    font-weight: 700;
    line-height: 26px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f4b2e5;
    z-index: 500;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(1), .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(2), .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(1) br, .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(2) br {
    display: none;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(3) span {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #f4b2e5;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p span {
    color: #d4e458;
  }
  .section6 .sec__wrap::after {
    background-color: rgba(52, 61, 69, 0.1);
  }
  .section6 .sec__wrap .sec6-bg-left {
    width: 100%;
    background-color: rgba(52, 61, 69, 0.5);
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    padding: 7px 15px;
    background-color: #627d96;
    -webkit-transform: rotate(90deg) translateX(0%);
            transform: rotate(90deg) translateX(0%);
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox {
    width: calc(100% - 40px);
    padding: 30px;
    background-color: #627d96;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(64, 79, 93, 0.2);
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-h3 {
    margin-top: 10px;
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f9ca9c;
    z-index: 500;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(2), .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(4), .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(4) {
    margin-top: 10px;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(2) br {
    display: none;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p span {
    color: #d8e039;
  }
  .section7 .sec__wrap::after {
    background-color: rgba(26, 28, 35, 0.1);
  }
  .section7 .sec__wrap .sec7-bg-right {
    width: 100%;
    background-color: rgba(34, 28, 47, 0.5);
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    padding: 7px 15px;
    background-color: #7d6d99;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox {
    width: calc(100% - 30px);
    padding: 30px;
    background-color: #7d6d99;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox::after {
    background-color: rgba(108, 100, 123, 0.2);
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-h3 {
    margin-top: 10px;
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f4b2e5;
    z-index: 500;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(2) {
    margin-top: 10px;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(2) {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #ffc5db;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(2) span {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #ffc5db;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p span {
    color: #f9f38c;
  }
  .section8 .sec__wrap::after {
    background-color: rgba(161, 143, 123, 0.1);
  }
  .section8 .sec__wrap .sec8-bg-left {
    width: 100%;
    background-color: rgba(47, 43, 39, 0.5);
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    right: -45px;
    padding: 7px 15px;
    background-color: #9c8f82;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox {
    width: calc(100% - 40px);
    padding: 30px;
    background-color: #9c8f82;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(91, 86, 80, 0.2);
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-h3 {
    margin-top: 10px;
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f9ca9c;
    z-index: 500;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(2), .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(4), .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(4), .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(5) {
    margin-top: 10px;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p span {
    color: #c7d600;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(5) span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
  }
  .section9 .sec__wrap::after {
    background-color: rgba(199, 214, 0, 0.1);
  }
  .section9 .sec__wrap .sec9-bg-right {
    width: 100%;
    background-color: rgba(58, 60, 33, 0.5);
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    left: -63px;
    padding: 7px 15px;
    background-color: #858400;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox {
    width: calc(100% - 30px);
    padding: 30px;
    background-color: #858400;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox::after {
    background-color: rgba(148, 152, 0, 0.2);
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f6ff00;
    z-index: 500;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-h3 br {
    display: none;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p:nth-of-type(2) {
    margin-top: 10px;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p span {
    color: #56f5e1;
  }
  .section10 .sec__wrap::after {
    background-color: rgba(236, 101, 4, 0.1);
  }
  .section10 .sec__wrap .sec10-bg-left {
    width: 100%;
    background-color: rgba(55, 28, 9, 0.5);
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    right: -65px;
    padding: 7px 15px;
    background-color: #933e00;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox {
    width: calc(100% - 40px);
    padding: 30px;
    background-color: #933e00;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(53, 24, 2, 0.2);
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-h3 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #facb00;
    z-index: 500;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-h3 br {
    display: none;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(2), .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(3) {
    margin-top: 5px;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(2) {
    color: #bedb96;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p span {
    color: #c7d600;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(4) {
    margin-top: 10px;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(4) span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #facb00;
  }
  .section11 .sec__wrap::after {
    background-color: rgba(179, 189, 146, 0.1);
  }
  .section11 .sec__wrap .sec11-bg-right {
    width: 100%;
    background-color: rgba(67, 75, 41, 0.5);
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    left: -80px;
    padding: 7px 15px;
    background-color: #858400;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox {
    width: calc(100% - 30px);
    padding: 30px;
    background-color: #858400;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox::after {
    background-color: rgba(150, 161, 110, 0.2);
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f6ff00;
    z-index: 500;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p:nth-of-type(2), .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p span {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #f8c093;
  }
  .section12 .sec__wrap::after {
    background-color: rgba(127, 184, 191, 0.1);
  }
  .section12 .sec__wrap .sec12-bg-left {
    width: 100%;
    background-color: rgba(80, 94, 108, 0.5);
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    right: -40px;
    padding: 7px 15px;
    background-color: #808c96;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox {
    width: calc(100% - 40px);
    padding: 30px;
    background-color: #808c96;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(128, 140, 150, 0.2);
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #facb00;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(2), .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(1) span, .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(2) span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #fef1a2;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(4) {
    margin-top: 10px;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(4) span {
    color: #c8e2ea;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(4) br {
    display: none;
  }
  .section13 .sec__wrap::after {
    background-color: rgba(116, 200, 216, 0.1);
  }
  .section13 .sec__wrap .sec13-bg-right {
    width: 100%;
    background-color: rgba(0, 99, 111, 0.5);
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    left: -55px;
    padding: 7px 15px;
    background-color: #0089a3;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox {
    width: calc(100% - 30px);
    padding: 30px;
    background-color: #0089a3;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox::after {
    background-color: rgba(0, 140, 166, 0.2);
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f6ff00;
    z-index: 500;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(2), .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(3), .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(4), .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(5) {
    margin-top: 10px;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p span {
    color: #fff352;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(3) span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #f3d4e5;
  }
  .section14 .sec__wrap {
    z-index: 0;
    padding-top: 50px;
  }
  .section14 .sec__wrap .map-container {
    width: 100%;
    height: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 20px 0 20px;
  }
  .section14 .sec__wrap .map-container .titBx {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .section14 .sec__wrap .map-container .titBx h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #17181a;
    text-align: left;
    margin-bottom: 20px;
  }
  .section14 .sec__wrap .map-container .titBx h3::after {
    position: absolute;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    width: 400px;
    height: 1px;
    margin-top: 5px;
    background-color: #ced2d8;
  }
  .section14 .sec__wrap .map-container .addrBx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    padding-left: 20px;
    padding-top: 10px;
  }
  .section14 .sec__wrap .map-container .addrBx p {
    margin: 0;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #17181a;
    text-align: left;
    border-bottom: 1px dashed #8e9298;
  }
  .section14 .sec__wrap .map-container .kakaoMap {
    width: 100%;
    height: 200px;
  }
  .section14 .sec__wrap .map-container .kakaoMap a {
    height: 200px;
  }
  .section14 .sec__wrap .map-container .kakaoMap a .root_daum_roughmap.root_daum_roughmap_landing {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
}

@media (max-width: 419.99px) {
  .sec {
    overflow: hidden;
    height: 100vh;
  }
  .sec a.mouseScroll {
    z-index: 5000;
    position: absolute;
    left: 20px;
    width: calc(28px * 0.45);
    height: calc(78px * 0.45);
    margin-left: 0px;
    bottom: 20px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    -webkit-animation-name: mouse;
            animation-name: mouse;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
  .sec__wrap {
    z-index: 0;
    width: 100%;
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .sec__wrap::after {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .sec__wrap .harfOver-bg-right {
    z-index: 50;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    padding-left: 40px;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-right .texBox {
    overflow: hidden;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 50%;
    -webkit-transform: translate(110%, -50%);
            transform: translate(110%, -50%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-left {
    z-index: 50;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-left .texBox {
    z-index: 500;
    position: absolute;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    top: 50%;
    background-color: #cec8d8;
    -webkit-transform: translate(-110%, -50%);
            transform: translate(-110%, -50%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-left .texBox::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .sec__wrap .harfOver-bg-left .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section1 .sec__wrap::after {
    background-color: rgba(161, 143, 123, 0.1);
    -webkit-transform: translateX(110%);
            transform: translateX(110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .section1 .sec__wrap .sec1-bg-right {
    width: 100%;
    background-color: rgba(47, 43, 39, 0.5);
  }
  .section1 .sec__wrap .sec1-bg-right .texBox {
    width: 100%;
    padding: 30px 0 30px 20px;
    background-color: #5b5650;
  }
  .section1 .sec__wrap .sec1-bg-right .texBox::after {
    z-index: 0;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  .section1 .sec__wrap .sec1-bg-right .texBox .boxLogo {
    width: calc(351px * 0.35);
    height: calc(129px * 0.35);
    margin-bottom: 20px;
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
  .section1 .sec__wrap .sec1-bg-right .texBox .sec-1-h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #ffffff;
    margin-bottom: 20px;
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
  .section1 .sec__wrap .sec1-bg-right .texBox .sec-1-p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #fee7a4;
    -webkit-transform: translateX(-150%);
            transform: translateX(-150%);
  }
  .section2 .sec__wrap::after {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(99, 103, 113, 0.1);
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .section2 .sec__wrap .sec2-bg-left {
    width: 100%;
    background-color: rgba(99, 103, 113, 0.5);
  }
  .section2 .sec__wrap .sec2-bg-left .texBox {
    width: calc(100% - 40px);
    padding: 30px 20px;
  }
  .section2 .sec__wrap .sec2-bg-left .texBox::after {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-h3 {
    z-index: 500;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #2f3033;
    margin-bottom: 10px;
    margin-top: 10px;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-h3 span {
    color: #00a0ca;
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-p {
    z-index: 500;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    font-family: "NanumSquareRound", sans-serif !important;
    text-align: left;
    color: #2f3033;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1), -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1);
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-p:nth-of-type(2) br {
    display: none;
  }
  .section2 .sec__wrap .sec2-bg-left .texBox .texBox--content .sec-2-p span {
    color: #00a0ca;
  }
  .section2.section2.show .sec__wrap::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left .texBox {
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left .texBox::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.5s;
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left .texBox .sec-2-h3 {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  }
  .section2.section2.show .sec__wrap .harfOver-bg-left .texBox .sec-2-p {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
    transition: -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
    transition: transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s, -webkit-transform 1s cubic-bezier(0.05, 0.68, 0.02, 1) 0.9s;
  }
  .section3 .sec__wrap::after {
    background-color: rgba(26, 28, 35, 0.1);
  }
  .section3 .sec__wrap .sec3-bg-right {
    width: 100%;
    background-color: rgba(26, 28, 35, 0.5);
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    left: -45px;
    padding: 7px 15px;
    background-color: #1A1C23;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox {
    width: calc(100% - 30px);
    padding: 30px 20px;
    background-color: #1a1c23;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox::after {
    background-color: rgba(0, 0, 0, 0.2);
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #91ded1;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(2), .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(4) {
    margin-top: 10px;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(2) br {
    display: none;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(4) span {
    font-size: 14px;
    color: #91ded1;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p:nth-of-type(4) br {
    display: none;
  }
  .section3 .sec__wrap .sec3-bg-right .sec3-texBox .texBox--content .sec-3-p span {
    color: #f8ef8f;
  }
  .section4 .sec__wrap::after {
    background-color: rgba(4, 25, 27, 0.1);
  }
  .section4 .sec__wrap .sec4-bg-left {
    width: 100%;
    background-color: rgba(4, 25, 27, 0.5);
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    right: -60px;
    padding: 7px 15px;
    background-color: #107279;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox {
    width: calc(100% - 40px);
    padding: 30px 20px;
    background-color: #107279;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(45, 146, 153, 0.2);
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f9ca9c;
    z-index: 500;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-h3 br {
    display: none;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(2), .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(4) {
    margin-top: 10px;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p:nth-of-type(3) br {
    display: none;
  }
  .section4 .sec__wrap .sec4-bg-left .sec4-texBox .texBox--content .sec-4-p span {
    color: #ffda53;
  }
  .section5 .sec__wrap::after {
    background-color: rgba(26, 28, 35, 0.1);
  }
  .section5 .sec__wrap .sec5-bg-right {
    width: 100%;
    background-color: rgba(26, 28, 35, 0.5);
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    left: -76px;
    padding: 7px 15px;
    background-color: #655c25;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox {
    width: calc(100% - 30px);
    padding: 30px 20px;
    background-color: #655c25;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox::after {
    background-color: rgba(126, 111, 29, 0.2);
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-h3 {
    margin-top: 0px;
    font-size: 17px;
    font-weight: 700;
    line-height: 26px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f4b2e5;
    z-index: 500;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(1), .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(2), .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(1) br, .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(2) br {
    display: none;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p:nth-of-type(3) span {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #f4b2e5;
  }
  .section5 .sec__wrap .sec5-bg-right .sec5-texBox .texBox--content .sec-5-p span {
    color: #d4e458;
  }
  .section6 .sec__wrap::after {
    background-color: rgba(52, 61, 69, 0.1);
  }
  .section6 .sec__wrap .sec6-bg-left {
    width: 100%;
    background-color: rgba(52, 61, 69, 0.5);
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    padding: 7px 15px;
    background-color: #627d96;
    -webkit-transform: rotate(90deg) translateX(0%);
            transform: rotate(90deg) translateX(0%);
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox {
    width: calc(100% - 40px);
    padding: 30px 20px;
    background-color: #627d96;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(64, 79, 93, 0.2);
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-h3 {
    margin-top: 10px;
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f9ca9c;
    z-index: 500;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(2), .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(4), .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(4) {
    margin-top: 10px;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(2) br {
    display: none;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p:nth-of-type(3) br {
    display: none;
  }
  .section6 .sec__wrap .sec6-bg-left .sec6-texBox .texBox--content .sec-6-p span {
    color: #d8e039;
  }
  .section7 .sec__wrap::after {
    background-color: rgba(26, 28, 35, 0.1);
  }
  .section7 .sec__wrap .sec7-bg-right {
    width: 100%;
    background-color: rgba(34, 28, 47, 0.5);
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    padding: 7px 15px;
    background-color: #7d6d99;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox {
    width: calc(100% - 30px);
    padding: 30px 20px;
    background-color: #7d6d99;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox::after {
    background-color: rgba(108, 100, 123, 0.2);
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-h3 {
    margin-top: 10px;
    font-size: 26px;
    font-weight: 700;
    line-height: 34px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f4b2e5;
    z-index: 500;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(2) {
    margin-top: 10px;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(2) {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #ffc5db;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(2) span {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #ffc5db;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p:nth-of-type(2) br:nth-of-type(2) {
    display: none;
  }
  .section7 .sec__wrap .sec7-bg-right .sec7-texBox .texBox--content .sec-7-p span {
    color: #f9f38c;
  }
  .section8 .sec__wrap::after {
    background-color: rgba(161, 143, 123, 0.1);
  }
  .section8 .sec__wrap .sec8-bg-left {
    width: 100%;
    background-color: rgba(47, 43, 39, 0.5);
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    right: -45px;
    padding: 7px 15px;
    background-color: #9c8f82;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox {
    width: calc(100% - 40px);
    padding: 30px 20px;
    background-color: #9c8f82;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(91, 86, 80, 0.2);
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-h3 {
    margin-top: 10px;
    font-size: 21px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f9ca9c;
    z-index: 500;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(2), .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(4), .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(4), .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(5) {
    margin-top: 10px;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p span {
    color: #c7d600;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(5) br {
    display: none;
  }
  .section8 .sec__wrap .sec8-bg-left .sec8-texBox .texBox--content .sec-8-p:nth-of-type(5) span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
  }
  .section9 .sec__wrap::after {
    background-color: rgba(199, 214, 0, 0.1);
  }
  .section9 .sec__wrap .sec9-bg-right {
    width: 100%;
    background-color: rgba(58, 60, 33, 0.5);
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    left: -63px;
    padding: 7px 15px;
    background-color: #858400;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox {
    width: calc(100% - 30px);
    padding: 30px 20px;
    background-color: #858400;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox::after {
    background-color: rgba(148, 152, 0, 0.2);
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f6ff00;
    z-index: 500;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-h3 br {
    display: none;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p:nth-of-type(2) {
    margin-top: 10px;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p:nth-of-type(2) br {
    display: none;
  }
  .section9 .sec__wrap .sec9-bg-right .sec9-texBox .texBox--content .sec-9-p span {
    color: #56f5e1;
  }
  .section10 .sec__wrap::after {
    background-color: rgba(236, 101, 4, 0.1);
  }
  .section10 .sec__wrap .sec10-bg-left {
    width: 100%;
    background-color: rgba(55, 28, 9, 0.5);
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    right: -65px;
    padding: 7px 15px;
    background-color: #933e00;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox {
    width: calc(100% - 40px);
    padding: 30px 20px;
    background-color: #933e00;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(53, 24, 2, 0.2);
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #facb00;
    z-index: 500;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-h3 br {
    display: none;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(2), .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(3) {
    margin-top: 5px;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(2) {
    color: #bedb96;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p span {
    color: #c7d600;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(4) {
    margin-top: 10px;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(4) br {
    display: none;
  }
  .section10 .sec__wrap .sec10-bg-left .sec10-texBox .texBox--content .sec-10-p:nth-of-type(4) span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #facb00;
  }
  .section11 .sec__wrap::after {
    background-color: rgba(179, 189, 146, 0.1);
  }
  .section11 .sec__wrap .sec11-bg-right {
    width: 100%;
    background-color: rgba(67, 75, 41, 0.5);
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    left: -80px;
    padding: 7px 15px;
    background-color: #858400;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox {
    width: calc(100% - 30px);
    padding: 30px 20px;
    background-color: #858400;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox::after {
    background-color: rgba(150, 161, 110, 0.2);
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f6ff00;
    z-index: 500;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p:nth-of-type(2), .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section11 .sec__wrap .sec11-bg-right .sec11-texBox .texBox--content .sec-11-p span {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #f8c093;
  }
  .section12 .sec__wrap::after {
    background-color: rgba(127, 184, 191, 0.1);
  }
  .section12 .sec__wrap .sec12-bg-left {
    width: 100%;
    background-color: rgba(80, 94, 108, 0.5);
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    right: -40px;
    padding: 7px 15px;
    background-color: #808c96;
    -webkit-transform: rotate(90deg) translateY(0%);
            transform: rotate(90deg) translateY(0%);
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox {
    width: calc(100% - 40px);
    padding: 30px 20px;
    background-color: #808c96;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox::after {
    width: calc(100% - 0px);
    background-color: rgba(128, 140, 150, 0.2);
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #facb00;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(2), .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(3) {
    margin-top: 10px;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(1) span, .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(2) span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #fef1a2;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(2) br:nth-of-type(2) {
    display: none;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(3) br {
    display: none;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(4) {
    margin-top: 10px;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(4) span {
    color: #c8e2ea;
  }
  .section12 .sec__wrap .sec12-bg-left .sec12-texBox .texBox--content .sec-12-p:nth-of-type(4) br {
    display: none;
  }
  .section13 .sec__wrap::after {
    background-color: rgba(116, 200, 216, 0.1);
  }
  .section13 .sec__wrap .sec13-bg-right {
    width: 100%;
    background-color: rgba(0, 99, 111, 0.5);
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox--pnText {
    position: absolute;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #ffffff;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    top: 50%;
    margin-top: -20px;
    left: -55px;
    padding: 7px 15px;
    background-color: #0089a3;
    -webkit-transform: rotate(90deg) translateY(-50%);
            transform: rotate(90deg) translateY(-50%);
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox {
    width: calc(100% - 30px);
    padding: 30px 20px;
    background-color: #0089a3;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox::after {
    background-color: rgba(0, 140, 166, 0.2);
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-h3 {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    text-align: left;
    color: #f6ff00;
    z-index: 500;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    text-align: left;
    color: #ffffff;
    z-index: 500;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(2), .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(3), .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(4), .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(5) {
    margin-top: 10px;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p span {
    color: #fff352;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(2) br, .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(4) br {
    display: none;
  }
  .section13 .sec__wrap .sec13-bg-right .sec13-texBox .texBox--content .sec-13-p:nth-of-type(3) span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Nanum Myeongjo", serif !important;
    color: #f3d4e5;
  }
  .section14 .sec__wrap {
    z-index: 0;
    padding-top: 0px;
    height: calc(100vh - 60px);
  }
  .section14 .sec__wrap .map-container {
    width: 100%;
    height: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 20px 0 20px;
  }
  .section14 .sec__wrap .map-container .titBx {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .section14 .sec__wrap .map-container .titBx h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #17181a;
    text-align: left;
    margin-bottom: 20px;
  }
  .section14 .sec__wrap .map-container .titBx h3::after {
    position: absolute;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    width: 400px;
    height: 1px;
    margin-top: 5px;
    background-color: #ced2d8;
  }
  .section14 .sec__wrap .map-container .addrBx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    padding-left: 0px;
    padding-top: 10px;
  }
  .section14 .sec__wrap .map-container .addrBx p {
    margin: 0;
    margin-top: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #17181a;
    text-align: left;
    border-bottom: 1px dashed #8e9298;
  }
  .section14 .sec__wrap .map-container .kakaoMap {
    width: 100%;
    height: 200px;
  }
  .section14 .sec__wrap .map-container .kakaoMap a {
    height: 200px;
  }
  .section14 .sec__wrap .map-container .kakaoMap a .root_daum_roughmap.root_daum_roughmap_landing {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
}

.footer {
  background-color: #444652;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 0;
  height: auto;
}

.footer__wrap {
  background-color: #444652;
}

.footer__wrap .footerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0 20px;
}

.footer__wrap .footerBox img {
  width: calc(165px * 1);
  height: calc(78px * 1);
}

.footer__wrap .footerBox p {
  font-size: 14px;
  font-weight: 200;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
}

.footer__copy {
  padding: 20px 0;
  background-color: #2d3038;
}

.footer__copy p {
  margin: 0;
  font-size: 14px;
  font-weight: 200;
  line-height: 14px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .footer {
    background-color: #444652;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    padding: 0;
  }
  .footer__wrap {
    background-color: #444652;
  }
  .footer__wrap .footerBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0 20px;
  }
  .footer__wrap .footerBox img {
    width: calc(165px * 0.8);
    height: calc(78px * 0.8);
  }
  .footer__wrap .footerBox p {
    font-size: 14px;
    font-weight: 200;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
  }
  .footer__copy {
    padding: 20px 0;
    background-color: #2d3038;
  }
  .footer__copy p {
    margin: 0;
    font-size: 14px;
    font-weight: 200;
    line-height: 14px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .footer {
    background-color: #444652;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    padding: 0;
  }
  .footer__wrap {
    background-color: #444652;
  }
  .footer__wrap .footerBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0 20px;
  }
  .footer__wrap .footerBox img {
    width: calc(165px * 0.6);
    height: calc(78px * 0.6);
  }
  .footer__wrap .footerBox p {
    font-size: 13px;
    font-weight: 200;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
  }
  .footer__copy {
    padding: 15px 0;
    background-color: #2d3038;
  }
  .footer__copy p {
    margin: 0;
    font-size: 12px;
    font-weight: 200;
    line-height: 14px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
  }
}

@media (max-width: 575.99px) {
  .footer {
    background-color: #444652;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    padding: 0;
  }
  .footer__wrap {
    background-color: #444652;
  }
  .footer__wrap .footerBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0 20px;
  }
  .footer__wrap .footerBox img {
    width: calc(165px * 0.6);
    height: calc(78px * 0.6);
  }
  .footer__wrap .footerBox p {
    font-size: 13px;
    font-weight: 200;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
  }
  .footer__copy {
    padding: 15px 0;
    background-color: #2d3038;
  }
  .footer__copy p {
    margin: 0;
    font-size: 12px;
    font-weight: 200;
    line-height: 14px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
  }
}

section.loaded {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

section.loaded:nth-of-type(1) {
  background-image: url("../imgs/sec-1.jpg");
}

section.loaded:nth-of-type(2) {
  background-image: url("../imgs/sec-2.jpg");
}

section.loaded:nth-of-type(3) {
  background-image: url("../imgs/sec-3.jpg");
}

section.loaded:nth-of-type(4) {
  background-image: url("../imgs/sec-4.jpg");
}

section.loaded:nth-of-type(5) {
  background-image: url("../imgs/sec-5.jpg");
}

section.loaded:nth-of-type(6) {
  background-image: url("../imgs/sec-6.jpg");
}

section.loaded:nth-of-type(7) {
  background-image: url("../imgs/sec-7.jpg");
}

section.loaded:nth-of-type(8) {
  background-image: url("../imgs/sec-8.jpg");
}

section.loaded:nth-of-type(9) {
  background-image: url("../imgs/sec-9.jpg");
}

section.loaded:nth-of-type(10) {
  background-image: url("../imgs/sec-10.jpg");
}

section.loaded:nth-of-type(11) {
  background-image: url("../imgs/sec-11.jpg");
}

section.loaded:nth-of-type(12) {
  background-image: url("../imgs/sec-12.jpg");
}

section.loaded:nth-of-type(13) {
  background-image: url("../imgs/sec-13.jpg");
}
/*# sourceMappingURL=main.css.map */