@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=Frank+Ruhl+Libre:300,400,500,700");
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;
}

[class*="con-"] {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* 톱 버튼 */
.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 {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 15px;
  font-weight: 300;
}

/* 오버레이 */
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;
}

/* 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;
}

@-webkit-keyframes rightIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes rightIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.subVisu-sec {
  overflow: hidden;
  width: 100%;
  height: 450px;
  margin-top: 110px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: height 1s ease;
  transition: height 1s ease;
}

.subVisu-sec .harf-bg {
  position: relative;
  width: 200%;
  height: 100%;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: rgba(0, 0, 0, 0.7);
}

.subVisu-sec .harf-bg .texBox {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 50px;
}

.subVisu-sec .harf-bg .texBox h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  text-align: right;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  padding-bottom: 30px;
}

.subVisu-sec .harf-bg .texBox p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  text-align: right;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
}

.subVisu-sec .harf-bg .texBox p br:nth-of-type(2), .subVisu-sec .harf-bg .texBox p br:nth-of-type(4), .subVisu-sec .harf-bg .texBox p br:nth-of-type(6) {
  display: block;
}

.subVisu-sec .harf-bg .texBox p br:nth-of-type(1), .subVisu-sec .harf-bg .texBox p br:nth-of-type(3), .subVisu-sec .harf-bg .texBox p br:nth-of-type(5), .subVisu-sec .harf-bg .texBox p br:nth-of-type(7) {
  display: none;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .subVisu-sec {
    height: 350px;
    margin-top: 110px;
  }
  .subVisu-sec .harf-bg {
    position: relative;
    width: 200%;
    height: 100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    background-color: rgba(0, 0, 0, 0.7);
  }
  .subVisu-sec .harf-bg .texBox {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 50px;
  }
  .subVisu-sec .harf-bg .texBox h3 {
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: right;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
    padding-bottom: 30px;
  }
  .subVisu-sec .harf-bg .texBox p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: right;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
  .subVisu-sec .harf-bg .texBox p br:nth-of-type(2), .subVisu-sec .harf-bg .texBox p br:nth-of-type(4), .subVisu-sec .harf-bg .texBox p br:nth-of-type(6) {
    display: block;
  }
  .subVisu-sec .harf-bg .texBox p br:nth-of-type(1), .subVisu-sec .harf-bg .texBox p br:nth-of-type(3), .subVisu-sec .harf-bg .texBox p br:nth-of-type(5), .subVisu-sec .harf-bg .texBox p br:nth-of-type(7) {
    display: none;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .subVisu-sec {
    height: 280px;
    margin-top: 80px;
  }
  .subVisu-sec .harf-bg {
    position: relative;
    width: 200%;
    height: 100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    background-color: rgba(0, 0, 0, 0.7);
  }
  .subVisu-sec .harf-bg .texBox {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 20px;
  }
  .subVisu-sec .harf-bg .texBox h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: right;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
    padding-bottom: 30px;
  }
  .subVisu-sec .harf-bg .texBox p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: right;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
  .subVisu-sec .harf-bg .texBox p br:nth-of-type(2), .subVisu-sec .harf-bg .texBox p br:nth-of-type(4), .subVisu-sec .harf-bg .texBox p br:nth-of-type(6) {
    display: block;
  }
  .subVisu-sec .harf-bg .texBox p br:nth-of-type(1), .subVisu-sec .harf-bg .texBox p br:nth-of-type(3), .subVisu-sec .harf-bg .texBox p br:nth-of-type(5), .subVisu-sec .harf-bg .texBox p br:nth-of-type(7) {
    display: none;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .subVisu-sec {
    height: 230px;
    margin-top: 80px;
  }
  .subVisu-sec .harf-bg {
    position: relative;
    width: 200%;
    height: 100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    background-color: rgba(0, 0, 0, 0.7);
  }
  .subVisu-sec .harf-bg .texBox {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-right: 20px;
  }
  .subVisu-sec .harf-bg .texBox h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: right;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
    padding-bottom: 20px;
  }
  .subVisu-sec .harf-bg .texBox p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: right;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
  .subVisu-sec .harf-bg .texBox p br:nth-of-type(2), .subVisu-sec .harf-bg .texBox p br:nth-of-type(4), .subVisu-sec .harf-bg .texBox p br:nth-of-type(6) {
    display: block;
  }
  .subVisu-sec .harf-bg .texBox p br:nth-of-type(3), .subVisu-sec .harf-bg .texBox p br:nth-of-type(5), .subVisu-sec .harf-bg .texBox p br:nth-of-type(7) {
    display: block;
  }
  .subVisu-sec .harf-bg .texBox p br:nth-of-type(1) {
    display: none;
  }
}

@media (max-width: 575.99px) and (min-width: 420px) {
  .subVisu-sec {
    height: 250px;
    margin-top: 80px;
  }
  .subVisu-sec .harf-bg {
    position: relative;
    width: 200%;
    height: 100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    background-color: rgba(0, 0, 0, 0.7);
  }
  .subVisu-sec .harf-bg .texBox {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-right: 20px;
  }
  .subVisu-sec .harf-bg .texBox h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: right;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
    padding-bottom: 20px;
  }
  .subVisu-sec .harf-bg .texBox p {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: right;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
  .subVisu-sec .harf-bg .texBox p br:nth-of-type(2), .subVisu-sec .harf-bg .texBox p br:nth-of-type(4), .subVisu-sec .harf-bg .texBox p br:nth-of-type(6) {
    display: block;
  }
  .subVisu-sec .harf-bg .texBox p br:nth-of-type(1), .subVisu-sec .harf-bg .texBox p br:nth-of-type(3), .subVisu-sec .harf-bg .texBox p br:nth-of-type(5), .subVisu-sec .harf-bg .texBox p br:nth-of-type(7) {
    display: block;
  }
}

@media (max-width: 419.99px) {
  .subVisu-sec {
    height: 170px;
    margin-top: 80px;
  }
  .subVisu-sec .harf-bg {
    position: relative;
    width: 400%;
    height: 100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    background-color: rgba(0, 0, 0, 0.7);
  }
  .subVisu-sec .harf-bg .texBox {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-right: 10px;
  }
  .subVisu-sec .harf-bg .texBox h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: right;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
    padding-bottom: 20px;
  }
  .subVisu-sec .harf-bg .texBox p {
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: right;
    -webkit-transform: translateX(150%);
            transform: translateX(150%);
  }
  .subVisu-sec .harf-bg .texBox p br:nth-of-type(2), .subVisu-sec .harf-bg .texBox p br:nth-of-type(4), .subVisu-sec .harf-bg .texBox p br:nth-of-type(6) {
    display: block;
  }
  .subVisu-sec .harf-bg .texBox p br:nth-of-type(1), .subVisu-sec .harf-bg .texBox p br:nth-of-type(3), .subVisu-sec .harf-bg .texBox p br:nth-of-type(5), .subVisu-sec .harf-bg .texBox p br:nth-of-type(7) {
    display: none;
  }
}

::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #e8ebf1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #fa4545;
}

::-webkit-scrollbar-thumb:window-inactive {
  background: #fa4545;
}

* {
  scrollbar-arrow-color: #e8ebf1;
  scrollbar-face-color: #fa4545;
  scrollbar-track-color: #e8ebf1;
}

.logo-sec {
  width: 100%;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #000;
  z-index: 3000;
  position: fixed;
  top: 0px;
}

.logo-sec .con-logobox {
  padding-right: 0px;
}

.logo-sec .con-logobox .top-box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.logo-sec .con-logobox .top-box > a {
  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;
  padding: 0 20px;
  height: 100%;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 13px;
  font-weight: 300;
  line-height: 13px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.logo-sec .con-logobox .top-box > a span {
  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;
  width: 20px;
  height: 20px;
  margin-left: 7px;
  background-color: #d15252;
  font-size: 10px;
  font-weight: 300;
  line-height: 12px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}

@media (max-width: 1199.99px) {
  .logo-sec {
    padding: 0px 10px;
  }
}

@media (max-width: 419.99px) {
  .logo-sec {
    padding: 0px 10px;
    width: 100%;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #000;
    z-index: 3000;
    position: fixed;
    top: 0px;
  }
  .logo-sec .con-logobox {
    padding-right: 0px;
  }
  .logo-sec .con-logobox .top-box {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .logo-sec .con-logobox .top-box > a {
    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;
    padding: 0 10px;
    height: 100%;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 12px;
    font-weight: 300;
    line-height: 12px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .logo-sec .con-logobox .top-box > a span {
    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;
    width: 20px;
    height: 20px;
    margin-left: 7px;
    background-color: #d15252;
    font-size: 10px;
    font-weight: 300;
    line-height: 12px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
  }
}

header {
  position: fixed;
  z-index: 5000;
  top: 30px;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
}

header .nav {
  height: 80px;
  background-color: #fff;
  -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
}

header .nav::after {
  position: absolute;
  content: '';
  margin: 0;
  padding: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e1e3e5;
  display: none;
}

header .nav.bbAct::after {
  display: block;
}

header .nav ._con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 100%;
  width: 100%;
  opacity: 1;
  -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
}

header .nav ._con .logo {
  position: relative;
  width: 30%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0px;
  cursor: pointer;
  padding-top: 8px;
}

header .nav ._con .logo a > img {
  width: calc(282px * 1);
  height: calc(38px * 1);
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

header .nav ._con .menu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 70%;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 7000;
  height: 100%;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

header .nav ._con .menu ul {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .nav ._con .menu ul li {
  width: 19%;
}

header .nav ._con .menu ul li:nth-of-type(2) {
  width: 24%;
}

header .nav ._con .menu ul li a {
  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: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #02125b;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

header .nav ._con .menu ul li a:hover {
  background-color: #2f3033;
  color: #ffffff;
}

header .nav ._con .menu ul li a.active {
  background-color: #2f3033;
  color: #ffffff;
}

header .nav ._con .menu ul .li {
  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: 100%;
  height: 100%;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  cursor: pointer;
}

header .nav ._con .menu ul .li:hover {
  background-color: #2f3033;
  color: #ffffff;
}

header .nav ._con .menu ul#pcMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .nav ._con .menu ul#moMenu {
  display: none;
}

header .nav .moBt-btn {
  position: absolute;
  top: 0;
  right: 0px;
  padding-right: 30px;
  margin-right: 30px;
  width: 150px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  cursor: pointer;
}

header .nav .moBt-btn span {
  position: absolute;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

header .nav .moBt-btn span:nth-of-type(1) {
  position: absolute;
  content: '';
  margin: 0;
  padding: 0;
  width: 35px;
  height: 1px;
  margin-top: -8px;
  background-color: #2f3033;
}

header .nav .moBt-btn span:nth-of-type(2) {
  position: absolute;
  content: '';
  margin: 0;
  padding: 0;
  width: 20px;
  height: 2px;
  margin-top: 5px;
  background-color: #2f3033;
}

header .nav .moBt-btn.over span:nth-of-type(1) {
  width: 20px;
}

header .nav .moBt-btn.over span:nth-of-type(2) {
  width: 35px;
}

header .nav #spanLine {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #adafb3;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  header {
    position: fixed;
    z-index: 5000;
    top: 30px;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
    transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  }
  header .nav {
    height: 80px;
    background-color: #fff;
    -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
    transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  }
  header .nav::after {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e1e3e5;
    display: none;
  }
  header .nav.bbAct::after {
    display: block;
  }
  header .nav ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    height: 100%;
    width: 100%;
    opacity: 1;
    -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
    transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  }
  header .nav ._con .logo {
    position: relative;
    width: 20%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 10px;
    cursor: pointer;
    padding-top: 8px;
  }
  header .nav ._con .logo a > img {
    width: calc(282px * 0.65);
    height: calc(38px * 0.65);
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
  }
  header .nav ._con .menu {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 70%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 7000;
    height: 100%;
    margin-right: 9%;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
  }
  header .nav ._con .menu ul {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .nav ._con .menu ul li {
    width: 19%;
  }
  header .nav ._con .menu ul li:nth-of-type(2) {
    width: 24%;
  }
  header .nav ._con .menu ul li a {
    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: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #02125b;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
  }
  header .nav ._con .menu ul li a:hover {
    background-color: #2f3033;
    color: #ffffff;
  }
  header .nav ._con .menu ul li a.active {
    background-color: #2f3033;
    color: #ffffff;
  }
  header .nav ._con .menu ul .li {
    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: 100%;
    height: 100%;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
    cursor: pointer;
  }
  header .nav ._con .menu ul .li:hover {
    background-color: #2f3033;
    color: #ffffff;
  }
  header .nav ._con .menu ul#pcMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .nav ._con .menu ul#moMenu {
    display: none;
  }
  header .nav .moBt-btn {
    position: absolute;
    top: 0;
    right: 0px;
    padding-right: 30px;
    margin-right: 30px;
    width: 150px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    cursor: pointer;
  }
  header .nav .moBt-btn span {
    position: absolute;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  header .nav .moBt-btn span:nth-of-type(1) {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    width: 35px;
    height: 1px;
    margin-top: -8px;
    background-color: #2f3033;
  }
  header .nav .moBt-btn span:nth-of-type(2) {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    width: 20px;
    height: 2px;
    margin-top: 5px;
    background-color: #2f3033;
  }
  header .nav .moBt-btn.over span:nth-of-type(1) {
    width: 20px;
  }
  header .nav .moBt-btn.over span:nth-of-type(2) {
    width: 35px;
  }
  header .nav #spanLine {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #adafb3;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
}

@media (max-width: 992px) {
  header {
    position: fixed;
    z-index: 5000;
    top: 30px;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
    transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  }
  header .nav {
    height: 50px;
    background-color: #fff;
    -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
    transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  }
  header .nav::after {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e1e3e5;
    display: none;
  }
  header .nav.bbAct::after {
    display: block;
  }
  header .nav ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    height: 100%;
    width: 100%;
    opacity: 1;
    -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
    transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  }
  header .nav ._con .logo {
    position: relative;
    width: 50%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 20px;
    cursor: pointer;
    padding-top: 8px;
  }
  header .nav ._con .logo a > img {
    width: calc(282px * 0.8);
    height: calc(38px * 0.8);
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
  }
  header .nav ._con .menu {
    display: none;
  }
  header .nav .moBt-btn {
    position: absolute;
    top: 0;
    right: 0px;
    padding-right: 20px;
    margin-right: 0px;
    width: 150px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    cursor: pointer;
  }
  header .nav .moBt-btn span {
    position: absolute;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  header .nav .moBt-btn span:nth-of-type(1) {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    width: 35px;
    height: 1px;
    margin-top: -8px;
    background-color: #2f3033;
  }
  header .nav .moBt-btn span:nth-of-type(2) {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    width: 20px;
    height: 2px;
    margin-top: 5px;
    background-color: #2f3033;
  }
  header .nav .moBt-btn.over span:nth-of-type(1) {
    width: 20px;
  }
  header .nav .moBt-btn.over span:nth-of-type(2) {
    width: 35px;
  }
  header .nav #spanLine {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #adafb3;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
}

@media (max-width: 576px) {
  header {
    position: fixed;
    z-index: 5000;
    top: 30px;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
    transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  }
  header .nav {
    height: 50px;
    background-color: #fff;
    -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
    transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  }
  header .nav::after {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e1e3e5;
    display: none;
  }
  header .nav.bbAct::after {
    display: block;
  }
  header .nav ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    height: 100%;
    width: 100%;
    opacity: 1;
    -webkit-transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
    transition: all 1s cubic-bezier(0.22, 0.82, 0.32, 0.95);
  }
  header .nav ._con .logo {
    position: relative;
    width: 50%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 20px;
    cursor: pointer;
    padding-top: 7px;
  }
  header .nav ._con .logo a > img {
    width: calc(282px * 0.58);
    height: calc(38px * 0.6);
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
  }
  header .nav ._con .menu {
    display: none;
  }
  header .nav .moBt-btn {
    position: absolute;
    top: 0;
    right: 0px;
    padding-right: 20px;
    margin-right: 0px;
    width: 150px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    cursor: pointer;
  }
  header .nav .moBt-btn span {
    position: absolute;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  header .nav .moBt-btn span:nth-of-type(1) {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    width: 35px;
    height: 1px;
    margin-top: -8px;
    background-color: #2f3033;
  }
  header .nav .moBt-btn span:nth-of-type(2) {
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    width: 20px;
    height: 2px;
    margin-top: 5px;
    background-color: #2f3033;
  }
  header .nav .moBt-btn.over span:nth-of-type(1) {
    width: 20px;
  }
  header .nav .moBt-btn.over span:nth-of-type(2) {
    width: 35px;
  }
  header .nav #spanLine {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #adafb3;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
}

#subMenu {
  z-index: 4000;
  position: fixed;
  top: 110px;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-transform: translateY(-130%);
          transform: translateY(-130%);
}

#subMenu .subMenu-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#subMenu .subMenu-wrap ._con {
  padding: 0 100px;
}

#subMenu .subMenu-wrap ._con .backBt {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  height: 50px;
  margin-top: -60px;
  background-color: #2f3033;
  font-size: 16px;
  font-weight: 300;
  line-height: 50px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
}

#subMenu .subMenu-wrap ._con .backBt img {
  margin-right: 30px;
  width: calc(50px * 0.4);
  height: calc(50px * 0.4);
}

#subMenu .subMenu-wrap .menuBox {
  padding: 0;
}

#subMenu .subMenu-wrap .menuBox .subMenu--box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
}

#subMenu .subMenu-wrap .menuBox .subMenu--box .imgBx {
  width: 60%;
  height: 350px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#subMenu .subMenu-wrap .menuBox .subMenu--box .texBx {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px 50px 0 50px;
}

#subMenu .subMenu-wrap .menuBox .subMenu--box .texBx h3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 42px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  text-align: left;
  margin-bottom: 20px;
}

#subMenu .subMenu-wrap .menuBox .subMenu--box .texBx p {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  text-align: right;
  cursor: pointer;
  -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;
}

#subMenu .subMenu-wrap .menuBox .subMenu--box .texBx p::after {
  z-index: -1;
  position: absolute;
  content: '';
  margin: 0;
  padding: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2f3033;
  -webkit-transform: translateX(110%);
          transform: translateX(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;
}

#subMenu .subMenu-wrap .menuBox .subMenu--box .texBx p:hover {
  color: #ffffff;
}

#subMenu .subMenu-wrap .menuBox .subMenu--box .texBx p:hover::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  #subMenu .subMenu-wrap ._con {
    padding: 0 20px;
  }
  #subMenu .subMenu-wrap ._con .backBt {
    width: 200px;
    height: 50px;
    margin-top: -60px;
    font-size: 16px;
    font-weight: 300;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  #subMenu .subMenu-wrap ._con .backBt img {
    margin-right: 30px;
    width: calc(50px * 0.4);
    height: calc(50px * 0.4);
  }
  #subMenu .subMenu-wrap .menuBox {
    padding: 0 20px;
  }
  #subMenu .subMenu-wrap .menuBox .subMenu--box .imgBx {
    width: 50%;
    height: 330px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #subMenu .subMenu-wrap .menuBox .subMenu--box .texBx {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 50px 0 0 50px;
  }
  #subMenu .subMenu-wrap .menuBox .subMenu--box .texBx h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 42px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    margin-bottom: 20px;
  }
  #subMenu .subMenu-wrap .menuBox .subMenu--box .texBx p {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: right;
    cursor: pointer;
    -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;
  }
  #subMenu .subMenu-wrap .menuBox .subMenu--box .texBx p::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2f3033;
    -webkit-transform: translateX(110%);
            transform: translateX(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;
  }
  #subMenu .subMenu-wrap .menuBox .subMenu--box .texBx p:hover {
    color: #ffffff;
  }
  #subMenu .subMenu-wrap .menuBox .subMenu--box .texBx p:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

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

#mobMenu-box {
  overflow: hidden;
  z-index: 6000;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  -webkit-transform: translateY(110%);
          transform: translateY(110%);
}

.mobMenu-wrap {
  overflow: hidden;
  position: fixed;
  z-index: 6500;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
}

.mobMenu-wrap .mo-back-bt {
  position: absolute;
  z-index: 6100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  height: 50px;
  top: 30px;
  left: 30px;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
  background-color: #2f3033;
  font-size: 16px;
  font-weight: 300;
  line-height: 50px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
}

.mobMenu-wrap .mo-back-bt img {
  margin-right: 30px;
  width: calc(50px * 0.4);
  height: calc(50px * 0.4);
}

.mobMenu-wrap #mo-rightImg {
  overflow: hidden;
  position: absolute;
  width: auto;
  height: 100%;
  right: 0;
  top: 0;
  padding: 30px 30px 30px 0;
}

.mobMenu-wrap #mo-rightImg .rightImg-box {
  width: 450px;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translateX(120%);
          transform: translateX(120%);
}

.mobMenu-wrap #mobmenuBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  width: 100%;
  top: 50%;
  padding-left: 150px;
  -webkit-transform: translateY(-50%) translateX(-110%);
          transform: translateY(-50%) translateX(-110%);
}

.mobMenu-wrap #mobmenuBox .moMenu-UL {
  overflow: hidden;
  position: relative;
  width: 300px;
}

.mobMenu-wrap #mobmenuBox .moMenu-UL span {
  margin: 0;
  padding-left: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 50px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  text-align: left;
  -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;
  cursor: pointer;
}

.mobMenu-wrap #mobmenuBox .moMenu-UL span::after {
  z-index: -1;
  position: absolute;
  content: '';
  margin: 0;
  padding: 0;
  left: 0;
  top: 49px;
  width: 100%;
  height: 1px;
  background-color: #939599;
  -webkit-transform: translateX(-110%);
          transform: translateX(-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;
}

.mobMenu-wrap #mobmenuBox .moMenu-UL span:hover::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.mobMenu-wrap #mobmenuBox .moMenu-UL li {
  padding: 0;
  margin: 0;
  line-height: 0;
}

.mobMenu-wrap #mobmenuBox .moMenu-UL li a {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  text-align: left;
  -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;
}

.mobMenu-wrap #mobmenuBox .moMenu-UL li a::after {
  z-index: -1;
  position: absolute;
  content: '';
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  background-color: #2f3033;
  -webkit-transform: translateX(-110%);
          transform: translateX(-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;
}

.mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover {
  color: #ffffff;
}

.mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  #mobMenu-box {
    overflow: hidden;
    z-index: 6000;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    -webkit-transform: translateY(110%);
            transform: translateY(110%);
  }
  .mobMenu-wrap {
    overflow: hidden;
    position: fixed;
    z-index: 6500;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  .mobMenu-wrap .mo-back-bt {
    position: absolute;
    z-index: 6100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 200px;
    height: 50px;
    top: 30px;
    left: 30px;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    background-color: #2f3033;
    font-size: 16px;
    font-weight: 300;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
  }
  .mobMenu-wrap .mo-back-bt img {
    margin-right: 30px;
    width: calc(50px * 0.4);
    height: calc(50px * 0.4);
  }
  .mobMenu-wrap #mo-rightImg {
    overflow: hidden;
    position: absolute;
    width: 40%;
    height: 100%;
    right: 0;
    top: 0;
    padding: 30px 30px 30px 0;
  }
  .mobMenu-wrap #mo-rightImg .rightImg-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
  .mobMenu-wrap #mobmenuBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    width: 100%;
    top: 50%;
    padding-left: 30px;
    -webkit-transform: translateY(-50%) translateX(-110%);
            transform: translateY(-50%) translateX(-110%);
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL {
    overflow: hidden;
    position: relative;
    width: 300px;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span {
    margin: 0;
    padding-left: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    -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;
    cursor: pointer;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    left: 0;
    top: 49px;
    width: 100%;
    height: 1px;
    background-color: #939599;
    -webkit-transform: translateX(-110%);
            transform: translateX(-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;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li {
    padding: 0;
    margin: 0;
    line-height: 0;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    -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;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: #2f3033;
    -webkit-transform: translateX(-110%);
            transform: translateX(-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;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover {
    color: #ffffff;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  #mobMenu-box {
    overflow: hidden;
    z-index: 6000;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    -webkit-transform: translateY(110%);
            transform: translateY(110%);
  }
  .mobMenu-wrap {
    overflow: hidden;
    position: fixed;
    z-index: 6500;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  .mobMenu-wrap .mo-back-bt {
    position: absolute;
    z-index: 6100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 200px;
    height: 50px;
    top: 30px;
    left: 30px;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    background-color: #2f3033;
    font-size: 16px;
    font-weight: 300;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
  }
  .mobMenu-wrap .mo-back-bt img {
    margin-right: 30px;
    width: calc(50px * 0.4);
    height: calc(50px * 0.4);
  }
  .mobMenu-wrap #mo-rightImg {
    overflow: hidden;
    position: absolute;
    width: 40%;
    height: 100%;
    right: 0;
    top: 0;
    padding: 30px 30px 30px 0;
  }
  .mobMenu-wrap #mo-rightImg .rightImg-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
  .mobMenu-wrap #mobmenuBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    width: 100%;
    top: 50%;
    padding-left: 30px;
    -webkit-transform: translateY(-50%) translateX(-110%);
            transform: translateY(-50%) translateX(-110%);
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL {
    overflow: hidden;
    position: relative;
    width: 300px;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span {
    margin: 0;
    padding-left: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    -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;
    cursor: pointer;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    left: 0;
    top: 49px;
    width: 100%;
    height: 1px;
    background-color: #939599;
    -webkit-transform: translateX(-110%);
            transform: translateX(-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;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li {
    padding: 0;
    margin: 0;
    line-height: 0;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    -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;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: #2f3033;
    -webkit-transform: translateX(-110%);
            transform: translateX(-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;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover {
    color: #ffffff;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  #mobMenu-box {
    overflow: hidden;
    z-index: 6000;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    -webkit-transform: translateY(110%);
            transform: translateY(110%);
  }
  .mobMenu-wrap {
    overflow: hidden;
    position: fixed;
    z-index: 6500;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  .mobMenu-wrap .mo-back-bt {
    position: absolute;
    z-index: 6100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 200px;
    height: 50px;
    top: 30px;
    left: 30px;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    background-color: #2f3033;
    font-size: 16px;
    font-weight: 300;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
  }
  .mobMenu-wrap .mo-back-bt img {
    margin-right: 30px;
    width: calc(50px * 0.4);
    height: calc(50px * 0.4);
  }
  .mobMenu-wrap #mo-rightImg {
    overflow: hidden;
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    padding: 10px 10px 10px 0;
  }
  .mobMenu-wrap #mo-rightImg .rightImg-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
  .mobMenu-wrap #mobmenuBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    width: 100%;
    top: 50%;
    padding-left: 30px;
    -webkit-transform: translateY(-50%) translateX(-110%);
            transform: translateY(-50%) translateX(-110%);
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL {
    overflow: hidden;
    position: relative;
    width: 300px;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span {
    margin: 0;
    padding-left: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 50px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    -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;
    cursor: pointer;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    left: 0;
    top: 49px;
    width: 100%;
    height: 1px;
    background-color: #939599;
    -webkit-transform: translateX(-110%);
            transform: translateX(-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;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li {
    padding: 0;
    margin: 0;
    line-height: 0;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    -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;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: #2f3033;
    -webkit-transform: translateX(-110%);
            transform: translateX(-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;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover {
    color: #ffffff;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@media (max-width: 575.99px) and (min-width: 420px) {
  #mobMenu-box {
    overflow: hidden;
    z-index: 6000;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    -webkit-transform: translateY(110%);
            transform: translateY(110%);
  }
  .mobMenu-wrap {
    overflow: hidden;
    position: fixed;
    z-index: 6500;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  .mobMenu-wrap .mo-back-bt {
    position: absolute;
    z-index: 6100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 150px;
    height: 40px;
    top: 20px;
    left: 20px;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    background-color: #2f3033;
    font-size: 14px;
    font-weight: 300;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
  }
  .mobMenu-wrap .mo-back-bt img {
    margin-right: 20px;
    width: calc(50px * 0.32);
    height: calc(50px * 0.32);
  }
  .mobMenu-wrap #mo-rightImg {
    overflow: hidden;
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    padding: 0 0 0 0;
  }
  .mobMenu-wrap #mo-rightImg .rightImg-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
  .mobMenu-wrap #mobmenuBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    width: 100%;
    top: 50%;
    padding-left: 20px;
    -webkit-transform: translateY(-50%) translateX(-110%);
            transform: translateY(-50%) translateX(-110%);
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL {
    overflow: hidden;
    position: relative;
    width: 200px;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span {
    margin: 0;
    padding-left: 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    -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;
    cursor: pointer;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    left: 0;
    top: 39px;
    width: 100%;
    height: 1px;
    background-color: #939599;
    -webkit-transform: translateX(-110%);
            transform: translateX(-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;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li {
    padding: 0;
    margin: 0;
    line-height: 0;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 5px 5px;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    -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;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: #2f3033;
    -webkit-transform: translateX(-110%);
            transform: translateX(-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;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover {
    color: #ffffff;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@media (max-width: 419.99px) {
  #mobMenu-box {
    overflow: hidden;
    z-index: 6000;
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    -webkit-transform: translateY(110%);
            transform: translateY(110%);
  }
  .mobMenu-wrap {
    overflow: hidden;
    position: fixed;
    z-index: 6500;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  .mobMenu-wrap .mo-back-bt {
    position: absolute;
    z-index: 6100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 150px;
    height: 40px;
    top: 20px;
    left: 0px;
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    background-color: #2f3033;
    font-size: 14px;
    font-weight: 300;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
  }
  .mobMenu-wrap .mo-back-bt img {
    margin-right: 20px;
    width: calc(50px * 0.32);
    height: calc(50px * 0.32);
  }
  .mobMenu-wrap #mo-rightImg {
    overflow: hidden;
    position: absolute;
    width: 50% !important;
    height: 100%;
    right: 0;
    top: 0;
    padding: 0 0 0 0;
  }
  .mobMenu-wrap #mo-rightImg .rightImg-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
  .mobMenu-wrap #mobmenuBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    padding-left: 10px;
    -webkit-transform: translateY(-50%) translateX(-110%);
            transform: translateY(-50%) translateX(-110%);
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL {
    overflow: hidden;
    position: relative;
    width: 200px;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span {
    margin: 0;
    padding-left: 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    -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;
    cursor: pointer;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    left: 0;
    top: 39px;
    width: 100%;
    height: 1px;
    background-color: #939599;
    -webkit-transform: translateX(-110%);
            transform: translateX(-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;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL span:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li {
    padding: 0;
    margin: 0;
    line-height: 0;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 5px 5px;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    -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;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a::after {
    z-index: -1;
    position: absolute;
    content: '';
    margin: 0;
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: #2f3033;
    -webkit-transform: translateX(-110%);
            transform: translateX(-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;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover {
    color: #ffffff;
  }
  .mobMenu-wrap #mobmenuBox .moMenu-UL li a:hover::after {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.footer {
  margin-top: 120px;
  padding: 40px 0;
  border-top: 1px solid #e1e3e5;
  border-bottom: 1px solid #e1e3e5;
}

.footer ._con {
  width: 100%;
}

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

.footer ._con .addr-box .logo-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer ._con .addr-box .logo-box img {
  width: calc(156px * 1);
  height: calc(83px * 1);
}

.footer ._con .addr-box .siteMap {
  width: 80%;
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.footer ._con .addr-box .siteMap p {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #3e577e;
  margin-bottom: 0px !important;
}

.footer ._con .addr-box .siteMap p a {
  color: #3e577e;
}

.footer ._con .addr-box .siteMap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 0px !important;
}

.footer ._con .addr-box .siteMap ul li {
  padding-left: 20px;
}

.footer ._con .addr-box .siteMap ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #3e577e;
}

.contact {
  width: 100%;
  padding: 40px 0 30px;
}

.contact ._con {
  width: 100%;
}

.contact ._con .con-box {
  width: 100%;
  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;
}

.contact ._con .con-box .text1 {
  width: 100%;
  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;
}

.contact ._con .con-box .text1 p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #535353;
  margin-bottom: 0px !important;
}

.contact ._con .con-box .text1 p:nth-of-type(1) {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #0e3daa;
  padding-bottom: 10px;
}

.contact ._con .con-box .text1 p span {
  padding-right: 20px;
}

.contact ._con .con-box .text1 p span:nth-last-child(1) {
  padding-right: 0px;
}

.contact ._con .con-box .text2 {
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #848484;
  text-align: center;
  padding-top: 30px;
}

.contact ._con .con-box .text2 br {
  display: none;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .footer {
    margin-top: 120px;
    padding: 40px 10px;
    border-top: 1px solid #e1e3e5;
    border-bottom: 1px solid #e1e3e5;
  }
  .footer ._con {
    width: 100%;
  }
  .footer ._con .addr-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .footer ._con .addr-box .logo-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer ._con .addr-box .logo-box img {
    width: calc(156px * 1);
    height: calc(83px * 1);
  }
  .footer ._con .addr-box .siteMap {
    width: 80%;
    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: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .footer ._con .addr-box .siteMap p {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #3e577e;
    margin-bottom: 0px !important;
  }
  .footer ._con .addr-box .siteMap p a {
    color: #3e577e;
  }
  .footer ._con .addr-box .siteMap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 0px !important;
  }
  .footer ._con .addr-box .siteMap ul li {
    padding-left: 20px;
  }
  .footer ._con .addr-box .siteMap ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #3e577e;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .footer {
    margin-top: 100px;
    padding: 40px 10px;
    border-top: 1px solid #e1e3e5;
    border-bottom: 1px solid #e1e3e5;
  }
  .footer ._con {
    width: 100%;
  }
  .footer ._con .addr-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .footer ._con .addr-box .logo-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer ._con .addr-box .logo-box img {
    width: calc(156px * 1);
    height: calc(83px * 1);
  }
  .footer ._con .addr-box .siteMap {
    width: 80%;
    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: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .footer ._con .addr-box .siteMap p {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #3e577e;
    margin-bottom: 0px !important;
  }
  .footer ._con .addr-box .siteMap p a {
    color: #3e577e;
  }
  .footer ._con .addr-box .siteMap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 0px !important;
  }
  .footer ._con .addr-box .siteMap ul li {
    padding-left: 20px;
  }
  .footer ._con .addr-box .siteMap ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #3e577e;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .footer {
    margin-top: 80px;
    padding: 30px 10px;
    border-top: 1px solid #e1e3e5;
    border-bottom: 1px solid #e1e3e5;
  }
  .footer ._con {
    width: 100%;
  }
  .footer ._con .addr-box {
    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;
    width: 100%;
  }
  .footer ._con .addr-box .logo-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer ._con .addr-box .logo-box img {
    width: calc(156px * 1);
    height: calc(83px * 1);
  }
  .footer ._con .addr-box .siteMap {
    width: 100%;
    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;
  }
  .footer ._con .addr-box .siteMap p {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #3e577e;
    padding-top: 20px;
    margin-bottom: 0px !important;
  }
  .footer ._con .addr-box .siteMap p a {
    color: #3e577e;
  }
  .footer ._con .addr-box .siteMap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
    margin-top: 10px;
    margin-bottom: 0px !important;
  }
  .footer ._con .addr-box .siteMap ul li {
    padding-left: 20px;
  }
  .footer ._con .addr-box .siteMap ul li:nth-of-type(1) {
    padding-left: 0px;
  }
  .footer ._con .addr-box .siteMap ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #3e577e;
  }
  .contact {
    width: 100%;
    padding: 40px 0 30px;
  }
  .contact ._con {
    width: 100%;
  }
  .contact ._con .con-box {
    width: 100%;
    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;
  }
  .contact ._con .con-box .text1 {
    width: 100%;
    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;
  }
  .contact ._con .con-box .text1 p {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #535353;
    margin-bottom: 0px !important;
  }
  .contact ._con .con-box .text1 p:nth-of-type(1) {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #0e3daa;
    padding-bottom: 10px;
  }
  .contact ._con .con-box .text1 p span {
    width: auto;
    padding-right: 20px;
  }
  .contact ._con .con-box .text1 p span:nth-last-child(1) {
    padding-right: 0px;
  }
  .contact ._con .con-box .text2 {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #848484;
    text-align: center;
    padding-top: 30px;
  }
  .contact ._con .con-box .text2 br {
    display: none;
  }
}

@media (max-width: 575.99px) and (min-width: 420px) {
  .footer {
    margin-top: 60px;
    padding: 30px 10px;
    border-top: 1px solid #e1e3e5;
    border-bottom: 1px solid #e1e3e5;
  }
  .footer ._con {
    width: 100%;
  }
  .footer ._con .addr-box {
    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;
    width: 100%;
  }
  .footer ._con .addr-box .logo-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer ._con .addr-box .logo-box img {
    width: calc(156px * 0.8);
    height: calc(83px * 0.8);
  }
  .footer ._con .addr-box .siteMap {
    width: 100%;
    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;
  }
  .footer ._con .addr-box .siteMap p {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #3e577e;
    padding-top: 20px;
    margin-bottom: 0px !important;
  }
  .footer ._con .addr-box .siteMap p a {
    color: #3e577e;
  }
  .footer ._con .addr-box .siteMap ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0px;
    margin-bottom: 0px !important;
  }
  .footer ._con .addr-box .siteMap ul li {
    width: auto;
    padding-left: 20px;
    padding-top: 10px;
  }
  .footer ._con .addr-box .siteMap ul li:nth-of-type(1) {
    padding-left: 0px;
  }
  .footer ._con .addr-box .siteMap ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #3e577e;
  }
  .contact {
    width: 100%;
    padding: 30px 10px 20px;
  }
  .contact ._con {
    width: 100%;
  }
  .contact ._con .con-box {
    width: 100%;
    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;
  }
  .contact ._con .con-box .text1 {
    width: 100%;
    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;
  }
  .contact ._con .con-box .text1 p {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #535353;
    margin-bottom: 0px !important;
  }
  .contact ._con .con-box .text1 p:nth-of-type(1) {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #0e3daa;
    padding-bottom: 10px;
  }
  .contact ._con .con-box .text1 p span {
    width: auto;
    padding-right: 20px;
  }
  .contact ._con .con-box .text1 p span:nth-last-child(1) {
    padding-right: 0px;
  }
  .contact ._con .con-box .text2 {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #848484;
    text-align: center;
    padding-top: 20px;
  }
  .contact ._con .con-box .text2 br {
    display: none;
  }
}

@media (max-width: 419.99px) {
  .footer {
    margin-top: 40px;
    padding: 20px 10px;
    border-top: 1px solid #e1e3e5;
    border-bottom: 1px solid #e1e3e5;
  }
  .footer ._con {
    width: 100%;
  }
  .footer ._con .addr-box {
    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;
    width: 100%;
  }
  .footer ._con .addr-box .logo-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer ._con .addr-box .logo-box img {
    width: calc(156px * 0.7);
    height: calc(83px * 0.7);
  }
  .footer ._con .addr-box .siteMap {
    width: 100%;
    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;
  }
  .footer ._con .addr-box .siteMap p {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #3e577e;
    padding-top: 20px;
    margin-bottom: 0px !important;
  }
  .footer ._con .addr-box .siteMap p a {
    color: #3e577e;
  }
  .footer ._con .addr-box .siteMap ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0px;
    margin-bottom: 0px !important;
  }
  .footer ._con .addr-box .siteMap ul li {
    width: auto;
    padding-left: 20px;
    padding-top: 10px;
  }
  .footer ._con .addr-box .siteMap ul li:nth-of-type(1) {
    padding-left: 0px;
  }
  .footer ._con .addr-box .siteMap ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #3e577e;
  }
  .contact {
    width: 100%;
    padding: 20px 10px 10px;
  }
  .contact ._con {
    width: 100%;
  }
  .contact ._con .con-box {
    width: 100%;
    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;
  }
  .contact ._con .con-box .text1 {
    width: 100%;
    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;
  }
  .contact ._con .con-box .text1 p {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #535353;
    margin-bottom: 0px !important;
  }
  .contact ._con .con-box .text1 p:nth-of-type(1) {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #0e3daa;
    padding-bottom: 10px;
  }
  .contact ._con .con-box .text1 p span {
    width: auto;
    padding-right: 20px;
  }
  .contact ._con .con-box .text1 p span:nth-last-child(1) {
    padding-right: 0px;
  }
  .contact ._con .con-box .text2 {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #848484;
    text-align: center;
    padding-top: 20px;
  }
  .contact ._con .con-box .text2 br {
    display: block;
  }
}

.con1-sec {
  width: 100%;
  padding: 0px 0px;
}

.con1-sec ._con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 0px 100px;
  border-bottom: 2px solid #dddddd;
}

.con1-sec ._con .title {
  width: 100%;
}

.con1-sec ._con .title p {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #123991;
  word-break: keep-all;
  padding-bottom: 40px;
  padding-left: 15px;
}

.con1-sec ._con .title::before {
  width: 5px;
  height: 30px;
  background-color: #123991;
  top: 8px;
}

.con1-sec ._con .text-box1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.con1-sec ._con .text-box1 .left-tex-box {
  width: 50%;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-right: 30px;
}

.con1-sec ._con .text-box1 .left-tex-box h1 {
  width: 100%;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #44464d;
  word-break: keep-all;
}

.con1-sec ._con .text-box1 .left-tex-box h2 {
  width: 100%;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #4c6191;
  word-break: keep-all;
  padding-top: 20px;
}

.con1-sec ._con .text-box1 .left-tex-box p {
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #44464d;
  word-break: keep-all;
  padding-top: 40px;
}

.con1-sec ._con .text-box1 .left-tex-box p br {
  display: block;
}

.con1-sec ._con .text-box1 .left-tex-box h3 {
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #123991;
  word-break: keep-all;
  padding-top: 40px;
}

.con1-sec ._con .text-box1 .left-tex-box .box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.con1-sec ._con .text-box1 .left-tex-box .box .item {
  width: 49%;
  background-color: #123991;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #fff;
  padding: 15px 0px;
  text-align: center;
  margin-top: 10px;
}

.con1-sec ._con .text-box1 .right-tex-box {
  width: 50%;
  padding-left: 70px;
}

.con1-sec ._con .text-box1 .right-tex-box .img-box {
  width: 100%;
  height: 630px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.con1-sec ._con .text-box2 {
  width: 100%;
  padding-top: 80px;
}

.con1-sec ._con .text-box2 p {
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #44464d;
  word-break: keep-all;
}

.con1-sec ._con .text-box2 p:nth-of-type(2) {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  font-family: "Noto Sans KR", sans-serif !important;
  padding-top: 40px;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .con1-sec {
    width: 100%;
    padding: 0px 10px;
  }
  .con1-sec ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 0px 80px;
    border-bottom: 2px solid #dddddd;
  }
  .con1-sec ._con .title {
    width: 100%;
  }
  .con1-sec ._con .title p {
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-bottom: 40px;
    padding-left: 15px;
  }
  .con1-sec ._con .title::before {
    width: 5px;
    height: 28px;
    background-color: #123991;
    top: 8px;
  }
  .con1-sec ._con .text-box1 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .con1-sec ._con .text-box1 .left-tex-box {
    width: 50%;
    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-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-right: 10px;
  }
  .con1-sec ._con .text-box1 .left-tex-box h1 {
    width: 100%;
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
  }
  .con1-sec ._con .text-box1 .left-tex-box h2 {
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #4c6191;
    word-break: keep-all;
    padding-top: 10px;
  }
  .con1-sec ._con .text-box1 .left-tex-box p {
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
    padding-top: 30px;
  }
  .con1-sec ._con .text-box1 .left-tex-box p br {
    display: block;
  }
  .con1-sec ._con .text-box1 .left-tex-box h3 {
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-top: 30px;
  }
  .con1-sec ._con .text-box1 .left-tex-box .box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .con1-sec ._con .text-box1 .left-tex-box .box .item {
    width: 49%;
    background-color: #123991;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #fff;
    padding: 10px 0px;
    text-align: center;
    margin-top: 10px;
  }
  .con1-sec ._con .text-box1 .right-tex-box {
    width: 50%;
    padding-left: 60px;
  }
  .con1-sec ._con .text-box1 .right-tex-box .img-box {
    width: 100%;
    height: 576px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .con1-sec ._con .text-box2 {
    width: 100%;
    padding-top: 40px;
  }
  .con1-sec ._con .text-box2 p {
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
  }
  .con1-sec ._con .text-box2 p:nth-of-type(2) {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding-top: 40px;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .con1-sec {
    width: 100%;
    padding: 0px 10px;
  }
  .con1-sec ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 0px 60px;
    border-bottom: 2px solid #dddddd;
  }
  .con1-sec ._con .title {
    width: 100%;
  }
  .con1-sec ._con .title p {
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-bottom: 30px;
    padding-left: 15px;
  }
  .con1-sec ._con .title::before {
    width: 5px;
    height: 24px;
    background-color: #123991;
    top: 8px;
  }
  .con1-sec ._con .text-box1 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con1-sec ._con .text-box1 .left-tex-box {
    width: 100%;
    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-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-right: 0px;
  }
  .con1-sec ._con .text-box1 .left-tex-box h1 {
    width: 100%;
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
  }
  .con1-sec ._con .text-box1 .left-tex-box h2 {
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #4c6191;
    word-break: keep-all;
    padding-top: 0px;
  }
  .con1-sec ._con .text-box1 .left-tex-box p {
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
    padding-top: 20px;
  }
  .con1-sec ._con .text-box1 .left-tex-box p br {
    display: none;
  }
  .con1-sec ._con .text-box1 .left-tex-box h3 {
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-top: 20px;
  }
  .con1-sec ._con .text-box1 .left-tex-box .box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .con1-sec ._con .text-box1 .left-tex-box .box .item {
    width: 49%;
    background-color: #123991;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #fff;
    padding: 10px 0px;
    text-align: center;
    margin-top: 10px;
  }
  .con1-sec ._con .text-box1 .right-tex-box {
    width: 100%;
    padding-left: 0px;
    padding-top: 20px;
  }
  .con1-sec ._con .text-box1 .right-tex-box .img-box {
    width: 100%;
    height: 400px;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .con1-sec ._con .text-box2 {
    width: 100%;
    padding-top: 30px;
  }
  .con1-sec ._con .text-box2 p {
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
  }
  .con1-sec ._con .text-box2 p:nth-of-type(2) {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding-top: 20px;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .con1-sec {
    width: 100%;
    padding: 0px 10px;
  }
  .con1-sec ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 0px 40px;
    border-bottom: 2px solid #dddddd;
  }
  .con1-sec ._con .title {
    width: 100%;
  }
  .con1-sec ._con .title p {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-bottom: 30px;
    padding-left: 12px;
  }
  .con1-sec ._con .title::before {
    width: 4px;
    height: 21px;
    background-color: #123991;
    top: 8px;
  }
  .con1-sec ._con .text-box1 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con1-sec ._con .text-box1 .left-tex-box {
    width: 100%;
    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-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-right: 0px;
  }
  .con1-sec ._con .text-box1 .left-tex-box h1 {
    width: 100%;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
  }
  .con1-sec ._con .text-box1 .left-tex-box h2 {
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #4c6191;
    word-break: keep-all;
    padding-top: 0px;
  }
  .con1-sec ._con .text-box1 .left-tex-box p {
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
    padding-top: 20px;
  }
  .con1-sec ._con .text-box1 .left-tex-box p br {
    display: none;
  }
  .con1-sec ._con .text-box1 .left-tex-box h3 {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-top: 20px;
  }
  .con1-sec ._con .text-box1 .left-tex-box .box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .con1-sec ._con .text-box1 .left-tex-box .box .item {
    width: 49%;
    background-color: #123991;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #fff;
    padding: 10px 0px;
    text-align: center;
    margin-top: 10px;
  }
  .con1-sec ._con .text-box1 .right-tex-box {
    width: 100%;
    padding-left: 0px;
    padding-top: 20px;
  }
  .con1-sec ._con .text-box1 .right-tex-box .img-box {
    width: 100%;
    height: 400px;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .con1-sec ._con .text-box2 {
    width: 100%;
    padding-top: 30px;
  }
  .con1-sec ._con .text-box2 p {
    width: 100%;
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
  }
  .con1-sec ._con .text-box2 p:nth-of-type(2) {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding-top: 20px;
  }
}

@media (max-width: 575.99px) and (min-width: 420px) {
  .con1-sec {
    width: 100%;
    padding: 0px 10px;
  }
  .con1-sec ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 0px 30px;
    border-bottom: 2px solid #dddddd;
  }
  .con1-sec ._con .title {
    width: 100%;
  }
  .con1-sec ._con .title p {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-bottom: 20px;
    padding-left: 12px;
  }
  .con1-sec ._con .title::before {
    width: 4px;
    height: 19px;
    background-color: #123991;
    top: 6px;
  }
  .con1-sec ._con .text-box1 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con1-sec ._con .text-box1 .left-tex-box {
    width: 100%;
    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-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-right: 0px;
  }
  .con1-sec ._con .text-box1 .left-tex-box h1 {
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
  }
  .con1-sec ._con .text-box1 .left-tex-box h2 {
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #4c6191;
    word-break: keep-all;
    padding-top: 0px;
  }
  .con1-sec ._con .text-box1 .left-tex-box p {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
    padding-top: 20px;
  }
  .con1-sec ._con .text-box1 .left-tex-box p br {
    display: none;
  }
  .con1-sec ._con .text-box1 .left-tex-box h3 {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-top: 20px;
  }
  .con1-sec ._con .text-box1 .left-tex-box .box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .con1-sec ._con .text-box1 .left-tex-box .box .item {
    width: 49%;
    background-color: #123991;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #fff;
    padding: 10px 0px;
    text-align: center;
    margin-top: 10px;
  }
  .con1-sec ._con .text-box1 .right-tex-box {
    width: 100%;
    padding-left: 0px;
    padding-top: 20px;
  }
  .con1-sec ._con .text-box1 .right-tex-box .img-box {
    width: 100%;
    height: 300px;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .con1-sec ._con .text-box2 {
    width: 100%;
    padding-top: 20px;
  }
  .con1-sec ._con .text-box2 p {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
  }
  .con1-sec ._con .text-box2 p:nth-of-type(2) {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding-top: 10px;
  }
}

@media (max-width: 419.99px) {
  .con1-sec {
    width: 100%;
    padding: 0px 10px;
  }
  .con1-sec ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 0px 20px;
    border-bottom: 2px solid #dddddd;
  }
  .con1-sec ._con .title {
    width: 100%;
  }
  .con1-sec ._con .title p {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-bottom: 10px;
    padding-left: 10px;
  }
  .con1-sec ._con .title::before {
    width: 4px;
    height: 16px;
    background-color: #123991;
    top: 6px;
  }
  .con1-sec ._con .text-box1 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con1-sec ._con .text-box1 .left-tex-box {
    width: 100%;
    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-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-right: 0px;
  }
  .con1-sec ._con .text-box1 .left-tex-box h1 {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
  }
  .con1-sec ._con .text-box1 .left-tex-box h2 {
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #4c6191;
    word-break: keep-all;
    padding-top: 0px;
  }
  .con1-sec ._con .text-box1 .left-tex-box p {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
    padding-top: 20px;
  }
  .con1-sec ._con .text-box1 .left-tex-box p br {
    display: none;
  }
  .con1-sec ._con .text-box1 .left-tex-box h3 {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-top: 20px;
  }
  .con1-sec ._con .text-box1 .left-tex-box .box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .con1-sec ._con .text-box1 .left-tex-box .box .item {
    width: 100%;
    background-color: #123991;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #fff;
    padding: 10px 0px;
    text-align: center;
    margin-top: 10px;
  }
  .con1-sec ._con .text-box1 .right-tex-box {
    width: 100%;
    padding-left: 0px;
    padding-top: 20px;
  }
  .con1-sec ._con .text-box1 .right-tex-box .img-box {
    width: 100%;
    height: 200px;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .con1-sec ._con .text-box2 {
    width: 100%;
    padding-top: 20px;
  }
  .con1-sec ._con .text-box2 p {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
  }
  .con1-sec ._con .text-box2 p:nth-of-type(2) {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding-top: 10px;
  }
}

.con2-sec {
  width: 100%;
  padding: 100px 0px 0px;
}

.con2-sec ._con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 0px 100px;
  border-bottom: 2px solid #dddddd;
}

.con2-sec ._con .title {
  width: 100%;
}

.con2-sec ._con .title p {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #123991;
  word-break: keep-all;
  padding-bottom: 40px;
  padding-left: 15px;
}

.con2-sec ._con .title::before {
  width: 5px;
  height: 30px;
  background-color: #123991;
  top: 8px;
}

.con2-sec ._con .con-11 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.con2-sec ._con .con-11 .img-box {
  width: 40%;
}

.con2-sec ._con .con-11 .img-box .img-box1 {
  position: absolute;
  width: 420px;
  height: 504px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 20px 0px 0px 20px;
}

.con2-sec ._con .con-11 .img-box .img-box2 {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 504px;
  background-color: #f2f3f7;
}

.con2-sec ._con .con-11 .cont-box {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 60px;
  margin-left: 50px;
}

.con2-sec ._con .con-11 .cont-box .box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.con2-sec ._con .con-11 .cont-box .box .box1 {
  border-top: 1px solid #123991;
}

.con2-sec ._con .con-11 .cont-box .box .box2 {
  border-top: 1px solid #d4d5df;
}

.con2-sec ._con .con-11 .cont-box .box h2 {
  width: 35%;
  height: 60px;
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-right: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #44464d;
  word-break: keep-all;
  border-bottom: 1px solid #123991;
  background-color: #fcfcfd;
}

.con2-sec ._con .con-11 .cont-box .box p {
  width: 65%;
  height: 60px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #44464d;
  word-break: keep-all;
  border-bottom: 1px solid #d4d5df;
  padding: 0px 0px 0px 40px;
}

.con2-sec ._con .con-11 .cont-box .box p a {
  color: #44464d;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .con2-sec {
    width: 100%;
    padding: 80px 10px 0px;
  }
  .con2-sec ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 0px 80px;
    border-bottom: 2px solid #dddddd;
  }
  .con2-sec ._con .title {
    width: 100%;
  }
  .con2-sec ._con .title p {
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-bottom: 40px;
    padding-left: 15px;
  }
  .con2-sec ._con .title::before {
    width: 5px;
    height: 28px;
    background-color: #123991;
    top: 8px;
  }
  .con2-sec ._con .con-11 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .con2-sec ._con .con-11 .img-box {
    width: 40%;
  }
  .con2-sec ._con .con-11 .img-box .img-box1 {
    position: absolute;
    width: 350px;
    height: 380px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 20px 0px 0px 20px;
  }
  .con2-sec ._con .con-11 .img-box .img-box2 {
    position: absolute;
    z-index: -1;
    width: 350px;
    height: 380px;
    background-color: #f2f3f7;
  }
  .con2-sec ._con .con-11 .cont-box {
    width: 60%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 60px;
    margin-left: 50px;
  }
  .con2-sec ._con .con-11 .cont-box .box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .con2-sec ._con .con-11 .cont-box .box .box1 {
    border-top: 1px solid #123991;
  }
  .con2-sec ._con .con-11 .cont-box .box .box2 {
    border-top: 1px solid #d4d5df;
  }
  .con2-sec ._con .con-11 .cont-box .box h2 {
    width: 35%;
    height: 60px;
    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: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 40px;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
    border-bottom: 1px solid #123991;
    background-color: #fcfcfd;
  }
  .con2-sec ._con .con-11 .cont-box .box p {
    width: 65%;
    height: 60px;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
    border-bottom: 1px solid #d4d5df;
    padding: 0px 0px 0px 40px;
  }
  .con2-sec ._con .con-11 .cont-box .box p a {
    color: #44464d;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .con2-sec {
    width: 100%;
    padding: 60px 10px 0px;
  }
  .con2-sec ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 0px 60px;
    border-bottom: 2px solid #dddddd;
  }
  .con2-sec ._con .title {
    width: 100%;
  }
  .con2-sec ._con .title p {
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-bottom: 30px;
    padding-left: 15px;
  }
  .con2-sec ._con .title::before {
    width: 5px;
    height: 24px;
    background-color: #123991;
    top: 8px;
  }
  .con2-sec ._con .con-11 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .con2-sec ._con .con-11 .img-box {
    width: 30%;
  }
  .con2-sec ._con .con-11 .img-box .img-box1 {
    position: absolute;
    width: 230px;
    height: 260px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 10px 0px 0px 10px;
  }
  .con2-sec ._con .con-11 .img-box .img-box2 {
    position: absolute;
    z-index: -1;
    width: 230px;
    height: 260px;
    background-color: #f2f3f7;
  }
  .con2-sec ._con .con-11 .cont-box {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 50px;
    margin-left: 50px;
  }
  .con2-sec ._con .con-11 .cont-box .box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .con2-sec ._con .con-11 .cont-box .box .box1 {
    border-top: 1px solid #123991;
  }
  .con2-sec ._con .con-11 .cont-box .box .box2 {
    border-top: 1px solid #d4d5df;
  }
  .con2-sec ._con .con-11 .cont-box .box:nth-last-of-type(1) > h2, .con2-sec ._con .con-11 .cont-box .box:nth-last-of-type(1) > p {
    height: 90px;
  }
  .con2-sec ._con .con-11 .cont-box .box h2 {
    width: 35%;
    height: 60px;
    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: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 40px;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
    border-bottom: 1px solid #123991;
    background-color: #fcfcfd;
  }
  .con2-sec ._con .con-11 .cont-box .box p {
    width: 65%;
    height: 60px;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
    border-bottom: 1px solid #d4d5df;
    padding: 0px 0px 0px 40px;
  }
  .con2-sec ._con .con-11 .cont-box .box p a {
    color: #44464d;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .con2-sec {
    width: 100%;
    padding: 40px 10px 0px;
  }
  .con2-sec ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 0px 40px;
    border-bottom: 2px solid #dddddd;
  }
  .con2-sec ._con .title {
    width: 100%;
  }
  .con2-sec ._con .title p {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-bottom: 30px;
    padding-left: 12px;
  }
  .con2-sec ._con .title::before {
    width: 4px;
    height: 21px;
    background-color: #123991;
    top: 8px;
  }
  .con2-sec ._con .con-11 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con2-sec ._con .con-11 .img-box {
    width: 100%;
    height: 300px;
    background-color: #f2f3f7;
  }
  .con2-sec ._con .con-11 .img-box .img-box1 {
    position: relative;
    width: auto;
    height: 300px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 10px 60px 10px 60px;
  }
  .con2-sec ._con .con-11 .img-box .img-box2 {
    display: none;
    position: relative;
    z-index: -1;
    width: 100%;
    height: 300px;
    background-color: #f2f3f7;
  }
  .con2-sec ._con .con-11 .cont-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
    margin-left: 0px;
  }
  .con2-sec ._con .con-11 .cont-box .box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .con2-sec ._con .con-11 .cont-box .box .box1 {
    border-top: 1px solid #123991;
  }
  .con2-sec ._con .con-11 .cont-box .box .box2 {
    border-top: 1px solid #d4d5df;
  }
  .con2-sec ._con .con-11 .cont-box .box:nth-last-of-type(1) > h2, .con2-sec ._con .con-11 .cont-box .box:nth-last-of-type(1) > p {
    height: 50px;
  }
  .con2-sec ._con .con-11 .cont-box .box h2 {
    width: 30%;
    height: 50px;
    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: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 40px;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
    border-bottom: 1px solid #123991;
    background-color: #fcfcfd;
  }
  .con2-sec ._con .con-11 .cont-box .box p {
    width: 70%;
    height: 50px;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
    border-bottom: 1px solid #d4d5df;
    padding: 0px 0px 0px 40px;
  }
  .con2-sec ._con .con-11 .cont-box .box p a {
    color: #44464d;
  }
}

@media (max-width: 575.99px) and (min-width: 420px) {
  .con2-sec {
    width: 100%;
    padding: 30px 10px 0px;
  }
  .con2-sec ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 0px 30px;
    border-bottom: 2px solid #dddddd;
  }
  .con2-sec ._con .title {
    width: 100%;
  }
  .con2-sec ._con .title p {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-bottom: 20px;
    padding-left: 12px;
  }
  .con2-sec ._con .title::before {
    width: 4px;
    height: 19px;
    background-color: #123991;
    top: 6px;
  }
  .con2-sec ._con .con-11 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con2-sec ._con .con-11 .img-box {
    width: 100%;
    height: 250px;
    background-color: #f2f3f7;
  }
  .con2-sec ._con .con-11 .img-box .img-box1 {
    position: relative;
    width: auto;
    height: 250px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 10px 50px 10px 50px;
  }
  .con2-sec ._con .con-11 .img-box .img-box2 {
    display: none;
    position: relative;
    z-index: -1;
    width: 100%;
    height: 250px;
    background-color: #f2f3f7;
  }
  .con2-sec ._con .con-11 .cont-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
    margin-left: 0px;
  }
  .con2-sec ._con .con-11 .cont-box .box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .con2-sec ._con .con-11 .cont-box .box .box1 {
    border-top: 1px solid #123991;
  }
  .con2-sec ._con .con-11 .cont-box .box .box2 {
    border-top: 1px solid #d4d5df;
  }
  .con2-sec ._con .con-11 .cont-box .box:nth-last-of-type(1) > h2, .con2-sec ._con .con-11 .cont-box .box:nth-last-of-type(1) > p {
    height: 70px;
  }
  .con2-sec ._con .con-11 .cont-box .box h2 {
    width: 30%;
    height: 50px;
    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: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 30px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
    border-bottom: 1px solid #123991;
    background-color: #fcfcfd;
  }
  .con2-sec ._con .con-11 .cont-box .box p {
    width: 70%;
    height: 50px;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 14px;
    font-weight: 300;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
    border-bottom: 1px solid #d4d5df;
    padding: 0px 0px 0px 20px;
  }
  .con2-sec ._con .con-11 .cont-box .box p a {
    color: #44464d;
  }
}

@media (max-width: 419.99px) {
  .con2-sec {
    width: 100%;
    padding: 20px 10px 0px;
  }
  .con2-sec ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 0px 20px;
    border-bottom: 2px solid #dddddd;
  }
  .con2-sec ._con .title {
    width: 100%;
  }
  .con2-sec ._con .title p {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-bottom: 10px;
    padding-left: 10px;
  }
  .con2-sec ._con .title::before {
    width: 4px;
    height: 16px;
    background-color: #123991;
    top: 6px;
  }
  .con2-sec ._con .con-11 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con2-sec ._con .con-11 .img-box {
    width: 100%;
    height: 200px;
    background-color: #f2f3f7;
  }
  .con2-sec ._con .con-11 .img-box .img-box1 {
    position: relative;
    width: auto;
    height: 200px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 10px 50px 10px 50px;
  }
  .con2-sec ._con .con-11 .img-box .img-box2 {
    display: none;
    position: relative;
    z-index: -1;
    width: 100%;
    height: 200px;
    background-color: #f2f3f7;
  }
  .con2-sec ._con .con-11 .cont-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
    margin-left: 0px;
  }
  .con2-sec ._con .con-11 .cont-box .box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .con2-sec ._con .con-11 .cont-box .box .box1 {
    border-top: 1px solid #123991;
  }
  .con2-sec ._con .con-11 .cont-box .box .box2 {
    border-top: 1px solid #d4d5df;
  }
  .con2-sec ._con .con-11 .cont-box .box:nth-last-of-type(1) > h2, .con2-sec ._con .con-11 .cont-box .box:nth-last-of-type(1) > p {
    height: 70px;
  }
  .con2-sec ._con .con-11 .cont-box .box:nth-last-of-type(5) > h2, .con2-sec ._con .con-11 .cont-box .box:nth-last-of-type(5) > p {
    height: 70px;
  }
  .con2-sec ._con .con-11 .cont-box .box:nth-last-of-type(7) > h2, .con2-sec ._con .con-11 .cont-box .box:nth-last-of-type(7) > p {
    height: 70px;
  }
  .con2-sec ._con .con-11 .cont-box .box h2 {
    width: 30%;
    height: 50px;
    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: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
    border-bottom: 1px solid #123991;
    background-color: #fcfcfd;
  }
  .con2-sec ._con .con-11 .cont-box .box p {
    width: 70%;
    height: 50px;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 14px;
    font-weight: 300;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #44464d;
    word-break: keep-all;
    border-bottom: 1px solid #d4d5df;
    padding: 0px 0px 0px 20px;
  }
  .con2-sec ._con .con-11 .cont-box .box p a {
    color: #44464d;
  }
}

.con3-sec {
  width: 100%;
  padding: 100px 0px 0px;
}

.con3-sec ._con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 0px 100px;
  border-bottom: 2px solid #dddddd;
}

.con3-sec ._con .title {
  width: 100%;
}

.con3-sec ._con .title p {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #123991;
  word-break: keep-all;
  padding-bottom: 40px;
  padding-left: 15px;
}

.con3-sec ._con .title::before {
  width: 5px;
  height: 30px;
  background-color: #123991;
  top: 8px;
}

.con3-sec ._con .history-sec {
  width: 100%;
  margin-top: 60px;
}

.con3-sec ._con .history-sec .con-history {
  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;
}

.con3-sec ._con .history-sec .con-history .ht-001-box {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.con3-sec ._con .history-sec .con-history .ht-001-box span {
  position: absolute;
  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;
  z-index: 10;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #123991;
  font-size: 26px;
  font-weight: 600;
  line-height: 18px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  margin-top: -60px;
}

.con3-sec ._con .history-sec .con-history .ht-001-box .ht-box {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .left-bx {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}

.con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 260px;
  border: 1px solid #eeeceb;
  border-top-right-radius: 125px;
  border-bottom-right-radius: 125px;
}

.con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul {
  margin-left: 30px;
}

.con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul li {
  font-size: 16px;
  font-weight: 300;
  line-height: 35px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #3c3a46;
  word-break: keep-all;
}

.con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul li br {
  display: none;
}

.con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul li::before {
  width: 13px;
  height: 13px;
  margin-top: 11px;
  margin-left: -37px;
  border-radius: 50%;
  border: 1px solid #2f2c2b;
  background-color: #fff;
}

.con3-sec ._con .history-sec .con-history .ht-002-box {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.con3-sec ._con .history-sec .con-history .ht-002-box span {
  position: absolute;
  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;
  z-index: 10;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #8c8582;
  font-size: 26px;
  font-weight: 600;
  line-height: 18px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  margin-top: -60px;
}

.con3-sec ._con .history-sec .con-history .ht-002-box .ht-box {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 50%;
  height: 260px;
  border: 1px solid #eeeceb;
  border-top-left-radius: 125px;
  border-bottom-left-radius: 125px;
}

.con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul {
  margin-right: 30px;
}

.con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul li {
  font-size: 16px;
  font-weight: 300;
  line-height: 35px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  text-align: right;
  word-break: keep-all;
}

.con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul li br {
  display: none;
}

.con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul li::before {
  width: 13px;
  height: 13px;
  margin-top: 11px;
  right: -7px;
  border-radius: 50%;
  border: 1px solid #2f2c2b;
  background-color: #fff;
}

.con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .right-bx {
  width: 50%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.con3-sec ._con .history-sec .con-history .ht-003-box {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.con3-sec ._con .history-sec .con-history .ht-003-box span {
  position: absolute;
  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;
  z-index: 10;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #464240;
  font-size: 24px;
  font-weight: 600;
  line-height: 18px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  margin-top: -60px;
}

.con3-sec ._con .history-sec .con-history .ht-003-box .ht-box {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .left-bx {
  width: 50%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  height: 260px;
  border: 1px solid  #eeeceb;
  border-top-right-radius: 125px;
  border-bottom-right-radius: 125px;
}

.con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul {
  margin-left: 30px;
}

.con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul li {
  font-size: 16px;
  font-weight: 300;
  line-height: 35px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
  word-break: keep-all;
}

.con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul li br {
  display: none;
}

.con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul li::before {
  width: 13px;
  height: 13px;
  margin-top: 11px;
  margin-left: -37px;
  border-radius: 50%;
  border: 1px solid  #2f2c2b;
  background-color: #fff;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .con3-sec {
    width: 100%;
    padding: 80px 10px 0px;
  }
  .con3-sec ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 0px 80px;
    border-bottom: 2px solid #dddddd;
  }
  .con3-sec ._con .title {
    width: 100%;
  }
  .con3-sec ._con .title p {
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-bottom: 40px;
    padding-left: 15px;
  }
  .con3-sec ._con .title::before {
    width: 5px;
    height: 28px;
    background-color: #123991;
    top: 8px;
  }
  .con3-sec ._con .history-sec {
    width: 100%;
    margin-top: 60px;
  }
  .con3-sec ._con .history-sec .con-history {
    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;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box span {
    position: absolute;
    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;
    z-index: 10;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #123991;
    font-size: 26px;
    font-weight: 600;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    margin-top: -60px;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .left-bx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 260px;
    border: 1px solid #eeeceb;
    border-top-right-radius: 125px;
    border-bottom-right-radius: 125px;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul {
    margin-left: 30px;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul li {
    font-size: 16px;
    font-weight: 300;
    line-height: 35px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #3c3a46;
    word-break: keep-all;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul li br {
    display: none;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul li::before {
    width: 13px;
    height: 13px;
    margin-top: 11px;
    margin-left: -37px;
    border-radius: 50%;
    border: 1px solid #2f2c2b;
    background-color: #fff;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box span {
    position: absolute;
    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;
    z-index: 10;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #8c8582;
    font-size: 26px;
    font-weight: 600;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    margin-top: -60px;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 50%;
    height: 260px;
    border: 1px solid #eeeceb;
    border-top-left-radius: 125px;
    border-bottom-left-radius: 125px;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul {
    margin-right: 30px;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul li {
    font-size: 16px;
    font-weight: 300;
    line-height: 35px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: right;
    word-break: keep-all;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul li br {
    display: none;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul li::before {
    width: 13px;
    height: 13px;
    margin-top: 11px;
    right: -7px;
    border-radius: 50%;
    border: 1px solid #2f2c2b;
    background-color: #fff;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .right-bx {
    width: 50%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box span {
    position: absolute;
    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;
    z-index: 10;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #464240;
    font-size: 24px;
    font-weight: 600;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    margin-top: -60px;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .left-bx {
    width: 50%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50%;
    height: 260px;
    border: 1px solid  #eeeceb;
    border-top-right-radius: 125px;
    border-bottom-right-radius: 125px;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul {
    margin-left: 30px;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul li {
    font-size: 16px;
    font-weight: 300;
    line-height: 35px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    word-break: keep-all;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul li br {
    display: none;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul li::before {
    width: 13px;
    height: 13px;
    margin-top: 11px;
    margin-left: -37px;
    border-radius: 50%;
    border: 1px solid  #2f2c2b;
    background-color: #fff;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .con3-sec {
    width: 100%;
    padding: 60px 10px 0px;
  }
  .con3-sec ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 0px 60px;
    border-bottom: 2px solid #dddddd;
  }
  .con3-sec ._con .title {
    width: 100%;
  }
  .con3-sec ._con .title p {
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-bottom: 30px;
    padding-left: 15px;
  }
  .con3-sec ._con .title::before {
    width: 5px;
    height: 24px;
    background-color: #123991;
    top: 8px;
  }
  .con3-sec ._con .history-sec {
    width: 100%;
    margin-top: 60px;
  }
  .con3-sec ._con .history-sec .con-history {
    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;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box span {
    position: absolute;
    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;
    z-index: 10;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #123991;
    font-size: 26px;
    font-weight: 600;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    margin-top: -60px;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .left-bx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 260px;
    border: 1px solid #eeeceb;
    border-top-right-radius: 125px;
    border-bottom-right-radius: 125px;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul {
    margin-left: 30px;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul li {
    font-size: 16px;
    font-weight: 300;
    line-height: 35px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #3c3a46;
    word-break: keep-all;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul li br {
    display: block;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul li::before {
    width: 13px;
    height: 13px;
    margin-top: 11px;
    margin-left: -37px;
    border-radius: 50%;
    border: 1px solid #2f2c2b;
    background-color: #fff;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box span {
    position: absolute;
    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;
    z-index: 10;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #8c8582;
    font-size: 26px;
    font-weight: 600;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    margin-top: -60px;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 50%;
    height: 260px;
    border: 1px solid #eeeceb;
    border-top-left-radius: 125px;
    border-bottom-left-radius: 125px;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul {
    margin-right: 30px;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul li {
    font-size: 16px;
    font-weight: 300;
    line-height: 35px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: right;
    word-break: keep-all;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul li br {
    display: block;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul li::before {
    width: 13px;
    height: 13px;
    margin-top: 11px;
    right: -7px;
    border-radius: 50%;
    border: 1px solid #2f2c2b;
    background-color: #fff;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .right-bx {
    width: 50%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box span {
    position: absolute;
    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;
    z-index: 10;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #464240;
    font-size: 24px;
    font-weight: 600;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    margin-top: -60px;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .left-bx {
    width: 50%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50%;
    height: 260px;
    border: 1px solid  #eeeceb;
    border-top-right-radius: 125px;
    border-bottom-right-radius: 125px;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul {
    margin-left: 30px;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul li {
    font-size: 16px;
    font-weight: 300;
    line-height: 35px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    word-break: keep-all;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul li br {
    display: block;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul li::before {
    width: 13px;
    height: 13px;
    margin-top: 11px;
    margin-left: -37px;
    border-radius: 50%;
    border: 1px solid  #2f2c2b;
    background-color: #fff;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .con3-sec {
    width: 100%;
    padding: 40px 10px 0px;
  }
  .con3-sec ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 0px 40px;
    border-bottom: 2px solid #dddddd;
  }
  .con3-sec ._con .title {
    width: 100%;
  }
  .con3-sec ._con .title p {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-bottom: 30px;
    padding-left: 12px;
  }
  .con3-sec ._con .title::before {
    width: 4px;
    height: 21px;
    background-color: #123991;
    top: 8px;
  }
  .con3-sec ._con .history-sec {
    width: 100%;
    margin-top: 45px;
  }
  .con3-sec ._con .history-sec .con-history {
    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;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box span {
    position: absolute;
    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;
    z-index: 10;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    left: 0%;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    background-color: #123991;
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    margin-top: -45px;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .left-bx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 45px;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx {
    position: relative;
    width: calc(100% - 45px);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
    padding: 70px 0px 70px;
    border: 0px solid #eeeceb;
    border-top-right-radius: 125px;
    border-bottom-right-radius: 125px;
    border-left: 1px solid #eeeceb;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul {
    margin-left: 30px;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul li {
    font-size: 16px;
    font-weight: 300;
    line-height: 35px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #3c3a46;
    word-break: keep-all;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul li br {
    display: none;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul li::before {
    width: 13px;
    height: 13px;
    margin-top: 11px;
    margin-left: -37px;
    border-radius: 50%;
    border: 1px solid #2f2c2b;
    background-color: #fff;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box span {
    position: absolute;
    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;
    z-index: 10;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    left: 0%;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    background-color: #8c8582;
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    margin-top: -45px;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: calc(100% - 45px);
    height: auto;
    padding: 70px 0px 70px;
    border: 0px solid #eeeceb;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-left: 1px solid #eeeceb;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul {
    margin-right: 0px;
    margin-left: 30px;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul li {
    font-size: 16px;
    font-weight: 300;
    line-height: 35px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    word-break: keep-all;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul li br {
    display: none;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul li::before {
    width: 13px;
    height: 13px;
    margin-top: 11px;
    left: -7px;
    border-radius: 50%;
    border: 1px solid #2f2c2b;
    background-color: #fff;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .right-bx {
    width: 45px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    border: 0px solid #eeeceb;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box:nth-of-type(7) > .ht-box > .right-bx {
    padding: 70px 0px 30px;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box span {
    position: absolute;
    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;
    z-index: 10;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    left: 0%;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    background-color: #464240;
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    margin-top: -45px;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .left-bx {
    width: 45px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc(100% - 45px);
    height: auto;
    padding: 70px 0px 70px;
    border: 0px solid  #eeeceb;
    border-top-right-radius: 125px;
    border-bottom-right-radius: 125px;
    border-left: 1px solid #eeeceb;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul {
    margin-left: 30px;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul li {
    font-size: 16px;
    font-weight: 300;
    line-height: 35px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    word-break: keep-all;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul li br {
    display: none;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul li::before {
    width: 13px;
    height: 13px;
    margin-top: 11px;
    margin-left: -37px;
    border-radius: 50%;
    border: 1px solid  #2f2c2b;
    background-color: #fff;
  }
}

@media (max-width: 575.99px) and (min-width: 420px) {
  .con3-sec {
    width: 100%;
    padding: 30px 10px 0px;
  }
  .con3-sec ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 0px 30px;
    border-bottom: 2px solid #dddddd;
  }
  .con3-sec ._con .title {
    width: 100%;
  }
  .con3-sec ._con .title p {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-bottom: 20px;
    padding-left: 12px;
  }
  .con3-sec ._con .title::before {
    width: 4px;
    height: 19px;
    background-color: #123991;
    top: 6px;
  }
  .con3-sec ._con .history-sec {
    width: 100%;
    margin-top: 40px;
  }
  .con3-sec ._con .history-sec .con-history {
    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;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box span {
    position: absolute;
    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;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    left: 0%;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    background-color: #123991;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    margin-top: -40px;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .left-bx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx {
    position: relative;
    width: calc(100% - 40px);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
    padding: 60px 0px 60px;
    border: 0px solid #eeeceb;
    border-top-right-radius: 125px;
    border-bottom-right-radius: 125px;
    border-left: 1px solid #eeeceb;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul {
    margin-left: 20px;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul li {
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #3c3a46;
    word-break: keep-all;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul li br {
    display: block;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul li::before {
    width: 13px;
    height: 13px;
    margin-top: 9px;
    margin-left: -27px;
    border-radius: 50%;
    border: 1px solid #2f2c2b;
    background-color: #fff;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box span {
    position: absolute;
    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;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    left: 0%;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    background-color: #8c8582;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    margin-top: -40px;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: calc(100% - 40px);
    height: auto;
    padding: 60px 0px 60px;
    border: 0px solid #eeeceb;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-left: 1px solid #eeeceb;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul {
    margin-right: 0px;
    margin-left: 20px;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul li {
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    word-break: keep-all;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul li br {
    display: block;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul li::before {
    width: 13px;
    height: 13px;
    margin-top: 9px;
    left: -7px;
    border-radius: 50%;
    border: 1px solid #2f2c2b;
    background-color: #fff;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .right-bx {
    width: 40px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    border: 0px solid #eeeceb;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box:nth-of-type(7) > .ht-box > .right-bx {
    padding: 60px 0px 20px;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box span {
    position: absolute;
    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;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    left: 0%;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    background-color: #464240;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    margin-top: -40px;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .left-bx {
    width: 40px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc(100% - 40px);
    height: auto;
    padding: 60px 0px 60px;
    border: 0px solid  #eeeceb;
    border-top-right-radius: 125px;
    border-bottom-right-radius: 125px;
    border-left: 1px solid #eeeceb;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul {
    margin-left: 20px;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul li {
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    word-break: keep-all;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul li br {
    display: block;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul li::before {
    width: 13px;
    height: 13px;
    margin-top: 9px;
    margin-left: -27px;
    border-radius: 50%;
    border: 1px solid  #2f2c2b;
    background-color: #fff;
  }
}

@media (max-width: 419.99px) {
  .con3-sec {
    width: 100%;
    padding: 20px 10px 0px;
  }
  .con3-sec ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 0px 20px;
    border-bottom: 2px solid #dddddd;
  }
  .con3-sec ._con .title {
    width: 100%;
  }
  .con3-sec ._con .title p {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-bottom: 10px;
    padding-left: 10px;
  }
  .con3-sec ._con .title::before {
    width: 4px;
    height: 16px;
    background-color: #123991;
    top: 6px;
  }
  .con3-sec ._con .history-sec {
    width: 100%;
    margin-top: 40px;
  }
  .con3-sec ._con .history-sec .con-history {
    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;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box span {
    position: absolute;
    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;
    z-index: 10;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    left: 0%;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    background-color: #123991;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    margin-top: -35px;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .left-bx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 35px;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx {
    position: relative;
    width: calc(100% - 35px);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
    padding: 50px 0px 50px;
    border: 0px solid #eeeceb;
    border-top-right-radius: 125px;
    border-bottom-right-radius: 125px;
    border-left: 1px solid #eeeceb;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul {
    margin-left: 20px;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul li {
    font-size: 14px;
    font-weight: 300;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #3c3a46;
    word-break: keep-all;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul li br {
    display: block;
  }
  .con3-sec ._con .history-sec .con-history .ht-001-box .ht-box .right-bx ul li::before {
    width: 13px;
    height: 13px;
    margin-top: 7px;
    margin-left: -27px;
    border-radius: 50%;
    border: 1px solid #2f2c2b;
    background-color: #fff;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box span {
    position: absolute;
    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;
    z-index: 10;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    left: 0%;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    background-color: #8c8582;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    margin-top: -35px;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: calc(100% - 35px);
    height: auto;
    padding: 50px 0px 50px;
    border: 0px solid #eeeceb;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-left: 1px solid #eeeceb;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul {
    margin-right: 0px;
    margin-left: 20px;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul li {
    font-size: 14px;
    font-weight: 300;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    text-align: left;
    word-break: keep-all;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul li br {
    display: block;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .left-bx ul li::before {
    width: 13px;
    height: 13px;
    margin-top: 7px;
    left: -7px;
    border-radius: 50%;
    border: 1px solid #2f2c2b;
    background-color: #fff;
  }
  .con3-sec ._con .history-sec .con-history .ht-002-box .ht-box .right-bx {
    width: 35px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    border: 0px solid #eeeceb;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box:nth-of-type(7) > .ht-box > .right-bx {
    padding: 50px 0px 20px;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box span {
    position: absolute;
    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;
    z-index: 10;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    left: 0%;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    background-color: #464240;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    margin-top: -35px;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .left-bx {
    width: 35px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc(100% - 35px);
    height: auto;
    padding: 50px 0px 50px;
    border: 0px solid  #eeeceb;
    border-top-right-radius: 125px;
    border-bottom-right-radius: 125px;
    border-left: 1px solid #eeeceb;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul {
    margin-left: 20px;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul li {
    font-size: 14px;
    font-weight: 300;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
    word-break: keep-all;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul li br {
    display: block;
  }
  .con3-sec ._con .history-sec .con-history .ht-003-box .ht-box .right-bx ul li::before {
    width: 13px;
    height: 13px;
    margin-top: 7px;
    margin-left: -27px;
    border-radius: 50%;
    border: 1px solid  #2f2c2b;
    background-color: #fff;
  }
}

.con4-sec {
  width: 100%;
  padding: 100px 0px 0px;
}

.con4-sec ._con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.con4-sec ._con .title {
  width: 100%;
}

.con4-sec ._con .title p {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #123991;
  word-break: keep-all;
  padding-bottom: 40px;
  padding-left: 15px;
}

.con4-sec ._con .title::before {
  width: 5px;
  height: 30px;
  background-color: #123991;
  top: 8px;
}

.con4-sec ._con .orga-sec {
  width: 100%;
}

.con4-sec ._con .orga-sec .con-orga {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.con4-sec ._con .orga-sec .con-orga .orga-1-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.con4-sec ._con .orga-sec .con-orga .orga-1-box .circle-bx {
  width: 150px;
  height: 150px;
  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;
  border-radius: 50%;
  background-color: #123991;
}

.con4-sec ._con .orga-sec .con-orga .orga-1-box .circle-bx h5 {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
}

.con4-sec ._con .orga-sec .con-orga .orga-2-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 0px 50px;
}

.con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx .square-bx {
  width: 200px;
  height: 50px;
  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;
  margin-right: 150px;
  background-color: #005cbf;
}

.con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx .square-bx h5 {
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
}

.con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx .square-bx::after {
  width: 150px;
  height: 1px;
  right: 50%;
  top: 224px;
  background-color: #e1e3e5;
}

.con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx .square-bx {
  width: 200px;
  height: 50px;
  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;
  margin-left: 150px;
  border: 1px solid  #005cbf;
}

.con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx .square-bx h5 {
  font-size: 18px;
  font-weight: 300;
  line-height: 18px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033;
}

.con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx .square-bx::after {
  width: 150px;
  height: 1px;
  left: 50%;
  top: 224px;
  background-color: #e1e3e5;
}

.con4-sec ._con .orga-sec .con-orga .orga-3-box {
  width: 100%;
  padding-top: 50px;
}

.con4-sec ._con .orga-sec .con-orga .orga-3-box::after {
  width: 1px;
  height: 35%;
  top: 150px;
  left: 50%;
  background-color: #e1e3e5;
}

.con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx {
  width: 100%;
  padding: 0px 100px 0px;
}

.con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul::before {
  width: 671px;
  height: 1px;
  background-color: #e1e3e5;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 33%;
  margin-top: 30px;
}

.con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li::before {
  width: 1px;
  left: 50%;
  top: -30px;
  height: 30px;
  background-color: #e1e3e5;
}

.con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl {
  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;
  width: 100%;
}

.con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dt {
  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: 100%;
  margin-bottom: 10px;
}

.con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dt .square-bx {
  width: 90%;
  height: 45px;
  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;
  background-color: #51b9ca;
}

.con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dt .square-bx h5 {
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #fff;
}

.con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-bottom: 10px;
}

.con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dd .square-bx {
  width: 90%;
  height: 45px;
  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;
  border: 1px solid #51b9ca;
}

.con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dd .square-bx h5 {
  font-size: 16px;
  font-weight: 300;
  line-height: 18px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #6a6a6a;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .con4-sec {
    width: 100%;
    padding: 80px 10px 0px;
  }
  .con4-sec ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con4-sec ._con .title {
    width: 100%;
  }
  .con4-sec ._con .title p {
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-bottom: 40px;
    padding-left: 15px;
  }
  .con4-sec ._con .title::before {
    width: 5px;
    height: 28px;
    background-color: #123991;
    top: 8px;
  }
  .con4-sec ._con .orga-sec {
    width: 100%;
  }
  .con4-sec ._con .orga-sec .con-orga {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-1-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-1-box .circle-bx {
    width: 150px;
    height: 150px;
    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;
    border-radius: 50%;
    background-color: #123991;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-1-box .circle-bx h5 {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 50px 0px 50px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx .square-bx {
    width: 200px;
    height: 50px;
    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;
    margin-right: 150px;
    background-color: #005cbf;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx .square-bx h5 {
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx .square-bx::after {
    width: 150px;
    height: 1px;
    right: 50%;
    top: 224px;
    background-color: #e1e3e5;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx .square-bx {
    width: 200px;
    height: 50px;
    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;
    margin-left: 150px;
    border: 1px solid  #005cbf;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx .square-bx h5 {
    font-size: 18px;
    font-weight: 300;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx .square-bx::after {
    width: 150px;
    height: 1px;
    left: 50%;
    top: 224px;
    background-color: #e1e3e5;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box {
    width: 100%;
    padding-top: 40px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box::after {
    width: 1px;
    height: 33%;
    top: 150px;
    left: 50%;
    background-color: #e1e3e5;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx {
    width: 100%;
    padding: 0px 0px 0px 1px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul::before {
    width: 67%;
    height: 1px;
    background-color: #e1e3e5;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 33%;
    margin-top: 30px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li::before {
    width: 1px;
    left: 50%;
    top: -30px;
    height: 30px;
    background-color: #e1e3e5;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl {
    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;
    width: 100%;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dt {
    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: 100%;
    margin-bottom: 10px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dt .square-bx {
    width: 90%;
    height: 45px;
    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;
    background-color: #51b9ca;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dt .square-bx h5 {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #fff;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin-bottom: 10px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dd .square-bx {
    width: 90%;
    height: 45px;
    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;
    border: 1px solid #51b9ca;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dd .square-bx h5 {
    font-size: 16px;
    font-weight: 300;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #6a6a6a;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .con4-sec {
    width: 100%;
    padding: 60px 10px 0px;
  }
  .con4-sec ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con4-sec ._con .title {
    width: 100%;
  }
  .con4-sec ._con .title p {
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-bottom: 30px;
    padding-left: 15px;
  }
  .con4-sec ._con .title::before {
    width: 5px;
    height: 24px;
    background-color: #123991;
    top: 8px;
  }
  .con4-sec ._con .orga-sec {
    width: 100%;
  }
  .con4-sec ._con .orga-sec .con-orga {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-1-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-1-box .circle-bx {
    width: 130px;
    height: 130px;
    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;
    border-radius: 50%;
    background-color: #123991;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-1-box .circle-bx h5 {
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 40px 0px 40px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx .square-bx {
    width: 200px;
    height: 50px;
    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;
    margin-right: 150px;
    background-color: #005cbf;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx .square-bx h5 {
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx .square-bx::after {
    width: 150px;
    height: 1px;
    right: 50%;
    top: 194px;
    background-color: #e1e3e5;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx .square-bx {
    width: 200px;
    height: 50px;
    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;
    margin-left: 150px;
    border: 1px solid  #005cbf;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx .square-bx h5 {
    font-size: 18px;
    font-weight: 300;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx .square-bx::after {
    width: 150px;
    height: 1px;
    left: 50%;
    top: 194px;
    background-color: #e1e3e5;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box {
    width: 100%;
    padding-top: 30px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box::after {
    width: 1px;
    height: 34%;
    top: 130px;
    left: 50%;
    background-color: #e1e3e5;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx {
    width: 100%;
    padding: 0px 0px 0px 1px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul::before {
    width: 68%;
    height: 1px;
    background-color: #e1e3e5;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 32%;
    margin-top: 30px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li::before {
    width: 1px;
    left: 50%;
    top: -30px;
    height: 30px;
    background-color: #e1e3e5;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl {
    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;
    width: 100%;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dt {
    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: 100%;
    margin-bottom: 10px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dt .square-bx {
    width: 100%;
    height: 45px;
    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;
    background-color: #51b9ca;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dt .square-bx h5 {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #fff;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin-bottom: 10px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dd .square-bx {
    width: 100%;
    height: 45px;
    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;
    border: 1px solid #51b9ca;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dd .square-bx h5 {
    font-size: 16px;
    font-weight: 300;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #6a6a6a;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .con4-sec {
    width: 100%;
    padding: 40px 10px 0px;
  }
  .con4-sec ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con4-sec ._con .title {
    width: 100%;
  }
  .con4-sec ._con .title p {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-bottom: 30px;
    padding-left: 12px;
  }
  .con4-sec ._con .title::before {
    width: 4px;
    height: 21px;
    background-color: #123991;
    top: 8px;
  }
  .con4-sec ._con .orga-sec {
    width: 100%;
  }
  .con4-sec ._con .orga-sec .con-orga {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-1-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-1-box .circle-bx {
    width: 110px;
    height: 110px;
    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;
    border-radius: 50%;
    background-color: #123991;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-1-box .circle-bx h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 0px 30px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx .square-bx {
    width: 150px;
    height: 45px;
    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;
    margin-right: 100px;
    background-color: #005cbf;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx .square-bx h5 {
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx .square-bx::after {
    width: 100px;
    height: 1px;
    right: 50%;
    top: 164px;
    background-color: #e1e3e5;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx .square-bx {
    width: 150px;
    height: 45px;
    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;
    margin-left: 100px;
    border: 1px solid  #005cbf;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx .square-bx h5 {
    font-size: 18px;
    font-weight: 300;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx .square-bx::after {
    width: 100px;
    height: 1px;
    left: 50%;
    top: 164px;
    background-color: #e1e3e5;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box {
    width: 100%;
    padding-top: 20px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box::after {
    width: 1px;
    height: 33%;
    top: 110px;
    left: 50%;
    background-color: #e1e3e5;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx {
    width: 100%;
    padding: 0px 0px 0px 1px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul::before {
    width: 68%;
    height: 1px;
    background-color: #e1e3e5;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 32%;
    margin-top: 30px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li::before {
    width: 1px;
    left: 50%;
    top: -30px;
    height: 30px;
    background-color: #e1e3e5;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl {
    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;
    width: 100%;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dt {
    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: 100%;
    margin-bottom: 10px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dt .square-bx {
    width: 100%;
    height: 42px;
    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;
    background-color: #51b9ca;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dt .square-bx h5 {
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #fff;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin-bottom: 10px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dd .square-bx {
    width: 100%;
    height: 42px;
    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;
    border: 1px solid #51b9ca;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dd .square-bx h5 {
    font-size: 16px;
    font-weight: 300;
    line-height: 16px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #6a6a6a;
  }
}

@media (max-width: 575.99px) and (min-width: 420px) {
  .con4-sec {
    width: 100%;
    padding: 30px 10px 0px;
  }
  .con4-sec ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con4-sec ._con .title {
    width: 100%;
  }
  .con4-sec ._con .title p {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-bottom: 20px;
    padding-left: 12px;
  }
  .con4-sec ._con .title::before {
    width: 4px;
    height: 19px;
    background-color: #123991;
    top: 6px;
  }
  .con4-sec ._con .orga-sec {
    width: 100%;
  }
  .con4-sec ._con .orga-sec .con-orga {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-1-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-1-box .circle-bx {
    width: 90px;
    height: 90px;
    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;
    border-radius: 50%;
    background-color: #123991;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-1-box .circle-bx h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 0px 30px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx .square-bx {
    width: 120px;
    height: 45px;
    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;
    margin-right: 50px;
    background-color: #005cbf;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx .square-bx h5 {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx .square-bx::after {
    width: 50px;
    height: 1px;
    right: 50%;
    top: 144px;
    background-color: #e1e3e5;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx .square-bx {
    width: 120px;
    height: 45px;
    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;
    margin-left: 50px;
    border: 1px solid  #005cbf;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx .square-bx h5 {
    font-size: 14px;
    font-weight: 300;
    line-height: 14px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx .square-bx::after {
    width: 50px;
    height: 1px;
    left: 50%;
    top: 144px;
    background-color: #e1e3e5;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box {
    width: 100%;
    padding-top: 20px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box::after {
    width: 1px;
    height: 33%;
    top: 90px;
    left: 50%;
    background-color: #e1e3e5;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx {
    width: 100%;
    padding: 0px 0px 0px 1px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul::before {
    width: 68%;
    height: 1px;
    background-color: #e1e3e5;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 32%;
    margin-top: 30px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li::before {
    width: 1px;
    left: 50%;
    top: -30px;
    height: 30px;
    background-color: #e1e3e5;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl {
    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;
    width: 100%;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dt {
    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: 100%;
    margin-bottom: 10px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dt .square-bx {
    width: 100%;
    height: 42px;
    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;
    background-color: #51b9ca;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dt .square-bx h5 {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #fff;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin-bottom: 10px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dd .square-bx {
    width: 100%;
    height: 42px;
    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;
    border: 1px solid #51b9ca;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dd .square-bx h5 {
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #6a6a6a;
  }
}

@media (max-width: 419.99px) {
  .con4-sec {
    width: 100%;
    padding: 20px 10px 0px;
  }
  .con4-sec ._con {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con4-sec ._con .title {
    width: 100%;
  }
  .con4-sec ._con .title p {
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #123991;
    word-break: keep-all;
    padding-bottom: 10px;
    padding-left: 10px;
  }
  .con4-sec ._con .title::before {
    width: 4px;
    height: 16px;
    background-color: #123991;
    top: 6px;
  }
  .con4-sec ._con .orga-sec {
    width: 100%;
  }
  .con4-sec ._con .orga-sec .con-orga {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-1-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-1-box .circle-bx {
    width: 90px;
    height: 90px;
    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;
    border-radius: 50%;
    background-color: #123991;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-1-box .circle-bx h5 {
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 0px 30px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx .square-bx {
    width: 110px;
    height: 45px;
    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;
    margin-right: 30px;
    background-color: #005cbf;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx .square-bx h5 {
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .left-bx .square-bx::after {
    width: 30px;
    height: 1px;
    right: 50%;
    top: 144px;
    background-color: #e1e3e5;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx .square-bx {
    width: 110px;
    height: 45px;
    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;
    margin-left: 30px;
    border: 1px solid  #005cbf;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx .square-bx h5 {
    font-size: 14px;
    font-weight: 300;
    line-height: 14px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-2-box .right-bx .square-bx::after {
    width: 30px;
    height: 1px;
    left: 50%;
    top: 144px;
    background-color: #e1e3e5;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box {
    width: 100%;
    padding-top: 0px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box::after {
    width: 1px;
    height: 29%;
    top: 90px;
    left: 50%;
    background-color: #e1e3e5;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx {
    width: 100%;
    padding: 0px 0px 0px 1px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul::before {
    width: 68%;
    height: 1px;
    background-color: #e1e3e5;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 32%;
    margin-top: 20px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li::before {
    width: 1px;
    left: 50%;
    top: -20px;
    height: 20px;
    background-color: #e1e3e5;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl {
    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;
    width: 100%;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dt {
    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: 100%;
    margin-bottom: 10px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dt .square-bx {
    width: 100%;
    height: 42px;
    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;
    background-color: #51b9ca;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dt .square-bx h5 {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #fff;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin-bottom: 10px;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dd .square-bx {
    width: 100%;
    height: 42px;
    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;
    border: 1px solid #51b9ca;
  }
  .con4-sec ._con .orga-sec .con-orga .orga-3-box .orga-ul-bx ul li dl dd .square-bx h5 {
    font-size: 14px;
    font-weight: 300;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #6a6a6a;
  }
}
/*# sourceMappingURL=sub1-1.css.map */