@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+KR:300,400,500,700");
@import url("https://fonts.googleapis.com/css?family=Frank+Ruhl+Libre:300,400,500,700,900");
[class*="con-"] {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
}

[class*="con-"]::after {
  clear: both;
}

[class^="box-"],
[class$="-box"] {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[class^="bx-"],
[class$="-bx"] {
  position: relative;
  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;
}

/*  */
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: block;
  content: '';
}

img, iframe, video, object {
  max-width: 100%;
}

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: 100%;
}

section::after {
  clear: both;
}

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

/* @import url('https://fonts.googleapis.com/css?family=Noto+Serif+KR:200,300'); */
/* @import url('https://fonts.googleapis.com/css?family=Lato:700,900'); */
/* 오버레이 */
/* background-image */
/* 원형 박스 */
/* transform */
/* 텍스트 이펙트 */
.visu-top {
  -webkit-animation: top 1s ease-out 0s both;
          animation: top 1s ease-out 0s both;
}

.visu-top2 {
  -webkit-animation: top2 1s ease-out 0s both;
          animation: top2 1s ease-out 0s both;
}

.visu-top3 {
  -webkit-animation: top3 1s ease-out 0s both;
          animation: top3 1s ease-out 0s both;
}

@-webkit-keyframes top {
  0% {
    opacity: 0;
    margin-top: -120px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}

@keyframes top {
  0% {
    opacity: 0;
    margin-top: -120px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}

@-webkit-keyframes top2 {
  0% {
    opacity: 0;
    margin-top: -180px;
  }
  100% {
    opacity: 1;
    margin-top: -60px;
  }
}

@keyframes top2 {
  0% {
    opacity: 0;
    margin-top: -180px;
  }
  100% {
    opacity: 1;
    margin-top: -60px;
  }
}

@-webkit-keyframes top3 {
  0% {
    opacity: 0;
    margin-left: -200px;
  }
  100% {
    opacity: 1;
    margin-left: 0px;
  }
}

@keyframes top3 {
  0% {
    opacity: 0;
    margin-left: -200px;
  }
  100% {
    opacity: 1;
    margin-left: 0px;
  }
}

/* 끝 */
/* 슬라이드 */
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/**
 * Owl Carousel v2.1.1
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
  /* .owl-item {
        min-height: 1px;
        float: left;
        -webkit-backface-visibility: hidden;
        -webkit-touch-callout: none;

        .owl-lazy {
            opacity: 0;
            transition: opacity .4s ease;
        }

        img {
            display: block;
            width: 100%;
            height: 200px;
            -webkit-transform-style: preserve-3d;

            &.owl-lazy {
                -webkit-transform-style: preserve-3d;
                transform-style: preserve-3d;
            }
        }
    } */
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  display: none;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform .1s ease;
  -webkit-transition: -webkit-transform .1s ease;
  transition: transform .1s ease;
  transition: transform .1s ease, -webkit-transform .1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.no-js .owl-carousel {
  display: block;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.owl-height {
  -webkit-transition: height .5s ease-in-out;
  transition: height .5s ease-in-out;
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

#con1-sec .top-bn {
  position: relative;
  width: 100%;
  height: 200px;
  background-image: url("../img/con1-3.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#con1-sec .top-bn .con-bn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#con1-sec .top-bn .con-bn h3 {
  font-size: 34px;
  font-weight: 700;
  line-height: 50px;
  font-family: "Frank Ruhl Libre", serif !important;
  color: #17181a !important;
}

#con1-sec .top-bn .con-bn p {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033 !important;
}

#con1-sec .top-bn .con-bn .btn {
  width: 200px;
  height: 40px;
  margin-top: 20px;
  background-color: #ffffff;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#con1-sec .top-bn .con-bn .btn:hover {
  background-color: #c2a34e;
  color: #ffffff;
}

#con1-sec .con-1 {
  padding-top: 70px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#con1-sec .con-1 .tit-box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#con1-sec .con-1 .tit-box h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #17181a !important;
}

#con1-sec .con-1 .tit-box p {
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #606266 !important;
  margin-bottom: 30px;
}

#con1-sec .con-1 .owl-carousel {
  z-index: 0;
}

#con1-sec .con-1 .owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

#con1-sec .con-1 .owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
}

#con1-sec .con-1 .owl-carousel {
  position: relative;
  width: 100%;
}

#con1-sec .con-1 .owl-carousel .item {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}

#con1-sec .con-1 .owl-carousel .item:hover .link {
  height: 50px;
}

#con1-sec .con-1 .owl-carousel .item .link {
  position: absolute;
  z-index: 100;
  left: 0;
  bottom: -10px;
  display: block;
  width: 100%;
  height: 0;
  text-align: center;
  padding-top: 10px;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  background-color: #d14a4a;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  cursor: pointer;
}

#con1-sec .con-1 .owl-carousel .item img {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
  /* display: block; */
  width: 100%;
  height: 100%;
  max-height: 300px;
  -webkit-transform-style: preserve-3d;
}

#con1-sec .con-1 .owl-carousel .item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

#con1-sec .con-1 .owl-carousel .item h3 {
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  margin-top: 20px;
  color: #2f3033 !important;
}

#con1-sec .con-1 .owl-carousel .item p {
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  line-height: 21px;
  font-family: "Noto Sans KR", sans-serif !important;
  padding: 5px 0 10px;
  color: #47494d !important;
}

#con1-sec .con-1 .owl-carousel .item span {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033 !important;
  margin-bottom: 20px;
}

#con1-sec .con-1 .owl-carousel .item span:nth-of-type(2) {
  text-decoration: line-through;
  font-size: 80%;
  font-weight: 300;
  color: #939599 !important;
  margin-left: 10px;
}

#con1-sec .con-1 .owl-carousel:hover .owl-nav .owl-next {
  right: 0;
  background-color: #c24e4e;
}

