@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-"],
[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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  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 */
/* 쇼핑몰 뷰어 */
input[id="item-1"] + label.label-box {
  left: 0;
}

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

/* 텍스트 이펙트 */
.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;
}

#loading {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: block;
  background-color: black;
  z-index: 9900;
  text-align: center;
}

#loading #loading-image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 100;
  max-width: 50%;
  -webkit-animation: topIn 1.5s ease-out 0s both;
          animation: topIn 1.5s ease-out 0s both;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.slick-slide img {
  display: block;
}

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

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

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

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

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

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

@-webkit-keyframes logo {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes logo {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes nologo {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  60% {
    -webkit-transform: translateY(-120px);
            transform: translateY(-120px);
  }
  100% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

@keyframes nologo {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  60% {
    -webkit-transform: translateY(-120px);
            transform: translateY(-120px);
  }
  100% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

.nav-sec.logo-header header {
  -webkit-animation: logo 1s ease 0.2s both;
          animation: logo 1s ease 0.2s both;
}

.nav-sec.logo-header header .header nav.navi {
  border-bottom: 1px solid #f2f2f5 !important;
}

.nav-sec.nologo-header header {
  -webkit-animation: nologo 1.5s ease 0.2s both;
          animation: nologo 1.5s ease 0.2s both;
}

.nav-sec header {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 150px;
  background-color: #ffffff !important;
}

.nav-sec header .head {
  position: relative;
  width: 100%;
  height: 100px;
  max-width: 100%;
  border-bottom: 1px solid #f2f2f5 !important;
  background-color: #ffffff !important;
}

.nav-sec header .head .con-head {
  -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;
}

.nav-sec header .head .con-head > img {
  width: calc(373px * 0.5);
  height: calc(66px * 0.5);
  cursor: pointer;
}

.nav-sec header nav.navi {
  position: relative;
  width: 100%;
  background-color: #ffffff !important;
  border-bottom: 1px solid #f2f2f5 !important;
}

.nav-sec header nav.navi .logo-box {
  position: absolute;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  left: 30px;
  top: 0;
  height: 100%;
}

.nav-sec header nav.navi .logo-box > img {
  width: auto;
  height: 40px;
}

.nav-sec header nav.navi .con-nav {
  height: 50px;
  background-color: #ffffff !important;
}

.nav-sec header nav.navi .con-nav ul.nav {
  position: relative;
  width: 100%;
  height: 100%;
  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;
}

.nav-sec header nav.navi .con-nav ul.nav > li {
  width: 20%;
  height: 100%;
}

.nav-sec header nav.navi .con-nav ul.nav > li:hover {
  height: calc(100% + 1px);
}

.nav-sec header nav.navi .con-nav ul.nav > li:hover .sub-box {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.nav-sec header nav.navi .con-nav ul.nav > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Frank Ruhl Libre", serif !important;
  color: #17181a !important;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.nav-sec header nav.navi .con-nav ul.nav > li > a:hover {
  background-color: #ffd145 !important;
  color: #ffffff !important;
}

.nav-sec header nav.navi .con-nav ul.nav > li .sub-box {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 300px;
  top: 50px;
  left: 0;
  padding: 30px;
  background-color: #ffffff !important;
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.nav-sec header nav.navi .con-nav ul.nav > li .sub-box .left-box {
  width: 200px;
}

.nav-sec header nav.navi .con-nav ul.nav > li .sub-box .left-box ul.smenu-bx {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #ffffff !important;
  overflow: hidden;
}

.nav-sec header nav.navi .con-nav ul.nav > li .sub-box .left-box ul.smenu-bx > li {
  width: 100%;
  padding-right: 30px;
}

.nav-sec header nav.navi .con-nav ul.nav > li .sub-box .left-box ul.smenu-bx > li > a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  line-height: 33px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033 !important;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.nav-sec header nav.navi .con-nav ul.nav > li .sub-box .left-box ul.smenu-bx > li > a::after {
  width: 100%;
  height: 1px;
  background-color: #606266 !important;
  -webkit-transform: translateX(-110%);
          transform: translateX(-110%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.nav-sec header nav.navi .con-nav ul.nav > li .sub-box .left-box ul.smenu-bx > li > a:hover::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.nav-sec header nav.navi .con-nav ul.nav > li .sub-box .right-box {
  width: calc(100% - 200px);
}

.nav-sec header nav.navi .con-nav ul.nav > li .sub-box .right-box .bx-left {
  width: 62%;
  height: 100%;
  margin-right: 2%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.nav-sec header nav.navi .con-nav ul.nav > li .sub-box .right-box .bx-right {
  width: 36%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.nav-sec header nav.navi .contact-box {
  position: absolute;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  right: 30px;
  top: -85px;
  height: 100%;
}

.nav-sec header nav.navi .contact-box input[data-ct="ct"] {
  width: 150px;
  height: 35px;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Frank Ruhl Libre", serif !important;
  background-color: #117a8a !important;
  border: none;
  outline: none;
  color: #ffffff !important;
  cursor: pointer;
}

@media (max-width: 991.99px) {
  .nav-sec {
    display: none;
  }
}

@media (min-width: 992px) {
  .monav-sec,
  .momenu-bg {
    display: none;
  }
}

.monav-sec .top-box {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 40px;
  background-color: white;
}

.monav-sec .top-box .left-bx {
  width: 50%;
  padding: 0 10px;
}

.monav-sec .top-box .left-bx.mo-show .mobt-box {
  width: 40px;
  height: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.monav-sec .top-box .left-bx.mo-show .mobt-box > span {
  position: absolute;
  width: 0px;
  height: 2px;
  margin-left: -15px;
  background-color: #2f3033 !important;
}

.monav-sec .top-box .left-bx.mo-show .mobt-box > span::before {
  width: 30px;
  height: 2px;
  background-color: #2f3033 !important;
  margin-top: 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.monav-sec .top-box .left-bx.mo-show .mobt-box > span::after {
  width: 30px;
  height: 2px;
  background-color: #2f3033 !important;
  margin-top: 0;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.monav-sec .top-box .left-bx .mobt-box {
  width: 40px;
  height: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.monav-sec .top-box .left-bx .mobt-box > span {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #2f3033 !important;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.monav-sec .top-box .left-bx .mobt-box > span::before {
  width: 30px;
  height: 2px;
  background-color: #2f3033 !important;
  margin-top: -8px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.monav-sec .top-box .left-bx .mobt-box > span::after {
  width: 30px;
  height: 2px;
  background-color: #2f3033 !important;
  margin-top: 8px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.monav-sec .top-box .right-bx {
  width: 50%;
}

.momenu-bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 500;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.momenu-bg.side-show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.momenu-bg .menu-box {
  width: 100%;
  height: 100vh;
  background-color: white;
  -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;
}

.momenu-bg .menu-box .list-box {
  width: 250px;
  text-align: center;
  height: auto;
  overflow: hidden;
  -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;
}

.momenu-bg .menu-box .list-box > a {
  width: 100%;
  height: 100%;
}

.momenu-bg .menu-box .list-box > a > img {
  width: calc(350px * 0.35);
  height: calc(250px * 0.35);
  margin-bottom: 30px;
}

.momenu-bg .menu-box .list-box > ul {
  width: 100%;
}

.momenu-bg .menu-box .list-box > ul > li {
  width: 100%;
}

.momenu-bg .menu-box .list-box > ul > li:hover > a {
  color: #ffffff !important !important;
}

.momenu-bg .menu-box .list-box > ul > li:hover > a::after {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.momenu-bg .menu-box .list-box > ul > li > a {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 35px;
  font-family: "Frank Ruhl Libre", serif !important;
  color: #17181a !important;
  text-align: center;
}

.momenu-bg .menu-box .list-box > ul > li > a::after {
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #ffffff !important !important;
  background-color: #d8d2db;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.info-sec {
  height: 500px;
  background-color: #ffffff !important;
  margin-bottom: 180px;
}

.info-sec .con-info .info-box {
  width: 100%;
  margin-top: 0px;
  -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;
  text-align: center;
}

.info-sec .con-info .info-box h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #17181a !important;
  margin-bottom: 30px;
}

.info-sec .con-info .info-box h2::before {
  width: 5px;
  height: 30px;
  background-color: #e83e8c !important;
  left: 50%;
  margin-top: -50px;
}

.info-sec .con-info .info-box > ul > li {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #47494d !important;
  padding-top: 10px;
}

.service-sec {
  margin-bottom: 100px;
  background-color: #ffffff !important;
}

.service-sec .con-service {
  -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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.service-sec .con-service .bn-box {
  width: 100%;
  height: 520px;
}

.service-sec .con-service .bn-box .img-box {
  position: absolute;
  width: 80%;
  height: 520px;
  top: 0;
  right: 0;
  background-image: url("../../../img/about-9.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service-sec .con-service .bn-box .tex-box {
  width: 40%;
  height: 200px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  background-color: white;
  -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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 50px 40px 0 20px;
}

.service-sec .con-service .bn-box .tex-box h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033 !important;
}

.service-sec .con-service .bn-box .tex-box p {
  font-size: 14px;
  font-weight: 300;
  line-height: 23px;
  font-family: "Noto Sans KR", sans-serif !important;
  width: 100%;
  color: #606266 !important;
  margin-top: 10px;
}

.service-sec .con-service .bn-box .tex-box input[data-btt="btt"] {
  width: 200px;
  height: 40px;
  background-color: #000;
  border: none;
  outline: none;
  margin-top: 30px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service-sec .con-service .bn-box .tex-box input[data-btt="btt"]:hover {
  background-color: #666;
}

.service-sec .con-service .cards-box {
  padding: 70px 0 0;
  width: 100%;
}

.service-sec .con-service .cards-box .cad-box1,
.service-sec .con-service .cards-box .cad-box2,
.service-sec .con-service .cards-box .cad-box3 {
  width: 32%;
  height: 700px;
  margin-right: 2%;
  -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;
  background-color: antiquewhite;
}

.service-sec .con-service .cards-box .cad-box1:nth-of-type(3n),
.service-sec .con-service .cards-box .cad-box2:nth-of-type(3n),
.service-sec .con-service .cards-box .cad-box3:nth-of-type(3n) {
  margin-right: 0;
}

.service-sec .con-service .cards-box .cad-box1 .top-bx,
.service-sec .con-service .cards-box .cad-box2 .top-bx,
.service-sec .con-service .cards-box .cad-box3 .top-bx {
  width: 100%;
  height: 35%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service-sec .con-service .cards-box .cad-box1 .bot-bx,
.service-sec .con-service .cards-box .cad-box2 .bot-bx,
.service-sec .con-service .cards-box .cad-box3 .bot-bx {
  width: 100%;
  height: 65%;
  background-color: #7f88ff;
  -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;
}

.service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box,
.service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box,
.service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box {
  padding: 30px 30px 0;
  width: 100%;
  height: 90%;
  background-color: #fafafc !important;
  -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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box h2,
.service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box h2,
.service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box h2 {
  width: 100%;
  text-align: left;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033 !important;
  margin-bottom: 30px;
}

.service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box p,
.service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box p,
.service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box p {
  width: 100%;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033 !important;
  margin-bottom: 20px;
}

.service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box h3,
.service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box h3,
.service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box h3 {
  width: 100%;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #00479d;
  margin-bottom: 20px;
}

.service-sec .con-service .cards-box .cad-box1 .bot-bx .link-box,
.service-sec .con-service .cards-box .cad-box2 .bot-bx .link-box,
.service-sec .con-service .cards-box .cad-box3 .bot-bx .link-box {
  -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: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 10%;
  padding: 0 10px;
  background-color: #f2f2f5 !important;
}

.service-sec .con-service .cards-box .cad-box1 .bot-bx .link-box p,
.service-sec .con-service .cards-box .cad-box2 .bot-bx .link-box p,
.service-sec .con-service .cards-box .cad-box3 .bot-bx .link-box p {
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #606266 !important;
}

.service-sec .con-service .cards-box .cad-box1 .bot-bx .link-box > a,
.service-sec .con-service .cards-box .cad-box2 .bot-bx .link-box > a,
.service-sec .con-service .cards-box .cad-box3 .bot-bx .link-box > a {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  padding: 0;
  color: #606266 !important;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .service-sec .con-service {
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 10px;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .service-sec {
    margin-bottom: 70px;
    background-color: #ffffff !important;
  }
  .service-sec .con-service {
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 10px;
  }
  .service-sec .con-service .bn-box {
    width: 100%;
    height: 420px;
  }
  .service-sec .con-service .bn-box .img-box {
    position: absolute;
    width: 90%;
    height: 100%;
    top: 0;
    right: 0;
    background-image: url("../../../img/about-9.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .service-sec .con-service .bn-box .tex-box {
    width: 60%;
    height: 160px;
    -ms-flex-item-align: end;
        align-self: flex-end;
    background-color: white;
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 30px 20px 0 20px;
  }
  .service-sec .con-service .bn-box .tex-box h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .service-sec .con-service .bn-box .tex-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 23px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 100%;
    color: #606266 !important;
    margin-top: 10px;
  }
  .service-sec .con-service .bn-box .tex-box input[data-btt="btt"] {
    width: 200px;
    height: 40px;
    background-color: #000;
    border: none;
    outline: none;
    margin-top: 0px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .service-sec .con-service .bn-box .tex-box input[data-btt="btt"]:hover {
    background-color: #666;
  }
  .service-sec .con-service .cards-box {
    padding: 50px 0 0;
    width: 100%;
  }
  .service-sec .con-service .cards-box .cad-box1,
  .service-sec .con-service .cards-box .cad-box2,
  .service-sec .con-service .cards-box .cad-box3 {
    width: 32%;
    height: 700px;
    margin-right: 2%;
    -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;
    background-color: antiquewhite;
  }
  .service-sec .con-service .cards-box .cad-box1:nth-of-type(3n),
  .service-sec .con-service .cards-box .cad-box2:nth-of-type(3n),
  .service-sec .con-service .cards-box .cad-box3:nth-of-type(3n) {
    margin-right: 0;
  }
  .service-sec .con-service .cards-box .cad-box1 .top-bx,
  .service-sec .con-service .cards-box .cad-box2 .top-bx,
  .service-sec .con-service .cards-box .cad-box3 .top-bx {
    width: 100%;
    height: 35%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx,
  .service-sec .con-service .cards-box .cad-box2 .bot-bx,
  .service-sec .con-service .cards-box .cad-box3 .bot-bx {
    width: 100%;
    height: 65%;
    background-color: #7f88ff;
    -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;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box,
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box,
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box {
    padding: 20px;
    width: 100%;
    height: 90%;
    background-color: #fafafc !important;
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box h2,
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box h2,
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box h2 {
    width: 100%;
    text-align: left;
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 30px;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box p,
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box p,
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box p {
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box h3,
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box h3,
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box h3 {
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #00479d;
    margin-bottom: 20px;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .link-box,
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .link-box,
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .link-box {
    -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: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 10%;
    padding: 0 10px;
    background-color: #f2f2f5 !important;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .link-box p,
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .link-box p,
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .link-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .link-box > a,
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .link-box > a,
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .link-box > a {
    position: absolute;
    right: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .service-sec {
    margin-bottom: 50px;
    background-color: #ffffff !important;
  }
  .service-sec .con-service {
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 10px;
  }
  .service-sec .con-service .bn-box {
    width: 100%;
    height: 420px;
  }
  .service-sec .con-service .bn-box .img-box {
    position: absolute;
    width: 95%;
    height: 95%;
    top: 0;
    right: 0;
    background-image: url("../../../img/about-9.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .service-sec .con-service .bn-box .tex-box {
    width: 60%;
    height: 160px;
    -ms-flex-item-align: end;
        align-self: flex-end;
    background-color: white;
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px 20px 0 20px;
  }
  .service-sec .con-service .bn-box .tex-box h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .service-sec .con-service .bn-box .tex-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 100%;
    color: #606266 !important;
    margin-top: 10px;
  }
  .service-sec .con-service .bn-box .tex-box input[data-btt="btt"] {
    width: 200px;
    height: 40px;
    background-color: #000;
    border: none;
    outline: none;
    margin-top: 0px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .service-sec .con-service .bn-box .tex-box input[data-btt="btt"]:hover {
    background-color: #666;
  }
  .service-sec .con-service .cards-box {
    padding: 20px 0 0;
    width: 100%;
  }
  .service-sec .con-service .cards-box .cad-box1,
  .service-sec .con-service .cards-box .cad-box2,
  .service-sec .con-service .cards-box .cad-box3 {
    width: 32%;
    height: 700px;
    margin-right: 2%;
    -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;
    background-color: antiquewhite;
  }
  .service-sec .con-service .cards-box .cad-box1:nth-of-type(3n),
  .service-sec .con-service .cards-box .cad-box2:nth-of-type(3n),
  .service-sec .con-service .cards-box .cad-box3:nth-of-type(3n) {
    margin-right: 0;
  }
  .service-sec .con-service .cards-box .cad-box1 .top-bx,
  .service-sec .con-service .cards-box .cad-box2 .top-bx,
  .service-sec .con-service .cards-box .cad-box3 .top-bx {
    width: 100%;
    height: 35%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx,
  .service-sec .con-service .cards-box .cad-box2 .bot-bx,
  .service-sec .con-service .cards-box .cad-box3 .bot-bx {
    width: 100%;
    height: 65%;
    background-color: #7f88ff;
    -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;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box,
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box,
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box {
    padding: 10px;
    width: 100%;
    height: 90%;
    background-color: #fafafc !important;
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box h2,
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box h2,
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box h2 {
    width: 100%;
    text-align: left;
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box p,
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box p,
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box p {
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 10px;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box h3,
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box h3,
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box h3 {
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #00479d;
    margin-bottom: 10px;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .link-box,
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .link-box,
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .link-box {
    -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: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 10%;
    padding: 0 10px;
    background-color: #f2f2f5 !important;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .link-box p,
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .link-box p,
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .link-box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .link-box > a,
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .link-box > a,
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .link-box > a {
    position: absolute;
    right: 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
}

@media (max-width: 575.99px) and (min-width: 420px) {
  .service-sec {
    margin-bottom: 20px;
    background-color: #ffffff !important;
  }
  .service-sec .con-service {
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 10px;
  }
  .service-sec .con-service .bn-box {
    width: 100%;
    height: 400px;
  }
  .service-sec .con-service .bn-box .img-box {
    position: absolute;
    width: 100%;
    height: 75%;
    top: 0;
    right: 0;
    background-image: url("../../../img/about-9.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .service-sec .con-service .bn-box .tex-box {
    width: 80%;
    height: 160px;
    -ms-flex-item-align: end;
        align-self: flex-end;
    background-color: white;
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px 20px 0 20px;
  }
  .service-sec .con-service .bn-box .tex-box h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .service-sec .con-service .bn-box .tex-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 100%;
    color: #606266 !important;
    margin-top: 5px;
  }
  .service-sec .con-service .bn-box .tex-box input[data-btt="btt"] {
    width: 200px;
    height: 40px;
    background-color: #000;
    border: none;
    outline: none;
    margin-top: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .service-sec .con-service .bn-box .tex-box input[data-btt="btt"]:hover {
    background-color: #666;
  }
  .service-sec .con-service .cards-box {
    padding: 0px 0 0;
    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;
  }
  .service-sec .con-service .cards-box .cad-box1 {
    width: 100%;
    height: 400px;
    margin-right: 0;
    margin-bottom: 10px;
    -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;
    background-color: antiquewhite;
  }
  .service-sec .con-service .cards-box .cad-box1:nth-of-type(3n) {
    margin-right: 0;
  }
  .service-sec .con-service .cards-box .cad-box1 .top-bx {
    width: 100%;
    height: 40%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx {
    width: 100%;
    height: 60%;
    background-color: #7f88ff;
    -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;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box {
    padding: 10px;
    width: 100%;
    height: 90%;
    background-color: #fafafc !important;
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box h2 {
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box p {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 10px;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box h3 {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #00479d;
    margin-bottom: 10px;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .link-box {
    -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: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 10%;
    padding: 0 10px;
    background-color: #f2f2f5 !important;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .link-box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .link-box > a {
    position: absolute;
    right: 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .service-sec .con-service .cards-box .cad-box2 {
    width: 100%;
    height: 450px;
    margin-right: 0;
    margin-bottom: 10px;
    -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;
    background-color: antiquewhite;
  }
  .service-sec .con-service .cards-box .cad-box2:nth-of-type(3n) {
    margin-right: 0;
  }
  .service-sec .con-service .cards-box .cad-box2 .top-bx {
    width: 100%;
    height: 40%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx {
    width: 100%;
    height: 60%;
    background-color: #7f88ff;
    -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;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box {
    padding: 10px;
    width: 100%;
    height: 90%;
    background-color: #fafafc !important;
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box h2 {
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box p {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 10px;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box h3 {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #00479d;
    margin-bottom: 10px;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .link-box {
    -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: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 10%;
    padding: 0 10px;
    background-color: #f2f2f5 !important;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .link-box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .link-box > a {
    position: absolute;
    right: 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .service-sec .con-service .cards-box .cad-box3 {
    width: 100%;
    height: 500px;
    margin-right: 0;
    margin-bottom: 10px;
    -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;
    background-color: antiquewhite;
  }
  .service-sec .con-service .cards-box .cad-box3:nth-of-type(3n) {
    margin-right: 0;
  }
  .service-sec .con-service .cards-box .cad-box3 .top-bx {
    width: 100%;
    height: 35%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx {
    width: 100%;
    height: 65%;
    background-color: #7f88ff;
    -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;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box {
    padding: 10px;
    width: 100%;
    height: 90%;
    background-color: #fafafc !important;
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box h2 {
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box p {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 10px;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box h3 {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #00479d;
    margin-bottom: 10px;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .link-box {
    -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: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 10%;
    padding: 0 10px;
    background-color: #f2f2f5 !important;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .link-box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .link-box > a {
    position: absolute;
    right: 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
}

@media (max-width: 575.99px) {
  .service-sec {
    margin-bottom: 20px;
    background-color: #ffffff !important;
  }
  .service-sec .con-service {
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 10px;
  }
  .service-sec .con-service .bn-box {
    width: 100%;
    height: 400px;
  }
  .service-sec .con-service .bn-box .img-box {
    position: absolute;
    width: 100%;
    height: 65%;
    top: 0;
    right: 0;
    background-image: url("../../../img/about-9.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .service-sec .con-service .bn-box .tex-box {
    width: 80%;
    height: 160px;
    -ms-flex-item-align: end;
        align-self: flex-end;
    background-color: white;
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px 20px 0 20px;
  }
  .service-sec .con-service .bn-box .tex-box h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .service-sec .con-service .bn-box .tex-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 21px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 100%;
    color: #606266 !important;
    margin-top: 5px;
  }
  .service-sec .con-service .bn-box .tex-box input[data-btt="btt"] {
    width: 200px;
    height: 40px;
    background-color: #000;
    border: none;
    outline: none;
    margin-top: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .service-sec .con-service .bn-box .tex-box input[data-btt="btt"]:hover {
    background-color: #666;
  }
  .service-sec .con-service .cards-box {
    padding: 0px 0 0;
    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;
  }
  .service-sec .con-service .cards-box .cad-box1 {
    width: 100%;
    height: 400px;
    margin-right: 0;
    margin-bottom: 10px;
    -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;
    background-color: antiquewhite;
  }
  .service-sec .con-service .cards-box .cad-box1:nth-of-type(3n) {
    margin-right: 0;
  }
  .service-sec .con-service .cards-box .cad-box1 .top-bx {
    width: 100%;
    height: 40%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx {
    width: 100%;
    height: 60%;
    background-color: #7f88ff;
    -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;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box {
    padding: 10px;
    width: 100%;
    height: 90%;
    background-color: #fafafc !important;
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box h2 {
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box p {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 10px;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box h3 {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #00479d;
    margin-bottom: 10px;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .link-box {
    -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: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 10%;
    padding: 0 10px;
    background-color: #f2f2f5 !important;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .link-box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .link-box > a {
    position: absolute;
    right: 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .service-sec .con-service .cards-box .cad-box2 {
    width: 100%;
    height: 450px;
    margin-right: 0;
    margin-bottom: 10px;
    -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;
    background-color: antiquewhite;
  }
  .service-sec .con-service .cards-box .cad-box2:nth-of-type(3n) {
    margin-right: 0;
  }
  .service-sec .con-service .cards-box .cad-box2 .top-bx {
    width: 100%;
    height: 40%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx {
    width: 100%;
    height: 60%;
    background-color: #7f88ff;
    -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;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box {
    padding: 10px;
    width: 100%;
    height: 90%;
    background-color: #fafafc !important;
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box h2 {
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box p {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 10px;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box h3 {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #00479d;
    margin-bottom: 10px;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .link-box {
    -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: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 10%;
    padding: 0 10px;
    background-color: #f2f2f5 !important;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .link-box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .link-box > a {
    position: absolute;
    right: 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .service-sec .con-service .cards-box .cad-box3 {
    width: 100%;
    height: 500px;
    margin-right: 0;
    margin-bottom: 10px;
    -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;
    background-color: antiquewhite;
  }
  .service-sec .con-service .cards-box .cad-box3:nth-of-type(3n) {
    margin-right: 0;
  }
  .service-sec .con-service .cards-box .cad-box3 .top-bx {
    width: 100%;
    height: 35%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx {
    width: 100%;
    height: 65%;
    background-color: #7f88ff;
    -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;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box {
    padding: 10px;
    width: 100%;
    height: 90%;
    background-color: #fafafc !important;
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box h2 {
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box p {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 10px;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box h3 {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #00479d;
    margin-bottom: 10px;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .link-box {
    -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: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 10%;
    padding: 0 10px;
    background-color: #f2f2f5 !important;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .link-box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .link-box > a {
    position: absolute;
    right: 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
}

@media (max-width: 419.99px) {
  .service-sec {
    margin-bottom: 20px;
    background-color: #ffffff !important;
  }
  .service-sec .con-service {
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 10px;
  }
  .service-sec .con-service .bn-box {
    width: 100%;
    height: 300px;
  }
  .service-sec .con-service .bn-box .img-box {
    position: absolute;
    width: 100%;
    height: 65%;
    top: 0;
    right: 0;
    background-image: url("../../../img/about-9.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .service-sec .con-service .bn-box .tex-box {
    width: 80%;
    height: 160px;
    -ms-flex-item-align: end;
        align-self: flex-end;
    background-color: white;
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px 20px 0 20px;
  }
  .service-sec .con-service .bn-box .tex-box h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .service-sec .con-service .bn-box .tex-box h3 br {
    display: none;
  }
  .service-sec .con-service .bn-box .tex-box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 100%;
    color: #606266 !important;
    margin-top: 5px;
  }
  .service-sec .con-service .bn-box .tex-box input[data-btt="btt"] {
    width: 180px;
    height: 30px;
    background-color: #000;
    border: none;
    outline: none;
    margin-top: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .service-sec .con-service .bn-box .tex-box input[data-btt="btt"]:hover {
    background-color: #666;
  }
  .service-sec .con-service .cards-box {
    padding: 0px 0 0;
    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;
  }
  .service-sec .con-service .cards-box .cad-box1 {
    width: 100%;
    height: 400px;
    margin-right: 0;
    margin-bottom: 10px;
    -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;
    background-color: antiquewhite;
  }
  .service-sec .con-service .cards-box .cad-box1:nth-of-type(3n) {
    margin-right: 0;
  }
  .service-sec .con-service .cards-box .cad-box1 .top-bx {
    width: 100%;
    height: 40%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx {
    width: 100%;
    height: 60%;
    background-color: #7f88ff;
    -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;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box {
    padding: 10px;
    width: 100%;
    height: 90%;
    background-color: #fafafc !important;
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box h2 {
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box p {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 10px;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .tex-box h3 {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #00479d;
    margin-bottom: 10px;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .link-box {
    -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: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 10%;
    padding: 0 10px;
    background-color: #f2f2f5 !important;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .link-box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .service-sec .con-service .cards-box .cad-box1 .bot-bx .link-box > a {
    position: absolute;
    right: 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .service-sec .con-service .cards-box .cad-box2 {
    width: 100%;
    height: 420px;
    margin-right: 0;
    margin-bottom: 10px;
    -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;
    background-color: antiquewhite;
  }
  .service-sec .con-service .cards-box .cad-box2:nth-of-type(3n) {
    margin-right: 0;
  }
  .service-sec .con-service .cards-box .cad-box2 .top-bx {
    width: 100%;
    height: 40%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx {
    width: 100%;
    height: 60%;
    background-color: #7f88ff;
    -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;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box {
    padding: 10px;
    width: 100%;
    height: 90%;
    background-color: #fafafc !important;
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box h2 {
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box p {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 10px;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .tex-box h3 {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #00479d;
    margin-bottom: 10px;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .link-box {
    -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: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 10%;
    padding: 0 10px;
    background-color: #f2f2f5 !important;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .link-box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .service-sec .con-service .cards-box .cad-box2 .bot-bx .link-box > a {
    position: absolute;
    right: 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .service-sec .con-service .cards-box .cad-box3 {
    width: 100%;
    height: 500px;
    margin-right: 0;
    margin-bottom: 10px;
    -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;
    background-color: antiquewhite;
  }
  .service-sec .con-service .cards-box .cad-box3:nth-of-type(3n) {
    margin-right: 0;
  }
  .service-sec .con-service .cards-box .cad-box3 .top-bx {
    width: 100%;
    height: 35%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx {
    width: 100%;
    height: 65%;
    background-color: #7f88ff;
    -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;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box {
    padding: 10px;
    width: 100%;
    height: 90%;
    background-color: #fafafc !important;
    -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: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box h2 {
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box p {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 10px;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .tex-box h3 {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #00479d;
    margin-bottom: 10px;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .link-box {
    -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: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 10%;
    padding: 0 10px;
    background-color: #f2f2f5 !important;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .link-box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .service-sec .con-service .cards-box .cad-box3 .bot-bx .link-box > a {
    position: absolute;
    right: 10px;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
}
/*# sourceMappingURL=service.css.map */