#con1-sec .con-1 .owl-carousel:hover .owl-nav .owl-prev {
  left: -2px;
  background-color: #c24e4e;
}

#con1-sec .con-1 .owl-carousel .owl-nav {
  position: absolute;
  overflow: hidden;
  z-index: 1;
  bottom: 0;
  right: 0;
  height: 70px;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#con1-sec .con-1 .owl-carousel .owl-nav .owl-next {
  position: absolute;
  width: 35px;
  height: 35px;
  border: 1px solid #ffffff;
  right: -40px;
  background-image: url("../img/icon/right-2.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

#con1-sec .con-1 .owl-carousel .owl-nav .owl-next:hover {
  background-color: #c21b1b;
}

#con1-sec .con-1 .owl-carousel .owl-nav .owl-prev {
  position: absolute;
  width: 35px;
  height: 35px;
  border: 1px solid #ffffff;
  left: -40px;
  background-image: url("../img/icon/left-2.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  margin-left: 1px;
}

#con1-sec .con-1 .owl-carousel .owl-nav .owl-prev:hover {
  background-color: #c21b1b;
}

#con1-sec .con-1 .owl-carousel .owl-nav div {
  margin-top: -30px;
  position: absolute;
  top: 50%;
  color: #ffffff;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  #con1-sec .top-bn {
    position: relative;
    width: 100%;
    height: 200px;
    background-image: url("../img/con1-3.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #con1-sec .top-bn .con-bn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #con1-sec .top-bn .con-bn h3 {
    font-size: 34px;
    font-weight: 700;
    line-height: 50px;
    font-family: "Frank Ruhl Libre", serif !important;
    color: #17181a !important;
  }
  #con1-sec .top-bn .con-bn p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  #con1-sec .top-bn .con-bn .btn {
    width: 200px;
    height: 40px;
    margin-top: 20px;
    background-color: #ffffff;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
  }
  #con1-sec .top-bn .con-bn .btn:hover {
    background-color: #c2a34e;
    color: #ffffff;
  }
  #con1-sec .con-1 {
    padding: 70px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #con1-sec .con-1 .tit-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #con1-sec .con-1 .tit-box h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #17181a !important;
  }
  #con1-sec .con-1 .tit-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
    margin-bottom: 30px;
  }
  #con1-sec .con-1 .owl-carousel {
    z-index: 0;
  }
  #con1-sec .con-1 .owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
  }
  #con1-sec .con-1 .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease;
  }
  #con1-sec .con-1 .owl-carousel .item:hover .link {
    height: 50px;
  }
  #con1-sec .con-1 .owl-carousel .item img {
    max-height: 260px;
  }
  #con1-sec .con-1 .owl-carousel .item h3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    margin-top: 20px;
  }
  #con1-sec .con-1 .owl-carousel .item p {
    font-size: 13px;
    font-weight: 300;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding: 5px 0 10px;
  }
  #con1-sec .con-1 .owl-carousel .item span {
    font-size: 13px;
    font-weight: 400;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  #con1-sec .con-1 .owl-carousel:hover .owl-nav .owl-next {
    right: 0;
    background-color: #c24e4e;
  }
  #con1-sec .con-1 .owl-carousel:hover .owl-nav .owl-prev {
    left: -2px;
    background-color: #c24e4e;
  }
  #con1-sec .con-1 .owl-carousel .owl-nav {
    height: 70px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #con1-sec .con-1 .owl-carousel .owl-nav .owl-next {
    width: 35px;
    height: 35px;
    border: 1px solid #ffffff;
    right: -40px;
  }
  #con1-sec .con-1 .owl-carousel .owl-nav .owl-prev {
    width: 35px;
    height: 35px;
    border: 1px solid #ffffff;
    left: -40px;
    margin-left: 1px;
  }
  #con1-sec .con-1 .owl-carousel .owl-nav div {
    margin-top: -30px;
    top: 50%;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  #con1-sec .top-bn {
    position: relative;
    width: 100%;
    height: 200px;
    background-image: url("../img/con1-3.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #con1-sec .top-bn .con-bn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #con1-sec .top-bn .con-bn h3 {
    font-size: 34px;
    font-weight: 700;
    line-height: 50px;
    font-family: "Frank Ruhl Libre", serif !important;
    color: #17181a !important;
  }
  #con1-sec .top-bn .con-bn p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  #con1-sec .top-bn .con-bn .btn {
    width: 180px;
    height: 40px;
    margin-top: 20px;
    background-color: #ffffff;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
  }
  #con1-sec .top-bn .con-bn .btn:hover {
    background-color: #c2a34e;
    color: #ffffff;
  }
  #con1-sec .con-1 {
    padding: 70px 20px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #con1-sec .con-1 .tit-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #con1-sec .con-1 .tit-box h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #17181a !important;
  }
  #con1-sec .con-1 .tit-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
    margin-bottom: 30px;
  }
  #con1-sec .con-1 .owl-carousel {
    z-index: 0;
  }
  #con1-sec .con-1 .owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
  }
  #con1-sec .con-1 .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease;
  }
  #con1-sec .con-1 .owl-carousel .item:hover .link {
    height: 50px;
  }
  #con1-sec .con-1 .owl-carousel .item img {
    max-height: 280px;
  }
  #con1-sec .con-1 .owl-carousel .item h3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    margin-top: 20px;
  }
  #con1-sec .con-1 .owl-carousel .item p {
    font-size: 13px;
    font-weight: 300;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding: 5px 0 10px;
  }
  #con1-sec .con-1 .owl-carousel .item span {
    font-size: 13px;
    font-weight: 400;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  #con1-sec .con-1 .owl-carousel:hover .owl-nav .owl-next {
    right: 0;
    background-color: #c24e4e;
  }
  #con1-sec .con-1 .owl-carousel:hover .owl-nav .owl-prev {
    left: -2px;
    background-color: #c24e4e;
  }
  #con1-sec .con-1 .owl-carousel .owl-nav {
    height: 70px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #con1-sec .con-1 .owl-carousel .owl-nav .owl-next {
    width: 35px;
    height: 35px;
    border: 1px solid #ffffff;
    right: -40px;
  }
  #con1-sec .con-1 .owl-carousel .owl-nav .owl-prev {
    width: 35px;
    height: 35px;
    border: 1px solid #ffffff;
    left: -40px;
    margin-left: 1px;
  }
  #con1-sec .con-1 .owl-carousel .owl-nav div {
    margin-top: -30px;
    top: 50%;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  #con1-sec .top-bn {
    position: relative;
    width: 100%;
    height: 200px;
    background-image: url("../img/con1-3.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #con1-sec .top-bn .con-bn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #con1-sec .top-bn .con-bn h3 {
    font-size: 34px;
    font-weight: 700;
    line-height: 50px;
    font-family: "Frank Ruhl Libre", serif !important;
    color: #17181a !important;
  }
  #con1-sec .top-bn .con-bn p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  #con1-sec .top-bn .con-bn .btn {
    width: 180px;
    height: 40px;
    margin-top: 20px;
    background-color: #ffffff;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
  }
  #con1-sec .top-bn .con-bn .btn:hover {
    background-color: #c2a34e;
    color: #ffffff;
  }
  #con1-sec .con-1 {
    padding: 50px 10px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #con1-sec .con-1 .tit-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #con1-sec .con-1 .tit-box h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #17181a !important;
  }
  #con1-sec .con-1 .tit-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
    margin-bottom: 30px;
  }
  #con1-sec .con-1 .owl-carousel {
    z-index: 0;
  }
  #con1-sec .con-1 .owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
  }
  #con1-sec .con-1 .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease;
  }
  #con1-sec .con-1 .owl-carousel .item:hover .link {
    height: 50px;
  }
  #con1-sec .con-1 .owl-carousel .item img {
    max-height: 320px;
  }
  #con1-sec .con-1 .owl-carousel .item h3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    margin-top: 20px;
  }
  #con1-sec .con-1 .owl-carousel .item p {
    font-size: 13px;
    font-weight: 300;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding: 5px 0 10px;
  }
  #con1-sec .con-1 .owl-carousel .item span {
    font-size: 13px;
    font-weight: 400;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  #con1-sec .con-1 .owl-carousel:hover .owl-nav .owl-next {
    right: 0;
    background-color: #c24e4e;
  }
  #con1-sec .con-1 .owl-carousel:hover .owl-nav .owl-prev {
    left: -2px;
    background-color: #c24e4e;
  }
  #con1-sec .con-1 .owl-carousel .owl-nav {
    height: 70px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #con1-sec .con-1 .owl-carousel .owl-nav .owl-next {
    width: 35px;
    height: 35px;
    border: 1px solid #ffffff;
    right: -40px;
  }
  #con1-sec .con-1 .owl-carousel .owl-nav .owl-prev {
    width: 35px;
    height: 35px;
    border: 1px solid #ffffff;
    left: -40px;
    margin-left: 1px;
  }
  #con1-sec .con-1 .owl-carousel .owl-nav div {
    margin-top: -30px;
    top: 50%;
  }
}

@media (max-width: 575.99px) {
  #con1-sec .top-bn {
    position: relative;
    width: 100%;
    height: 200px;
    background-image: url("../img/con1-3.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #con1-sec .top-bn .con-bn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #con1-sec .top-bn .con-bn h3 {
    font-size: 34px;
    font-weight: 700;
    line-height: 50px;
    font-family: "Frank Ruhl Libre", serif !important;
    color: #17181a !important;
  }
  #con1-sec .top-bn .con-bn p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  #con1-sec .top-bn .con-bn .btn {
    width: 180px;
    height: 40px;
    margin-top: 20px;
    background-color: #ffffff;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
  }
  #con1-sec .top-bn .con-bn .btn:hover {
    background-color: #c2a34e;
    color: #ffffff;
  }
  #con1-sec .con-1 {
    padding: 50px 10px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #con1-sec .con-1 .tit-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #con1-sec .con-1 .tit-box h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #17181a !important;
  }
  #con1-sec .con-1 .tit-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
    margin-bottom: 30px;
  }
  #con1-sec .con-1 .owl-carousel {
    z-index: 0;
  }
  #con1-sec .con-1 .owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
  }
  #con1-sec .con-1 .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity .4s ease;
    transition: opacity .4s ease;
  }
  #con1-sec .con-1 .owl-carousel .item:hover .link {
    height: 50px;
  }
  #con1-sec .con-1 .owl-carousel .item img {
    max-height: 320px;
  }
  #con1-sec .con-1 .owl-carousel .item h3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    margin-top: 20px;
  }
  #con1-sec .con-1 .owl-carousel .item p {
    font-size: 13px;
    font-weight: 300;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif !important;
    padding: 5px 0 10px;
  }
  #con1-sec .con-1 .owl-carousel .item span {
    font-size: 13px;
    font-weight: 400;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  #con1-sec .con-1 .owl-carousel:hover .owl-nav .owl-next {
    right: 0;
    background-color: #c24e4e;
  }
  #con1-sec .con-1 .owl-carousel:hover .owl-nav .owl-prev {
    left: -2px;
    background-color: #c24e4e;
  }
  #con1-sec .con-1 .owl-carousel .owl-nav {
    height: 70px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #con1-sec .con-1 .owl-carousel .owl-nav .owl-next {
    width: 35px;
    height: 35px;
    border: 1px solid #ffffff;
    right: -40px;
  }
  #con1-sec .con-1 .owl-carousel .owl-nav .owl-prev {
    width: 35px;
    height: 35px;
    border: 1px solid #ffffff;
    left: -40px;
    margin-left: 1px;
  }
  #con1-sec .con-1 .owl-carousel .owl-nav div {
    margin-top: -30px;
    top: 50%;
  }
}

body.hidden-scroll {
  overflow: hidden;
}

.sl-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  opacity: 0.7;
  display: none;
  z-index: 1035;
}

.sl-wrapper {
  z-index: 1040;
}

.sl-wrapper button {
  border: 0 none;
  background: transparent;
  font-size: 28px;
  padding: 0;
  cursor: pointer;
}

.sl-wrapper .sl-wrapper button:hover {
  opacity: 0.7;
}

.sl-wrapper .sl-close {
  display: none;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 10060;
  margin-top: -14px;
  margin-right: -14px;
  height: 44px;
  width: 44px;
  line-height: 44px;
  font-family: Arial, Baskerville, monospace;
  color: #000;
  font-size: 3rem;
}

.sl-wrapper .sl-close:focus {
  outline: none;
}

.sl-wrapper .sl-counter {
  display: none;
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 1060;
  color: #000;
  font-size: 1rem;
}

.sl-wrapper .sl-navigation {
  width: 100%;
  display: none;
}

.sl-wrapper button {
  position: fixed;
  top: 50%;
  margin-top: -22px;
  height: 44px;
  width: 22px;
  line-height: 44px;
  text-align: center;
  display: block;
  z-index: 10060;
  font-family: Arial, Baskerville, monospace;
  color: #000;
}

.sl-wrapper button.sl-next {
  right: 5px;
  font-size: 2rem;
}

.sl-wrapper button.sl-prev {
  left: 5px;
  font-size: 2rem;
}

.sl-wrapper button:focus {
  outline: none;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 10px;
    font-size: 3rem;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 10px;
    font-size: 3rem;
  }
}

@media (min-width: 50em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 20px;
    font-size: 3rem;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 20px;
    font-size: 3rem;
  }
}

.sl-wrapper .sl-image {
  position: fixed;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 10000;
}

.sl-wrapper .sl-image img {
  margin: 0;
  padding: 0;
  display: block;
  border: 0 none;
  width: 100%;
  height: auto;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}

@media (min-width: 50em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}

.sl-wrapper .sl-image iframe {
  background: #000;
  border: 0 none;
}

@media (min-width: 35.5em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}

@media (min-width: 50em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}

.sl-wrapper .sl-image .sl-caption {
  display: none;
  padding: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.sl-wrapper .sl-image .sl-caption.pos-top {
  bottom: auto;
  top: 0;
}

.sl-wrapper .sl-image .sl-caption.pos-outside {
  bottom: auto;
}

.sl-wrapper .sl-image .sl-download {
  display: none;
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #000;
  z-index: 1060;
}

.sl-spinner {
  display: none;
  border: 5px solid #333;
  border-radius: 40px;
  height: 40px;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0;
  position: fixed;
  top: 50%;
  width: 40px;
  z-index: 1007;
  -webkit-animation: pulsate 1s ease-out infinite;
  animation: pulsate 1s ease-out infinite;
}

.sl-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.sl-transition {
  transition: -webkit-transform ease 200ms;
  -webkit-transition: -webkit-transform ease 200ms;
  transition: transform ease 200ms;
  transition: transform ease 200ms, -webkit-transform ease 200ms;
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
}

@-webkit-keyframes leftmove {
  0% {
    -webkit-transform: translateX(-300px);
            transform: translateX(-300px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes leftmove {
  0% {
    -webkit-transform: translateX(-300px);
            transform: translateX(-300px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes rightmove {
  0% {
    -webkit-transform: translateX(300px);
            transform: translateX(300px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes rightmove {
  0% {
    -webkit-transform: translateX(300px);
            transform: translateX(300px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes leftmove-m {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes leftmove-m {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes rightmove-m {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes rightmove-m {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

.visu-sec .visu-box {
  width: 100%;
  height: 358px;
  background-image: url("../images/s-visu-3.jpg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.visu-sec .visu-box .con-visu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.visu-sec .visu-box .con-visu p {
  font-size: 32px;
  font-weight: 100;
  line-height: 42px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  text-shadow: #777 1px 1px 6px;
  -webkit-animation: leftmove 1s ease-in-out 0.3s both;
          animation: leftmove 1s ease-in-out 0.3s both;
  z-index: 10;
  margin-top: 90px;
}

.visu-sec .visu-box .con-visu h3 {
  z-index: 10;
  font-size: 41px;
  font-weight: 500;
  line-height: 51px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #ffffff;
  -webkit-animation: rightmove 1s ease-in-out 0.3s both;
          animation: rightmove 1s ease-in-out 0.3s both;
  text-shadow: #777 1px 1px 6px;
  margin-top: 10px;
}

.visu-sec .visu-over {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.27);
  z-index: 1;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .visu-sec .visu-box {
    width: 100%;
    height: 330px;
    background-image: url("../images/s-visu-3.jpg");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .visu-sec .visu-box .con-visu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .visu-sec .visu-box .con-visu p {
    font-size: 32px;
    font-weight: 100;
    line-height: 42px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-shadow: #777 1px 1px 6px;
    -webkit-animation: leftmove 1s ease-in-out 0.3s both;
            animation: leftmove 1s ease-in-out 0.3s both;
    z-index: 10;
    margin-top: 90px;
  }
  .visu-sec .visu-box .con-visu h3 {
    z-index: 10;
    font-size: 41px;
    font-weight: 500;
    line-height: 51px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    -webkit-animation: rightmove 1s ease-in-out 0.3s both;
            animation: rightmove 1s ease-in-out 0.3s both;
    text-shadow: #777 1px 1px 6px;
    margin-top: 10px;
  }
  .visu-sec .visu-over {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.27);
    z-index: 1;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .visu-sec .visu-box {
    width: 100%;
    height: 270px;
    background-image: url("../images/s-visu-3.jpg");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .visu-sec .visu-box .con-visu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .visu-sec .visu-box .con-visu p {
    font-size: 28px;
    font-weight: 100;
    line-height: 38px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-shadow: #777 1px 1px 6px;
    -webkit-animation: leftmove-m 1s ease-in-out 0.3s both;
            animation: leftmove-m 1s ease-in-out 0.3s both;
    z-index: 10;
    margin-top: 4%;
  }
  .visu-sec .visu-box .con-visu h3 {
    z-index: 10;
    font-size: 37px;
    font-weight: 500;
    line-height: 47px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    -webkit-animation: rightmove-m 1s ease-in-out 0.3s both;
            animation: rightmove-m 1s ease-in-out 0.3s both;
    text-shadow: #777 1px 1px 6px;
    margin-top: 0;
  }
  .visu-sec .visu-over {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.27);
    z-index: 1;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .visu-sec .visu-box {
    width: 100%;
    height: 240px;
    background-image: url("../images/s-visu-3.jpg");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .visu-sec .visu-box .con-visu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .visu-sec .visu-box .con-visu p {
    font-size: 24px;
    font-weight: 100;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-shadow: #777 1px 1px 6px;
    -webkit-animation: leftmove-m 1s ease-in-out 0.3s both;
            animation: leftmove-m 1s ease-in-out 0.3s both;
    z-index: 10;
    margin-top: 6%;
  }
  .visu-sec .visu-box .con-visu h3 {
    z-index: 10;
    font-size: 33px;
    font-weight: 500;
    line-height: 43px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    -webkit-animation: rightmove-m 1s ease-in-out 0.3s both;
            animation: rightmove-m 1s ease-in-out 0.3s both;
    text-shadow: #777 1px 1px 6px;
    margin-top: 0;
  }
  .visu-sec .visu-over {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.27);
    z-index: 1;
  }
}

@media (max-width: 575.99px) {
  .visu-sec .visu-box {
    width: 100%;
    height: 200px;
    background-image: url("../images/s-visu-3.jpg");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .visu-sec .visu-box .con-visu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .visu-sec .visu-box .con-visu p {
    font-size: 20px;
    font-weight: 100;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-shadow: #777 1px 1px 6px;
    -webkit-animation: leftmove-m 1s ease-in-out 0.3s both;
            animation: leftmove-m 1s ease-in-out 0.3s both;
    z-index: 10;
    margin-top: 9%;
  }
  .visu-sec .visu-box .con-visu h3 {
    z-index: 10;
    font-size: 28px;
    font-weight: 500;
    line-height: 38px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    -webkit-animation: rightmove-m 1s ease-in-out 0.3s both;
            animation: rightmove-m 1s ease-in-out 0.3s both;
    text-shadow: #777 1px 1px 6px;
    margin-top: 0;
  }
  .visu-sec .visu-over {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.27);
    z-index: 1;
  }
}

@media (max-width: 419.99px) {
  .visu-sec .visu-box {
    width: 100%;
    height: 180px;
    background-image: url("../images/s-visu-3.jpg");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .visu-sec .visu-box .con-visu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .visu-sec .visu-box .con-visu p {
    font-size: 16px;
    font-weight: 100;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    text-shadow: #777 1px 1px 6px;
    -webkit-animation: leftmove-m 1s ease-in-out 0.3s both;
            animation: leftmove-m 1s ease-in-out 0.3s both;
    z-index: 10;
    margin-top: 9%;
  }
  .visu-sec .visu-box .con-visu h3 {
    z-index: 10;
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #ffffff;
    -webkit-animation: rightmove-m 1s ease-in-out 0.3s both;
            animation: rightmove-m 1s ease-in-out 0.3s both;
    text-shadow: #777 1px 1px 6px;
    margin-top: 0;
  }
  .visu-sec .visu-over {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.27);
    z-index: 1;
  }
}

.content-sec {
  padding-bottom: 60px;
}

.content-sec .topnav-box {
  margin-bottom: 47px;
  border-bottom: 1px solid #e3e3e3;
  padding-top: 12px;
  padding-bottom: 10px;
}

.content-sec .topnav-box .con-topnav {
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.content-sec .topnav-box .con-topnav p {
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #606266 !important;
}

.content-sec .topnav-box .con-topnav span {
  font-size: 9px;
  color: #606266 !important;
  margin-top: 5px;
  padding: 0 10px;
  position: relative;
  top: -0;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .content-sec .topnav-box .con-topnav span {
    top: -3px;
  }
}

.content-sec .con-cont {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content-sec .con-cont .tit-bx {
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.content-sec .con-cont .tit-bx h3 {
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #373737;
  height: 47px;
}

.content-sec .con-cont .tit-bx h3::after {
  width: 31px;
  height: 2px;
  background-color: #383838;
  bottom: 0;
  left: 0;
}

.content-sec .con-cont .cont-box {
  width: 100%;
  padding: 60px 0 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content-sec .con-cont .cont-box .group-1 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content-sec .con-cont .cont-box .group-1 .left-bx {
  border: 1px solid #a7a7a7;
  width: 21%;
  height: 416px;
  margin-right: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.content-sec .con-cont .cont-box .group-1 .left-bx .top-ar {
  width: 100%;
  height: 100%;
  height: calc(100% - 50px);
  padding-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.content-sec .con-cont .cont-box .group-1 .left-bx .top-ar h3 {
  width: 164px;
  height: 164px;
  border: 1px solid #1b4386;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #303030;
  text-align: center;
  padding-top: 23px;
}

.content-sec .con-cont .cont-box .group-1 .left-bx .top-ar p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #474747;
  text-align: center;
  padding-top: 28px;
}

.content-sec .con-cont .cont-box .group-1 .left-bx .top-ar:after {
  background-image: url("../images/sub-3-arrow.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
  width: 20px;
  height: 40px;
  top: 32%;
  left: 106%;
}

.content-sec .con-cont .cont-box .group-1 .left-bx .bot-ar {
  width: 100%;
  height: 50px;
  background-color: #a7a7a7;
  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;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #fff;
}

.content-sec .con-cont .cont-box .group-1 .right-bx {
  border: 1px solid #a7a7a7;
  width: calc(100% - 21% - 50px);
  height: 416px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: calc(100% - 150px);
  height: calc(100% - 50px);
}

.content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar {
  width: calc(33.3% + 10%);
  height: 100%;
  margin-right: 10%;
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(3) h3 {
  background-color: #1b4386;
}

.content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(3) h3 img {
  margin-top: 10px;
}

.content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar h3 {
  width: 164px;
  height: 164px;
  background-position: center 33%;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid #1b4386;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #303030;
  text-align: center;
  padding-top: 23px;
}

.content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #474747;
  text-align: center;
  padding-top: 28px;
}

.content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(3) {
  margin-right: 0;
  width: calc(33.3% + 10%);
}

.content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:after {
  background-image: url("../images/sub-3-arrow.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
  width: 20px;
  height: 40px;
  top: 20%;
  left: -24%;
}

.content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(1):after {
  display: none;
}

.content-sec .con-cont .cont-box .group-1 .right-bx .bot-ar {
  width: 100%;
  height: 50px;
  background-color: #a7a7a7;
  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;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #fff;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .content-sec {
    padding-bottom: 50px;
  }
  .content-sec .topnav-box {
    margin-bottom: 47px;
    border-bottom: 1px solid #e3e3e3;
    padding: 12px 10px 10px 10px;
  }
  .content-sec .topnav-box .con-topnav {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .topnav-box .con-topnav p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .content-sec .topnav-box .con-topnav span {
    font-size: 9px;
    color: #606266 !important;
    margin-top: 5px;
    padding: 0 10px;
    position: relative;
    top: -0;
  }
}

@media screen and (max-width: 1199.99px) and (min-width: 992px) and (-webkit-min-device-pixel-ratio: 0) {
  .content-sec .topnav-box .con-topnav span {
    top: -3px;
  }
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .content-sec .con-cont {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 10px;
  }
  .content-sec .con-cont .tit-bx {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .con-cont .tit-bx h3 {
    font-size: 32px;
    font-weight: 400;
    line-height: 42px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #373737;
    height: 47px;
  }
  .content-sec .con-cont .tit-bx h3::after {
    width: 31px;
    height: 2px;
    background-color: #383838;
    bottom: 0;
    left: 0;
  }
  .content-sec .con-cont .cont-box {
    width: 100%;
    padding: 60px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content-sec .con-cont .cont-box .group-1 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx {
    border: 1px solid #a7a7a7;
    width: 21%;
    height: 416px;
    margin-right: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar {
    width: 100%;
    height: 100%;
    height: calc(100% - 50px);
    padding-top: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar h3 {
    width: 164px;
    height: 164px;
    border: 1px solid #1b4386;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #303030;
    text-align: center;
    padding-top: 23px;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar p {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #474747;
    text-align: center;
    padding-top: 28px;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar:after {
    background-image: url("../images/sub-3-arrow.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    width: 20px;
    height: 40px;
    top: 32%;
    left: 106%;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .bot-ar {
    width: 100%;
    height: 50px;
    background-color: #a7a7a7;
    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;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #fff;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx {
    border: 1px solid #a7a7a7;
    width: calc(100% - 21% - 50px);
    height: 416px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar {
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: calc(100% - 50px);
    height: calc(100% - 50px);
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar {
    width: calc(33.3% + 10%);
    height: 100%;
    margin-right: 10%;
    margin-top: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(3) h3 {
    background-color: #1b4386;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(3) h3 img {
    margin-top: 10px;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar h3 {
    width: 164px;
    height: 164px;
    background-position: center 33%;
    background-repeat: no-repeat;
    background-size: auto;
    border: 1px solid #1b4386;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #303030;
    text-align: center;
    padding-top: 23px;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar p {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #474747;
    text-align: center;
    padding-top: 28px;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(3) {
    margin-right: 0;
    width: calc(33.3% + 10%);
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:after {
    background-image: url("../images/sub-3-arrow.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    width: 20px;
    height: 40px;
    top: 20%;
    left: -24%;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(1):after {
    display: none;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .bot-ar {
    width: 100%;
    height: 50px;
    background-color: #a7a7a7;
    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;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #fff;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .content-sec {
    padding-bottom: 35px;
  }
  .content-sec .topnav-box {
    margin-bottom: 37px;
    border-bottom: 1px solid #e3e3e3;
    padding: 12px 10px 10px 10px;
  }
  .content-sec .topnav-box .con-topnav {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .topnav-box .con-topnav p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .content-sec .topnav-box .con-topnav span {
    font-size: 9px;
    color: #606266 !important;
    margin-top: 5px;
    padding: 0 10px;
    position: relative;
    top: -0;
  }
}

@media screen and (max-width: 991.99px) and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 0) {
  .content-sec .topnav-box .con-topnav span {
    top: -3px;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .content-sec .con-cont {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 10px;
  }
  .content-sec .con-cont .tit-bx {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .con-cont .tit-bx h3 {
    font-size: 28px;
    font-weight: 400;
    line-height: 38px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #373737;
    height: 47px;
  }
  .content-sec .con-cont .tit-bx h3::after {
    width: 31px;
    height: 2px;
    background-color: #383838;
    bottom: 0;
    left: 0;
  }
  .content-sec .con-cont .cont-box {
    width: 100%;
    padding: 50px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content-sec .con-cont .cont-box .group-1 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx {
    border: 1px solid #a7a7a7;
    width: 21%;
    height: 286px;
    margin-right: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar {
    width: 100%;
    height: 100%;
    height: calc(100% - 50px);
    padding-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar h3 {
    width: 124px;
    height: 124px;
    border: 1px solid #1b4386;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #303030;
    text-align: center;
    padding-top: 14px;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar h3 img {
    width: calc(83px * 0.8);
    height: calc(77px * 0.8);
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #474747;
    text-align: center;
    padding-top: 13px;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar:after {
    background-image: url("../images/sub-3-arrow.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    width: 20px;
    height: 40px;
    top: 32%;
    left: 106%;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .bot-ar {
    width: 100%;
    height: 50px;
    background-color: #a7a7a7;
    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;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #fff;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx {
    border: 1px solid #a7a7a7;
    width: calc(100% - 21% - 50px);
    height: 286px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar {
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: calc(100% - 50px);
    height: calc(100% - 50px);
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar {
    width: calc(33.3% + 10%);
    height: 100%;
    margin-right: 10%;
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(3) h3 {
    background-color: #1b4386;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(3) h3 img {
    margin-top: 10px;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar h3 {
    width: 124px;
    height: 124px;
    background-position: center 33%;
    background-repeat: no-repeat;
    background-size: auto;
    border: 1px solid #1b4386;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #303030;
    text-align: center;
    padding-top: 14px;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar h3 img {
    width: calc(83px * 0.8);
    height: calc(77px * 0.8);
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #474747;
    text-align: center;
    padding-top: 13px;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(3) {
    margin-right: 0;
    width: calc(33.3% + 10%);
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:after {
    background-image: url("../images/sub-3-arrow.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    width: 20px;
    height: 40px;
    top: 20%;
    left: -24%;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(1):after {
    display: none;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .bot-ar {
    width: 100%;
    height: 50px;
    background-color: #a7a7a7;
    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;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #fff;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .content-sec {
    padding-bottom: 30px;
  }
  .content-sec .topnav-box {
    margin-bottom: 30px;
    border-bottom: 1px solid #e3e3e3;
    padding: 12px 10px 10px 10px;
  }
  .content-sec .topnav-box .con-topnav {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .topnav-box .con-topnav p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .content-sec .topnav-box .con-topnav span {
    font-size: 9px;
    color: #606266 !important;
    margin-top: 5px;
    padding: 0 10px;
    position: relative;
    top: -0;
  }
}

@media screen and (max-width: 767.99px) and (min-width: 576px) and (-webkit-min-device-pixel-ratio: 0) {
  .content-sec .topnav-box .con-topnav span {
    top: -3px;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .content-sec .con-cont {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 10px;
  }
  .content-sec .con-cont .tit-bx {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .con-cont .tit-bx h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #373737;
    height: 40px;
  }
  .content-sec .con-cont .tit-bx h3::after {
    width: 31px;
    height: 2px;
    background-color: #383838;
    bottom: 0;
    left: 0;
  }
  .content-sec .con-cont .cont-box {
    width: 100%;
    padding: 40px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content-sec .con-cont .cont-box .group-1 {
    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;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx {
    border: 1px solid #a7a7a7;
    width: 100%;
    height: 262px;
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 50px;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar {
    width: 100%;
    height: 100%;
    height: calc(100% - 50px);
    padding-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar h3 {
    width: 124px;
    height: 124px;
    border: 1px solid #1b4386;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #303030;
    text-align: center;
    padding-top: 14px;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar h3 img {
    width: calc(83px * 0.8);
    height: calc(77px * 0.8);
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #474747;
    text-align: center;
    padding-top: 13px;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar:after {
    background-image: url("../images/sub-3-arrow2.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    width: 30px;
    height: 20px;
    top: 131%;
    left: 47.7%;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .bot-ar {
    width: 100%;
    height: 50px;
    background-color: #a7a7a7;
    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;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #fff;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx {
    border: 1px solid #a7a7a7;
    width: calc(100%);
    height: 286px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar {
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: calc(100% - 50px);
    height: calc(100% - 50px);
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar {
    width: calc(33.3% + 10%);
    height: 100%;
    margin-right: 10%;
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(3) h3 {
    background-color: #1b4386;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(3) h3 img {
    margin-top: 10px;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar h3 {
    width: 124px;
    height: 124px;
    background-position: center 33%;
    background-repeat: no-repeat;
    background-size: auto;
    border: 1px solid #1b4386;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #303030;
    text-align: center;
    padding-top: 14px;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar h3 img {
    width: calc(83px * 0.8);
    height: calc(77px * 0.8);
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #474747;
    text-align: center;
    padding-top: 13px;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(3) {
    margin-right: 0;
    width: calc(33.3% + 10%);
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:after {
    background-image: url("../images/sub-3-arrow.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    width: 20px;
    height: 30px;
    top: 20%;
    left: -24%;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(1):after {
    display: none;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .bot-ar {
    width: 100%;
    height: 50px;
    background-color: #a7a7a7;
    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;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #fff;
  }
}

@media (max-width: 575.99px) {
  .content-sec {
    padding-bottom: 0px;
  }
  .content-sec .topnav-box {
    margin-bottom: 20px;
    border-bottom: 1px solid #e3e3e3;
    padding: 12px 10px 10px 10px;
  }
  .content-sec .topnav-box .con-topnav {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .topnav-box .con-topnav p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .content-sec .topnav-box .con-topnav span {
    font-size: 9px;
    color: #606266 !important;
    margin-top: 5px;
    padding: 0 10px;
    position: relative;
    top: -0;
  }
}

@media screen and (max-width: 575.99px) and (-webkit-min-device-pixel-ratio: 0) {
  .content-sec .topnav-box .con-topnav span {
    top: -3px;
  }
}

@media (max-width: 575.99px) {
  .content-sec .con-cont {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 10px;
  }
  .content-sec .con-cont .tit-bx {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .con-cont .tit-bx h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #373737;
    height: 36px;
  }
  .content-sec .con-cont .tit-bx h3::after {
    width: 26px;
    height: 2px;
    background-color: #383838;
    bottom: 0;
    left: 0;
  }
  .content-sec .con-cont .cont-box {
    width: 100%;
    padding: 30px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content-sec .con-cont .cont-box .group-1 {
    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;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx {
    border: 1px solid #a7a7a7;
    width: 100%;
    height: 222px;
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 50px;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar {
    width: 100%;
    height: 100%;
    height: calc(100% - 40px);
    padding-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar h3 {
    width: 94px;
    height: 94px;
    border: 1px solid #1b4386;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #303030;
    text-align: center;
    padding-top: 9px;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar h3 img {
    width: calc(83px * 0.6);
    height: calc(77px * 0.6);
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #474747;
    text-align: center;
    padding-top: 13px;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar:after {
    background-image: url("../images/sub-3-arrow2.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    width: 25px;
    height: 20px;
    top: 131%;
    left: 47.7%;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .bot-ar {
    width: 100%;
    height: 40px;
    background-color: #a7a7a7;
    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;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #fff;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx {
    border: 1px solid #a7a7a7;
    width: calc(100%);
    height: 248px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar {
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: calc(100% - 20px);
    height: calc(100% - 40px);
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar {
    width: calc(33.3% + 10%);
    height: 100%;
    margin-right: 10%;
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(3) h3 {
    background-color: #1b4386;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(3) h3 img {
    margin-top: 10px;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar h3 {
    width: 94px;
    height: 94px;
    background-position: center 33%;
    background-repeat: no-repeat;
    background-size: auto;
    border: 1px solid #1b4386;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #303030;
    text-align: center;
    padding-top: 9px;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar h3 img {
    width: calc(83px * 0.6);
    height: calc(77px * 0.6);
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar p {
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #474747;
    text-align: center;
    padding-top: 13px;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(3) {
    margin-right: 0;
    width: calc(33.3% + 10%);
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:after {
    background-image: url("../images/sub-3-arrow.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    width: 20px;
    height: 25px;
    top: 16%;
    left: -33%;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(1):after {
    display: none;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .bot-ar {
    width: 100%;
    height: 40px;
    background-color: #a7a7a7;
    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;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #fff;
  }
}

@media (max-width: 419.99px) {
  .content-sec {
    padding-bottom: 0px;
  }
  .content-sec .topnav-box {
    margin-bottom: 20px;
    border-bottom: 1px solid #e3e3e3;
    padding: 12px 10px 10px 10px;
  }
  .content-sec .topnav-box .con-topnav {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .topnav-box .con-topnav p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .content-sec .topnav-box .con-topnav span {
    font-size: 9px;
    color: #606266 !important;
    margin-top: 5px;
    padding: 0 10px;
    position: relative;
    top: -0;
  }
}

@media screen and (max-width: 419.99px) and (-webkit-min-device-pixel-ratio: 0) {
  .content-sec .topnav-box .con-topnav span {
    top: -3px;
  }
}

@media (max-width: 419.99px) {
  .content-sec .con-cont {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 10px;
  }
  .content-sec .con-cont .tit-bx {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content-sec .con-cont .tit-bx h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #373737;
    height: 36px;
  }
  .content-sec .con-cont .tit-bx h3::after {
    width: 26px;
    height: 2px;
    background-color: #383838;
    bottom: 0;
    left: 0;
  }
  .content-sec .con-cont .cont-box {
    width: 100%;
    padding: 30px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content-sec .con-cont .cont-box .group-1 {
    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;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx {
    border: 1px solid #a7a7a7;
    width: 100%;
    height: 205px;
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 40px;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar {
    width: 100%;
    height: 100%;
    height: calc(100% - 40px);
    padding-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar h3 {
    width: 80px;
    height: 80px;
    border: 1px solid #1b4386;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #303030;
    text-align: center;
    padding-top: 9px;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar h3 img {
    width: calc(83px * 0.5);
    height: calc(77px * 0.5);
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #474747;
    text-align: center;
    padding-top: 13px;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .top-ar:after {
    background-image: url("../images/sub-3-arrow2.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 128%;
    left: 47.7%;
  }
  .content-sec .con-cont .cont-box .group-1 .left-bx .bot-ar {
    width: 100%;
    height: 40px;
    background-color: #a7a7a7;
    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;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #fff;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx {
    border: 1px solid #a7a7a7;
    width: calc(100%);
    height: 233px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar {
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: calc(100% - 20px);
    height: calc(100% - 40px);
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar {
    width: calc(33.3% + 10%);
    height: 100%;
    margin-right: 10%;
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(3) h3 {
    background-color: #1b4386;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(3) h3 img {
    margin-top: 10px;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar h3 {
    width: 80px;
    height: 80px;
    background-position: center 33%;
    background-repeat: no-repeat;
    background-size: auto;
    border: 1px solid #1b4386;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #303030;
    text-align: center;
    padding-top: 9px;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar h3 img {
    width: calc(83px * 0.5);
    height: calc(77px * 0.5);
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #474747;
    text-align: center;
    padding-top: 13px;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(3) {
    margin-right: 0;
    width: calc(33.3% + 10%);
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:after {
    background-image: url("../images/sub-3-arrow.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 16%;
    left: -33%;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .cont-ar .top-ar:nth-of-type(1):after {
    display: none;
  }
  .content-sec .con-cont .cont-box .group-1 .right-bx .bot-ar {
    width: 100%;
    height: 40px;
    background-color: #a7a7a7;
    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;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #fff;
  }
}
/*# sourceMappingURL=sub-3-3.css.map */