@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;
}

.foot-sec {
  position: fixed;
  z-index: -1;
  bottom: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: autu;
  background-color: white;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.foot-sec .add-box {
  width: 100%;
  border-top: 1px solid #2e2a31;
  background-color: #363238;
}

.foot-sec .add-box .ad-bx {
  width: 100%;
  padding: 20px 10px;
  margin-bottom: 0;
}

.foot-sec .add-box .ad-bx .large-box {
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.foot-sec .add-box .ad-bx .large-box > p {
  font-size: 13px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  width: 100%;
  color: #e1e3e5 !important;
  padding: 0;
}

.foot-sec .add-box .ad-bx .large-box > p > span {
  font-size: 8px;
  margin: 5px 10px 0;
  color: #c8c9cc !important;
}

.foot-sec .add-box .ad-bx .tablet-box, .foot-sec .add-box .ad-bx .phone-box {
  display: none;
}

.copy-box {
  width: 100%;
  background-color: #2e2a31;
}

.copy-box .con-copy {
  padding: 0 10px;
}

.copy-box .con-copy .bot-box {
  width: 100%;
  height: 40px;
}

.copy-box .con-copy .bot-box .left-bx {
  width: 50%;
  -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;
}

.copy-box .con-copy .bot-box .left-bx p {
  left: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Frank Ruhl Libre", serif !important;
  color: #adafb3 !important;
}

.copy-box .con-copy .bot-box .right-bx {
  width: 50%;
  -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;
}

.copy-box .con-copy .bot-box .right-bx p {
  left: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Frank Ruhl Libre", serif !important;
  color: #adafb3 !important;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .foot-sec {
    position: fixed;
    z-index: -1;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: autu;
    background-color: white;
    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: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .foot-sec .add-box {
    width: 100%;
    border-top: 1px solid #2e2a31;
    background-color: #363238;
  }
  .foot-sec .add-box .ad-bx {
    width: 100%;
    padding: 20px 10px;
    margin-bottom: 0;
  }
  .foot-sec .add-box .ad-bx .large-box {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-sec .add-box .ad-bx .large-box > p {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 100%;
    color: #e1e3e5 !important;
    padding: 0;
  }
  .foot-sec .add-box .ad-bx .large-box > p > span {
    font-size: 8px;
    margin: 5px 10px 0;
    color: #c8c9cc !important;
  }
  .foot-sec .add-box .ad-bx .tablet-box, .foot-sec .add-box .ad-bx .phone-box {
    display: none;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .foot-sec {
    position: fixed;
    z-index: -1;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: autu;
    background-color: white;
    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: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .foot-sec .add-box {
    width: 100%;
    border-top: 1px solid #2e2a31;
    background-color: #363238;
  }
  .foot-sec .add-box .ad-bx {
    width: 100%;
    padding: 20px 10px;
    margin-bottom: 0;
  }
  .foot-sec .add-box .ad-bx .large-box {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-sec .add-box .ad-bx .large-box > p {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 100%;
    color: #e1e3e5 !important;
    padding: 0;
  }
  .foot-sec .add-box .ad-bx .large-box > p > span {
    font-size: 8px;
    margin: 5px 10px 0;
    color: #c8c9cc !important;
  }
  .foot-sec .add-box .ad-bx .tablet-box, .foot-sec .add-box .ad-bx .phone-box {
    display: none;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .foot-sec {
    position: fixed;
    z-index: -10;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: autu;
    background-color: white;
    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: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .foot-sec .sec-box {
    width: 100%;
    padding-bottom: 70px;
  }
  .foot-sec .sec-box .con-board .board-box {
    padding: 0 10px;
    overflow: hidden;
    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;
  }
  .foot-sec .sec-box .con-board .board-box .tab-box {
    width: 100%;
  }
  .foot-sec .sec-box .con-board .board-box .tab-box .tab-1 {
    position: relative;
    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: 150px;
    height: 35px;
    background-color: #837c7e;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    margin-right: 1px;
    cursor: pointer;
  }
  .foot-sec .sec-box .con-board .board-box .tab-box .tab-1.bg {
    background-color: #352F31;
  }
  .foot-sec .sec-box .con-board .board-box .tab-box .tab-2 {
    position: relative;
    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: 150px;
    height: 35px;
    background-color: #837c7e;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    cursor: pointer;
  }
  .foot-sec .sec-box .con-board .board-box .tab-box .tab-2.bg {
    background-color: #352F31;
  }
  .foot-sec .sec-box .con-board .board-box .content-box {
    overflow: hidden;
    width: 100%;
    height: 450px;
    border: 1px solid #e1e3e5 !important;
  }
  .foot-sec .sec-box .con-board .board-box .content-box.box1-in .bod-bx {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .foot-sec .sec-box .con-board .board-box .content-box.box2-in .gall-bx {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx {
    position: absolute;
    width: 100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .left-box {
    width: calc(100% - 20px);
    height: 100%;
    padding: 20px;
    -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;
    border-bottom: 1px dashed #e1e3e5 !important;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .left-box h2 {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #47494d !important;
    text-transform: uppercase;
    margin-top: 0;
    left: 0;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box {
    width: 100%;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box .pc-bx {
    display: none;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box .note-bx {
    width: calc(100% - 20px);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box .note-bx .noti-box {
    -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;
    z-index: 10;
    width: 100%;
    padding: 10px 30px;
    border-left: 1px dashed #e1e3e5 !important;
    border-bottom: 1px dashed #e1e3e5 !important;
    cursor: pointer;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box .note-bx .noti-box:nth-of-type(n + 4) {
    border-bottom: 0px dashed #e1e3e5 !important;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box .note-bx .noti-box h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 10px;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box .note-bx .noti-box p {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #797b80 !important;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx {
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx .left-box {
    width: 100%;
    max-height: 70px;
    -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;
    border-bottom: 1px dashed #e1e3e5 !important;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx .left-box h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #47494d !important;
    text-transform: uppercase;
    margin-top: 0;
    padding: 20px;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx .right-box {
    width: 100%;
    max-height: 380px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx .right-box .gal-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    z-index: 10;
    width: 50%;
    height: 50%;
    padding: 10px;
    border-left: 1px dashed #e1e3e5 !important;
    border-bottom: 1px dashed #e1e3e5 !important;
    cursor: pointer;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx .right-box .gal-box:nth-of-type(n + 3) {
    border-bottom: 0px dashed #e1e3e5 !important;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx .right-box .gal-box .img-box {
    width: 100%;
    height: 100%;
    background-color: #352F31;
  }
  .foot-sec .add-box {
    width: 100%;
    border-top: 1px solid #2e2a31;
  }
  .foot-sec .add-box .con-add .ad-bx {
    width: 100%;
    padding: 20px 10px;
    margin-bottom: 0;
  }
  .foot-sec .add-box .con-add .ad-bx .tablet-box {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-sec .add-box .con-add .ad-bx .tablet-box > p {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 100%;
    color: #e1e3e5 !important;
    padding: 0;
  }
  .foot-sec .add-box .con-add .ad-bx .tablet-box > p > span {
    font-size: 8px;
    margin: 5px 10px 0;
    color: #c8c9cc !important;
  }
  .foot-sec .add-box .con-add .ad-bx .large-box, .foot-sec .add-box .con-add .ad-bx .phone-box {
    display: none;
  }
  .foot-sec .add-box .con-add .ad-bx .tablet-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .foot-sec .copy-box {
    width: 100%;
    background-color: #2e2a31;
  }
  .foot-sec .copy-box .con-copy .bot-box {
    width: 100%;
    height: 40px;
  }
  .foot-sec .copy-box .con-copy .bot-box .left-bx {
    width: 50%;
    -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;
  }
  .foot-sec .copy-box .con-copy .bot-box .left-bx p {
    left: 10px;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Frank Ruhl Libre", serif !important;
    color: #adafb3 !important;
  }
  .foot-sec .copy-box .con-copy .bot-box .right-bx {
    width: 50%;
    -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;
  }
  .foot-sec .copy-box .con-copy .bot-box .right-bx p {
    left: 10px;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Frank Ruhl Libre", serif !important;
    color: #adafb3 !important;
  }
}

@media (max-width: 575.99px) {
  .foot-sec {
    position: fixed;
    z-index: -10;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: autu;
    background-color: white;
    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: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .foot-sec .sec-box {
    width: 100%;
    padding-bottom: 70px;
  }
  .foot-sec .sec-box .con-board .board-box {
    padding: 0 10px;
    overflow: hidden;
    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;
  }
  .foot-sec .sec-box .con-board .board-box .tab-box {
    width: 100%;
  }
  .foot-sec .sec-box .con-board .board-box .tab-box .tab-1 {
    position: relative;
    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: 150px;
    height: 35px;
    background-color: #837c7e;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    margin-right: 1px;
    cursor: pointer;
  }
  .foot-sec .sec-box .con-board .board-box .tab-box .tab-1.bg {
    background-color: #352F31;
  }
  .foot-sec .sec-box .con-board .board-box .tab-box .tab-2 {
    position: relative;
    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: 150px;
    height: 35px;
    background-color: #837c7e;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    cursor: pointer;
  }
  .foot-sec .sec-box .con-board .board-box .tab-box .tab-2.bg {
    background-color: #352F31;
  }
  .foot-sec .sec-box .con-board .board-box .content-box {
    overflow: hidden;
    width: 100%;
    height: 450px;
    border: 1px solid #e1e3e5 !important;
  }
  .foot-sec .sec-box .con-board .board-box .content-box.box1-in .bod-bx {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .foot-sec .sec-box .con-board .board-box .content-box.box2-in .gall-bx {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx {
    position: absolute;
    width: 100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .left-box {
    width: calc(100% - 20px);
    height: 100%;
    padding: 20px;
    -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;
    border-bottom: 1px dashed #e1e3e5 !important;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .left-box h2 {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #47494d !important;
    text-transform: uppercase;
    margin-top: 0;
    left: 0;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box {
    width: 100%;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box .pc-bx {
    display: none;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box .note-bx {
    width: calc(100% - 20px);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box .note-bx .noti-box {
    -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;
    z-index: 10;
    width: 100%;
    padding: 10px 30px;
    border-left: 1px dashed #e1e3e5 !important;
    border-bottom: 1px dashed #e1e3e5 !important;
    cursor: pointer;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box .note-bx .noti-box:nth-of-type(n + 4) {
    border-bottom: 0px dashed #e1e3e5 !important;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box .note-bx .noti-box h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 10px;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box .note-bx .noti-box p {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #797b80 !important;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx {
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx .left-box {
    width: 100%;
    max-height: 70px;
    -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;
    border-bottom: 1px dashed #e1e3e5 !important;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx .left-box h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #47494d !important;
    text-transform: uppercase;
    margin-top: 0;
    padding: 20px;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx .right-box {
    width: 100%;
    max-height: 380px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx .right-box .gal-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    z-index: 10;
    width: 50%;
    height: 50%;
    padding: 10px;
    border-left: 1px dashed #e1e3e5 !important;
    border-bottom: 1px dashed #e1e3e5 !important;
    cursor: pointer;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx .right-box .gal-box:nth-of-type(n + 3) {
    border-bottom: 0px dashed #e1e3e5 !important;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx .right-box .gal-box .img-box {
    width: 100%;
    height: 100%;
    background-color: #352F31;
  }
  .foot-sec .add-box {
    width: 100%;
    border-top: 1px solid #2e2a31;
  }
  .foot-sec .add-box .con-add .ad-bx {
    width: 100%;
    padding: 20px 10px;
    margin-bottom: 0;
  }
  .foot-sec .add-box .con-add .ad-bx .phone-box {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-sec .add-box .con-add .ad-bx .phone-box > p {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 100%;
    color: #e1e3e5 !important;
    padding: 0;
  }
  .foot-sec .add-box .con-add .ad-bx .phone-box > p > span {
    font-size: 8px;
    margin: 5px 10px 0;
    color: #c8c9cc !important;
  }
  .foot-sec .add-box .con-add .ad-bx .large-box, .foot-sec .add-box .con-add .ad-bx .tablet-box {
    display: none;
  }
  .foot-sec .add-box .con-add .ad-bx .phone-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .foot-sec .copy-box {
    width: 100%;
    background-color: #2e2a31;
  }
  .foot-sec .copy-box .con-copy .bot-box {
    width: 100%;
    height: 40px;
  }
  .foot-sec .copy-box .con-copy .bot-box .left-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: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .foot-sec .copy-box .con-copy .bot-box .left-bx p {
    left: 10px;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Frank Ruhl Libre", serif !important;
    color: #adafb3 !important;
  }
  .foot-sec .copy-box .con-copy .bot-box .right-bx {
    display: none;
    width: 0%;
    -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;
  }
  .foot-sec .copy-box .con-copy .bot-box .right-bx p {
    left: 10px;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Frank Ruhl Libre", serif !important;
    color: #adafb3 !important;
  }
}

@media (max-width: 419.99px) {
  .foot-sec {
    position: relative;
    z-index: 1;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: autu;
    background-color: white;
    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: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .foot-sec .sec-box {
    width: 100%;
    padding-bottom: 50px;
  }
  .foot-sec .sec-box .con-board .board-box {
    padding: 0 10px;
    overflow: hidden;
    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;
  }
  .foot-sec .sec-box .con-board .board-box .tab-box {
    width: 100%;
  }
  .foot-sec .sec-box .con-board .board-box .tab-box .tab-1 {
    position: relative;
    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: 150px;
    height: 35px;
    background-color: #837c7e;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    margin-right: 1px;
    cursor: pointer;
  }
  .foot-sec .sec-box .con-board .board-box .tab-box .tab-1.bg {
    background-color: #352F31;
  }
  .foot-sec .sec-box .con-board .board-box .tab-box .tab-2 {
    position: relative;
    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: 150px;
    height: 35px;
    background-color: #837c7e;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    cursor: pointer;
  }
  .foot-sec .sec-box .con-board .board-box .tab-box .tab-2.bg {
    background-color: #352F31;
  }
  .foot-sec .sec-box .con-board .board-box .content-box {
    overflow: hidden;
    width: 100%;
    height: 450px;
    border: 1px solid #e1e3e5 !important;
  }
  .foot-sec .sec-box .con-board .board-box .content-box.box1-in .bod-bx {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .foot-sec .sec-box .con-board .board-box .content-box.box2-in .gall-bx {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx {
    position: absolute;
    width: 100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .left-box {
    width: calc(100% - 20px);
    height: 100%;
    padding: 20px;
    -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;
    border-bottom: 1px dashed #e1e3e5 !important;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .left-box h2 {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #47494d !important;
    text-transform: uppercase;
    margin-top: 0;
    left: 40px;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box {
    width: 100%;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box .pc-bx {
    display: none;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box .note-bx {
    width: calc(100% - 20px);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box .note-bx .noti-box {
    -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;
    z-index: 10;
    width: 100%;
    padding: 12px 10px;
    border-left: 1px dashed #e1e3e5 !important;
    border-bottom: 1px dashed #e1e3e5 !important;
    cursor: pointer;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box .note-bx .noti-box:nth-of-type(n + 4) {
    border-bottom: 0px dashed #e1e3e5 !important;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box .note-bx .noti-box h3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
    margin-bottom: 10px;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .bod-bx .right-box .note-bx .noti-box p {
    width: 100%;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #797b80 !important;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx {
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx .left-box {
    width: 100%;
    max-height: 70px;
    -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;
    border-bottom: 1px dashed #e1e3e5 !important;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx .left-box h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #47494d !important;
    text-transform: uppercase;
    margin-top: 0;
    padding: 20px;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx .right-box {
    width: 100%;
    max-height: 380px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx .right-box .gal-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    z-index: 10;
    width: 50%;
    height: 50%;
    padding: 10px;
    border-left: 1px dashed #e1e3e5 !important;
    border-bottom: 1px dashed #e1e3e5 !important;
    cursor: pointer;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx .right-box .gal-box:nth-of-type(n + 3) {
    border-bottom: 0px dashed #e1e3e5 !important;
  }
  .foot-sec .sec-box .con-board .board-box .content-box .gall-bx .right-box .gal-box .img-box {
    width: 100%;
    height: 100%;
    background-color: #352F31;
  }
  .foot-sec .add-box {
    width: 100%;
    border-top: 1px solid #2e2a31;
  }
  .foot-sec .add-box .con-add .ad-bx {
    width: 100%;
    padding: 20px 10px;
    margin-bottom: 0;
  }
  .foot-sec .add-box .con-add .ad-bx .phone-box {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .foot-sec .add-box .con-add .ad-bx .phone-box > p {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 100%;
    color: #e1e3e5 !important;
    padding: 0;
  }
  .foot-sec .add-box .con-add .ad-bx .phone-box > p > span {
    font-size: 8px;
    margin: 5px 10px 0;
    color: #c8c9cc !important;
  }
  .foot-sec .add-box .con-add .ad-bx .large-box, .foot-sec .add-box .con-add .ad-bx .tablet-box {
    display: none;
  }
  .foot-sec .add-box .con-add .ad-bx .phone-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .foot-sec .copy-box {
    width: 100%;
    background-color: #2e2a31;
  }
  .foot-sec .copy-box .con-copy .bot-box {
    width: 100%;
    height: 40px;
  }
  .foot-sec .copy-box .con-copy .bot-box .left-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: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .foot-sec .copy-box .con-copy .bot-box .left-bx p {
    left: 10px;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Frank Ruhl Libre", serif !important;
    color: #adafb3 !important;
  }
  .foot-sec .copy-box .con-copy .bot-box .right-bx {
    display: none;
    width: 0%;
    -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;
  }
  .foot-sec .copy-box .con-copy .bot-box .right-bx p {
    left: 10px;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Frank Ruhl Libre", serif !important;
    color: #adafb3 !important;
  }
}

#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 zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

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

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

@-webkit-keyframes bottomin {
  0% {
    opacity: 0;
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes bottomin {
  0% {
    opacity: 0;
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes topdown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-350%);
            transform: translateY(-350%);
  }
  40% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes topdown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-350%);
            transform: translateY(-350%);
  }
  40% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes up {
  0% {
    -webkit-transform: translateY(200%);
            transform: translateY(200%);
  }
  30% {
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes up {
  0% {
    -webkit-transform: translateY(200%);
            transform: translateY(200%);
  }
  30% {
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes up2 {
  0% {
    -webkit-transform: translateY(500%);
            transform: translateY(500%);
  }
  30% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  100% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
}

@keyframes up2 {
  0% {
    -webkit-transform: translateY(500%);
            transform: translateY(500%);
  }
  30% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  100% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
}

.visu-sec {
  z-index: 1;
  width: 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;
  background-color: #ffffff !important;
  padding: 0 20px;
}

.visu-sec .con-box {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.visu-sec .con-box .bnn-box {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.visu-sec .con-box .bnn-box .bn-box {
  overflow: hidden;
  width: 30%;
  height: 300px;
  background-color: #ffffff !important;
  margin-bottom: 100px;
  -webkit-box-shadow: 2px 3px 30px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 3px 30px 0px rgba(0, 0, 0, 0.3);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.visu-sec .con-box .bnn-box .bn-box:nth-of-type(1) {
  -webkit-animation: up 1s ease 1.5s both;
          animation: up 1s ease 1.5s both;
}

.visu-sec .con-box .bnn-box .bn-box:nth-of-type(2) {
  -webkit-animation: up 1s ease 1.8s both;
          animation: up 1s ease 1.8s both;
}

.visu-sec .con-box .bnn-box .bn-box:nth-of-type(3) {
  -webkit-animation: up 1s ease 2.1s both;
          animation: up 1s ease 2.1s both;
}

.visu-sec .con-box .bnn-box .bn-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 30px;
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.visu-sec .con-box .bnn-box .bn-box a:hover::after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.visu-sec .con-box .bnn-box .bn-box a:hover h3 {
  color: #ffc107 !important;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

.visu-sec .con-box .bnn-box .bn-box a::after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #00374760;
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.visu-sec .con-box .bnn-box .bn-box a h3 {
  z-index: 5;
  font-size: 34px;
  font-weight: 700;
  line-height: 36px;
  font-family: "Frank Ruhl Libre", serif !important;
  text-transform: uppercase;
  text-align: center;
  color: #ddd8d6 !important;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.visu-sec .visu-slider {
  margin-top: 20px;
  width: 100%;
  height: 100%;
}

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

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

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

.visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider1-box,
.visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider2-box,
.visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider3-box {
  -webkit-animation: zoomin 2.2s ease-out 0s both;
          animation: zoomin 2.2s ease-out 0s both;
}

.visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider1-box h3,
.visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider2-box h3,
.visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider3-box h3 {
  -webkit-animation: topdown 2s ease 2s both;
          animation: topdown 2s ease 2s both;
}

.visu-sec .visu-slider div .slider1-box,
.visu-sec .visu-slider div .slider2-box,
.visu-sec .visu-slider div .slider3-box {
  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;
  max-width: 100%;
  width: 100%;
  height: 850px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: fadeout 2.2s ease-out 0s both;
          animation: fadeout 2.2s ease-out 0s both;
}

.visu-sec .visu-slider div .slider1-box h3,
.visu-sec .visu-slider div .slider2-box h3,
.visu-sec .visu-slider div .slider3-box h3 {
  position: absolute;
  left: 50%;
  margin-left: -500px;
  font-size: 72px;
  font-weight: 700;
  line-height: 72px;
  font-family: "Frank Ruhl Libre", serif !important;
  color: #e83e8c !important;
  text-align: center;
  width: 1000px;
}

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

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

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

.visu-sec .visu-slider:hover .Prev, .visu-sec .visu-slider:hover .Next {
  background-color: #998d81;
  opacity: 1;
}

.visu-sec .visu-slider .Prev {
  position: absolute;
  z-index: 10;
  left: 15px;
  top: 50%;
  margin-top: -35px;
  width: 40px;
  height: 40px;
  opacity: 0;
  background-image: url("../img/icon/left-2.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #8c8582 !important;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.visu-sec .visu-slider .Prev:hover {
  background-color: #cbc5c2 !important;
}

.visu-sec .visu-slider .Next {
  position: absolute;
  z-index: 10;
  right: 15px;
  top: 50%;
  margin-top: -35px;
  width: 40px;
  height: 40px;
  opacity: 0;
  background-image: url("../img/icon/right-2.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #8c8582 !important;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.visu-sec .visu-slider .Next:hover {
  background-color: #cbc5c2 !important;
}

.visu-sec .visu-slider .slick-dots {
  width: 100%;
  position: relative;
  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;
  display: none;
}

.visu-sec .visu-slider .slick-dots > li {
  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: 100px;
  height: 50px;
  background-color: aquamarine;
  display: none;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .visu-sec {
    z-index: 1;
    width: 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;
    background-color: #ffffff !important;
    padding: 0 10px;
  }
  .visu-sec .con-box {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 20px;
  }
  .visu-sec .con-box .bnn-box {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .visu-sec .con-box .bnn-box .bn-box {
    overflow: hidden;
    width: 32%;
    height: 300px;
    background-color: #ffffff !important;
    margin-bottom: 100px;
    -webkit-box-shadow: 2px 3px 30px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 2px 3px 30px 0px rgba(0, 0, 0, 0.3);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .visu-sec .con-box .bnn-box .bn-box:nth-of-type(1) {
    -webkit-animation: up 1s ease 1.5s both;
            animation: up 1s ease 1.5s both;
  }
  .visu-sec .con-box .bnn-box .bn-box:nth-of-type(2) {
    -webkit-animation: up 1s ease 1.8s both;
            animation: up 1s ease 1.8s both;
  }
  .visu-sec .con-box .bnn-box .bn-box:nth-of-type(3) {
    -webkit-animation: up 1s ease 2.1s both;
            animation: up 1s ease 2.1s both;
  }
  .visu-sec .con-box .bnn-box .bn-box a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 100%;
    height: 100%;
    padding: 30px;
    border: 5px solid rgba(255, 255, 255, 0.2);
  }
  .visu-sec .con-box .bnn-box .bn-box a:hover::after {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .visu-sec .con-box .bnn-box .bn-box a:hover h3 {
    color: #ffc107 !important;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  .visu-sec .con-box .bnn-box .bn-box a::after {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #00374760;
    -webkit-transform: translateY(-110%);
            transform: translateY(-110%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .visu-sec .con-box .bnn-box .bn-box a h3 {
    z-index: 5;
    font-size: 26px;
    font-weight: 700;
    line-height: 36px;
    font-family: "Frank Ruhl Libre", serif !important;
    text-transform: uppercase;
    text-align: center;
    color: #ddd8d6 !important;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  .visu-sec .visu-slider {
    margin-top: 10px;
    width: 100%;
    height: 100%;
  }
  .visu-sec .visu-slider .slick-list {
    width: 100%;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide {
    overflow: hidden;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active {
    width: 100%;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider1-box,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider2-box,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider3-box {
    -webkit-animation: zoomin 2.2s ease-out 0s both;
            animation: zoomin 2.2s ease-out 0s both;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider1-box h3,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider2-box h3,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider3-box h3 {
    -webkit-animation: topdown 2s ease 2s both;
            animation: topdown 2s ease 2s both;
  }
  .visu-sec .visu-slider div .slider1-box,
  .visu-sec .visu-slider div .slider2-box,
  .visu-sec .visu-slider div .slider3-box {
    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;
    max-width: 100%;
    width: 100%;
    height: 750px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: fadeout 2.2s ease-out 0s both;
            animation: fadeout 2.2s ease-out 0s both;
  }
  .visu-sec .visu-slider div .slider1-box h3,
  .visu-sec .visu-slider div .slider2-box h3,
  .visu-sec .visu-slider div .slider3-box h3 {
    position: absolute;
    left: 50%;
    margin-left: -500px;
    font-size: 72px;
    font-weight: 700;
    line-height: 72px;
    font-family: "Frank Ruhl Libre", serif !important;
    color: #e83e8c !important;
    text-align: center;
    width: 1000px;
  }
  .visu-sec .visu-slider div .slider1-box {
    background-image: url("../img/v-1.jpg");
  }
  .visu-sec .visu-slider div .slider2-box {
    background-image: url("../img/v-2.jpg");
  }
  .visu-sec .visu-slider div .slider3-box {
    background-image: url("../img/v-3.jpg");
  }
  .visu-sec .visu-slider:hover .Prev, .visu-sec .visu-slider:hover .Next {
    background-color: #998d81;
    opacity: 1;
  }
  .visu-sec .visu-slider .Prev {
    position: absolute;
    z-index: 10;
    left: 15px;
    top: 50%;
    margin-top: -35px;
    width: 40px;
    height: 40px;
    opacity: 0;
    background-image: url("../img/icon/left-2.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #8c8582 !important;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .visu-sec .visu-slider .Prev:hover {
    background-color: #cbc5c2 !important;
  }
  .visu-sec .visu-slider .Next {
    position: absolute;
    z-index: 10;
    right: 15px;
    top: 50%;
    margin-top: -35px;
    width: 40px;
    height: 40px;
    opacity: 0;
    background-image: url("../img/icon/right-2.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #8c8582 !important;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .visu-sec .visu-slider .Next:hover {
    background-color: #cbc5c2 !important;
  }
  .visu-sec .visu-slider .slick-dots {
    width: 100%;
    position: relative;
    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;
    display: none;
  }
  .visu-sec .visu-slider .slick-dots > li {
    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: 100px;
    height: 50px;
    background-color: aquamarine;
    display: none;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .visu-sec {
    z-index: 1;
    width: 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;
    background-color: #ffffff !important;
    padding: 0 10px;
  }
  .visu-sec .con-box {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 20px;
  }
  .visu-sec .con-box .bnn-box {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .visu-sec .con-box .bnn-box .bn-box {
    overflow: hidden;
    width: 32%;
    height: 230px;
    background-color: #ffffff !important;
    margin-bottom: 100px;
    -webkit-box-shadow: 2px 3px 30px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 2px 3px 30px 0px rgba(0, 0, 0, 0.3);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .visu-sec .con-box .bnn-box .bn-box:nth-of-type(1) {
    -webkit-animation: up 1s ease 1.5s both;
            animation: up 1s ease 1.5s both;
  }
  .visu-sec .con-box .bnn-box .bn-box:nth-of-type(2) {
    -webkit-animation: up 1s ease 1.8s both;
            animation: up 1s ease 1.8s both;
  }
  .visu-sec .con-box .bnn-box .bn-box:nth-of-type(3) {
    -webkit-animation: up 1s ease 2.1s both;
            animation: up 1s ease 2.1s both;
  }
  .visu-sec .con-box .bnn-box .bn-box a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 100%;
    height: 100%;
    padding: 30px;
    border: 5px solid rgba(255, 255, 255, 0.2);
  }
  .visu-sec .con-box .bnn-box .bn-box a:hover::after {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .visu-sec .con-box .bnn-box .bn-box a:hover h3 {
    color: #ffc107 !important;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  .visu-sec .con-box .bnn-box .bn-box a::after {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #00374760;
    -webkit-transform: translateY(-110%);
            transform: translateY(-110%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .visu-sec .con-box .bnn-box .bn-box a h3 {
    z-index: 5;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    font-family: "Frank Ruhl Libre", serif !important;
    text-transform: uppercase;
    text-align: center;
    color: #ddd8d6 !important;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  .visu-sec .visu-slider {
    margin-top: 10px;
    width: 100%;
    height: 100%;
  }
  .visu-sec .visu-slider .slick-list {
    width: 100%;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide {
    overflow: hidden;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active {
    width: 100%;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider1-box,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider2-box,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider3-box {
    -webkit-animation: zoomin 2.2s ease-out 0s both;
            animation: zoomin 2.2s ease-out 0s both;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider1-box h3,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider2-box h3,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider3-box h3 {
    -webkit-animation: topdown 2s ease 2s both;
            animation: topdown 2s ease 2s both;
  }
  .visu-sec .visu-slider div .slider1-box,
  .visu-sec .visu-slider div .slider2-box,
  .visu-sec .visu-slider div .slider3-box {
    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;
    max-width: 100%;
    width: 100%;
    height: 600px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: fadeout 2.2s ease-out 0s both;
            animation: fadeout 2.2s ease-out 0s both;
  }
  .visu-sec .visu-slider div .slider1-box h3,
  .visu-sec .visu-slider div .slider2-box h3,
  .visu-sec .visu-slider div .slider3-box h3 {
    position: absolute;
    left: 50%;
    margin-left: -500px;
    font-size: 72px;
    font-weight: 700;
    line-height: 72px;
    font-family: "Frank Ruhl Libre", serif !important;
    color: #e83e8c !important;
    text-align: center;
    width: 1000px;
  }
  .visu-sec .visu-slider div .slider1-box {
    background-image: url("../img/v-1.jpg");
  }
  .visu-sec .visu-slider div .slider2-box {
    background-image: url("../img/v-2.jpg");
  }
  .visu-sec .visu-slider div .slider3-box {
    background-image: url("../img/v-3.jpg");
  }
  .visu-sec .visu-slider:hover .Prev, .visu-sec .visu-slider:hover .Next {
    background-color: #998d81;
    opacity: 1;
  }
  .visu-sec .visu-slider .Prev {
    position: absolute;
    z-index: 10;
    left: 15px;
    top: 50%;
    margin-top: -35px;
    width: 40px;
    height: 40px;
    opacity: 0;
    background-image: url("../img/icon/left-2.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #8c8582 !important;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .visu-sec .visu-slider .Prev:hover {
    background-color: #cbc5c2 !important;
  }
  .visu-sec .visu-slider .Next {
    position: absolute;
    z-index: 10;
    right: 15px;
    top: 50%;
    margin-top: -35px;
    width: 40px;
    height: 40px;
    opacity: 0;
    background-image: url("../img/icon/right-2.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #8c8582 !important;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .visu-sec .visu-slider .Next:hover {
    background-color: #cbc5c2 !important;
  }
  .visu-sec .visu-slider .slick-dots {
    width: 100%;
    position: relative;
    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;
    display: none;
  }
  .visu-sec .visu-slider .slick-dots > li {
    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: 100px;
    height: 50px;
    background-color: aquamarine;
    display: none;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .visu-sec {
    z-index: 1;
    width: 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;
    background-color: #ffffff !important;
    padding: 0 10px;
  }
  .visu-sec .con-box {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 20px;
  }
  .visu-sec .con-box .bnn-box {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .visu-sec .con-box .bnn-box .bn-box {
    overflow: hidden;
    width: 32%;
    height: 160px;
    background-color: #ffffff !important;
    margin-bottom: 100px;
    -webkit-box-shadow: 2px 3px 30px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 2px 3px 30px 0px rgba(0, 0, 0, 0.3);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .visu-sec .con-box .bnn-box .bn-box:nth-of-type(1) {
    -webkit-animation: up 1s ease 1.5s both;
            animation: up 1s ease 1.5s both;
  }
  .visu-sec .con-box .bnn-box .bn-box:nth-of-type(2) {
    -webkit-animation: up 1s ease 1.8s both;
            animation: up 1s ease 1.8s both;
  }
  .visu-sec .con-box .bnn-box .bn-box:nth-of-type(3) {
    -webkit-animation: up 1s ease 2.1s both;
            animation: up 1s ease 2.1s both;
  }
  .visu-sec .con-box .bnn-box .bn-box a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 100%;
    height: 100%;
    padding: 10px;
    border: 5px solid rgba(255, 255, 255, 0.2);
  }
  .visu-sec .con-box .bnn-box .bn-box a:hover::after {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .visu-sec .con-box .bnn-box .bn-box a:hover h3 {
    color: #ffc107 !important;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  .visu-sec .con-box .bnn-box .bn-box a::after {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #00374760;
    -webkit-transform: translateY(-110%);
            transform: translateY(-110%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .visu-sec .con-box .bnn-box .bn-box a h3 {
    z-index: 5;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    font-family: "Frank Ruhl Libre", serif !important;
    text-transform: uppercase;
    text-align: center;
    color: #ddd8d6 !important;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  .visu-sec .visu-slider {
    margin-top: 10px;
    width: 100%;
    height: 100%;
  }
  .visu-sec .visu-slider .slick-list {
    width: 100%;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide {
    overflow: hidden;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active {
    width: 100%;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider1-box,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider2-box,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider3-box {
    -webkit-animation: zoomin 2.2s ease-out 0s both;
            animation: zoomin 2.2s ease-out 0s both;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider1-box h3,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider2-box h3,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider3-box h3 {
    -webkit-animation: topdown 2s ease 2s both;
            animation: topdown 2s ease 2s both;
  }
  .visu-sec .visu-slider div .slider1-box,
  .visu-sec .visu-slider div .slider2-box,
  .visu-sec .visu-slider div .slider3-box {
    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;
    max-width: 100%;
    width: 100%;
    height: 480px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: fadeout 2.2s ease-out 0s both;
            animation: fadeout 2.2s ease-out 0s both;
  }
  .visu-sec .visu-slider div .slider1-box h3,
  .visu-sec .visu-slider div .slider2-box h3,
  .visu-sec .visu-slider div .slider3-box h3 {
    position: absolute;
    left: 50%;
    margin-left: -500px;
    font-size: 72px;
    font-weight: 700;
    line-height: 72px;
    font-family: "Frank Ruhl Libre", serif !important;
    color: #e83e8c !important;
    text-align: center;
    width: 1000px;
  }
  .visu-sec .visu-slider div .slider1-box {
    background-image: url("../img/v-1.jpg");
  }
  .visu-sec .visu-slider div .slider2-box {
    background-image: url("../img/v-2.jpg");
  }
  .visu-sec .visu-slider div .slider3-box {
    background-image: url("../img/v-3.jpg");
  }
  .visu-sec .visu-slider:hover .Prev, .visu-sec .visu-slider:hover .Next {
    background-color: #998d81;
    opacity: 1;
  }
  .visu-sec .visu-slider .Prev {
    position: absolute;
    z-index: 10;
    left: 15px;
    top: 50%;
    margin-top: -35px;
    width: 40px;
    height: 40px;
    opacity: 0;
    background-image: url("../img/icon/left-2.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #8c8582 !important;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .visu-sec .visu-slider .Prev:hover {
    background-color: #cbc5c2 !important;
  }
  .visu-sec .visu-slider .Next {
    position: absolute;
    z-index: 10;
    right: 15px;
    top: 50%;
    margin-top: -35px;
    width: 40px;
    height: 40px;
    opacity: 0;
    background-image: url("../img/icon/right-2.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #8c8582 !important;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .visu-sec .visu-slider .Next:hover {
    background-color: #cbc5c2 !important;
  }
  .visu-sec .visu-slider .slick-dots {
    width: 100%;
    position: relative;
    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;
    display: none;
  }
  .visu-sec .visu-slider .slick-dots > li {
    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: 100px;
    height: 50px;
    background-color: aquamarine;
    display: none;
  }
}

@media (max-width: 575.99px) {
  .visu-sec {
    z-index: 1;
    width: 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;
    background-color: #ffffff !important;
    padding: 0 10px;
  }
  .visu-sec .con-box {
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 20px;
  }
  .visu-sec .con-box .bnn-box {
    position: relative;
    width: 100%;
    height: 100%;
    -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 .con-box .bnn-box .bn-box {
    overflow: hidden;
    width: 80%;
    height: 110px;
    background-color: #ffffff !important;
    margin-bottom: 0px;
    margin-top: 10px;
    -webkit-box-shadow: 2px 3px 30px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 2px 3px 30px 0px rgba(0, 0, 0, 0.3);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .visu-sec .con-box .bnn-box .bn-box:nth-of-type(1) {
    -webkit-animation: up2 1s ease 1.5s both;
            animation: up2 1s ease 1.5s both;
  }
  .visu-sec .con-box .bnn-box .bn-box:nth-of-type(2) {
    -webkit-animation: up2 1s ease 1.8s both;
            animation: up2 1s ease 1.8s both;
  }
  .visu-sec .con-box .bnn-box .bn-box:nth-of-type(3) {
    -webkit-animation: up2 1s ease 2.1s both;
            animation: up2 1s ease 2.1s both;
  }
  .visu-sec .con-box .bnn-box .bn-box a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 100%;
    height: 100%;
    padding: 10px;
    border: 5px solid rgba(255, 255, 255, 0.2);
  }
  .visu-sec .con-box .bnn-box .bn-box a:hover::after {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .visu-sec .con-box .bnn-box .bn-box a:hover h3 {
    color: #ffc107 !important;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  .visu-sec .con-box .bnn-box .bn-box a::after {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #00374760;
    -webkit-transform: translateY(-110%);
            transform: translateY(-110%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .visu-sec .con-box .bnn-box .bn-box a h3 {
    z-index: 5;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    font-family: "Frank Ruhl Libre", serif !important;
    text-transform: uppercase;
    text-align: center;
    color: #ddd8d6 !important;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  .visu-sec .visu-slider {
    margin-top: 10px;
    width: 100%;
    height: 100%;
  }
  .visu-sec .visu-slider .slick-list {
    width: 100%;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide {
    overflow: hidden;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active {
    width: 100%;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider1-box,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider2-box,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider3-box {
    -webkit-animation: zoomin 2.2s ease-out 0s both;
            animation: zoomin 2.2s ease-out 0s both;
  }
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider1-box h3,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider2-box h3,
  .visu-sec .visu-slider .slick-list .slick-track .slick-slide.slick-active .slider3-box h3 {
    -webkit-animation: topdown 2s ease 2s both;
            animation: topdown 2s ease 2s both;
  }
  .visu-sec .visu-slider div .slider1-box,
  .visu-sec .visu-slider div .slider2-box,
  .visu-sec .visu-slider div .slider3-box {
    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;
    max-width: 100%;
    width: 100%;
    height: 420px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: fadeout 2.2s ease-out 0s both;
            animation: fadeout 2.2s ease-out 0s both;
  }
  .visu-sec .visu-slider div .slider1-box h3,
  .visu-sec .visu-slider div .slider2-box h3,
  .visu-sec .visu-slider div .slider3-box h3 {
    position: absolute;
    left: 50%;
    margin-left: -500px;
    font-size: 72px;
    font-weight: 700;
    line-height: 72px;
    font-family: "Frank Ruhl Libre", serif !important;
    color: #e83e8c !important;
    text-align: center;
    width: 1000px;
  }
  .visu-sec .visu-slider div .slider1-box {
    background-image: url("../img/v-1.jpg");
  }
  .visu-sec .visu-slider div .slider2-box {
    background-image: url("../img/v-2.jpg");
  }
  .visu-sec .visu-slider div .slider3-box {
    background-image: url("../img/v-3.jpg");
  }
  .visu-sec .visu-slider:hover .Prev, .visu-sec .visu-slider:hover .Next {
    background-color: #998d81;
    opacity: 1;
  }
  .visu-sec .visu-slider .Prev {
    position: absolute;
    z-index: 10;
    left: 15px;
    top: 50%;
    margin-top: -35px;
    width: 40px;
    height: 40px;
    opacity: 0;
    background-image: url("../img/icon/left-2.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #8c8582 !important;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .visu-sec .visu-slider .Prev:hover {
    background-color: #cbc5c2 !important;
  }
  .visu-sec .visu-slider .Next {
    position: absolute;
    z-index: 10;
    right: 15px;
    top: 50%;
    margin-top: -35px;
    width: 40px;
    height: 40px;
    opacity: 0;
    background-image: url("../img/icon/right-2.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #8c8582 !important;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .visu-sec .visu-slider .Next:hover {
    background-color: #cbc5c2 !important;
  }
  .visu-sec .visu-slider .slick-dots {
    width: 100%;
    position: relative;
    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;
    display: none;
  }
  .visu-sec .visu-slider .slick-dots > li {
    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: 100px;
    height: 50px;
    background-color: aquamarine;
    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;
}

@keyframes zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes top-slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes top-slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

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

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

@-webkit-keyframes zoomout {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}

@keyframes zoomout {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
}

.thumb-sec {
  padding-top: 70px;
  background-color: #ffffff !important;
}

.thumb-sec .con-thumb {
  position: relative;
  margin: 0 auto;
  height: 100%;
}

.thumb-sec .con-thumb > div .thumb1-box, .thumb-sec .con-thumb > div .thumb2-box, .thumb-sec .con-thumb > div .thumb3-box, .thumb-sec .con-thumb > div .thumb4-box, .thumb-sec .con-thumb > div .thum54-box, .thumb-sec .con-thumb > div .thumb6-box, .thumb-sec .con-thumb > div .thumb7-box {
  -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;
  max-width: 100%;
  width: calc(100% - 10px);
  height: 350px;
  border: 1px solid #f2f2f5 !important;
}

.thumb-sec .con-thumb > div .thumb1-box .top-box, .thumb-sec .con-thumb > div .thumb2-box .top-box, .thumb-sec .con-thumb > div .thumb3-box .top-box, .thumb-sec .con-thumb > div .thumb4-box .top-box, .thumb-sec .con-thumb > div .thum54-box .top-box, .thumb-sec .con-thumb > div .thumb6-box .top-box, .thumb-sec .con-thumb > div .thumb7-box .top-box {
  width: 100%;
  height: 60%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.thumb-sec .con-thumb > div .thumb1-box .tex-box, .thumb-sec .con-thumb > div .thumb2-box .tex-box, .thumb-sec .con-thumb > div .thumb3-box .tex-box, .thumb-sec .con-thumb > div .thumb4-box .tex-box, .thumb-sec .con-thumb > div .thum54-box .tex-box, .thumb-sec .con-thumb > div .thumb6-box .tex-box, .thumb-sec .con-thumb > div .thumb7-box .tex-box {
  -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;
  width: 100%;
  height: 40%;
}

.thumb-sec .con-thumb > div .thumb1-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb2-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb3-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb4-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thum54-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb6-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb7-box .tex-box .tit-bx {
  -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: calc(100% - 40px);
  background-color: #fafafc !important;
  padding: 10px;
}

.thumb-sec .con-thumb > div .thumb1-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb2-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb3-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb4-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thum54-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb6-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb7-box .tex-box .tit-bx p {
  width: 100%;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #606266 !important;
}

.thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx {
  width: 100%;
  height: 40px;
  background-color: #f2f2f5 !important;
}

.thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .left-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%;
  padding: 0 10px;
}

.thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .left-box p {
  width: 100%;
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #606266 !important;
}

.thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .right-box {
  -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;
  width: 100%;
  padding: 0 10px;
}

.thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .right-box p {
  width: 100%;
  text-align: right;
  font-size: 13px;
  font-weight: 300;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #606266 !important;
}

.thumb-sec .con-thumb .Pre {
  position: absolute;
  z-index: 10;
  left: -45px;
  top: 50%;
  margin-top: -35px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-image: url("../img/icon/left.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #ffffff;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: none;
}

.thumb-sec .con-thumb .Pre:hover {
  background-color: #ffe083 !important;
}

.thumb-sec .con-thumb .Nex {
  position: absolute;
  z-index: 10;
  right: -45px;
  top: 50%;
  margin-top: -35px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-image: url("../img/icon/right.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #ffffff !important;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: none;
}

.thumb-sec .con-thumb .Nex:hover {
  background-color: #ffe083 !important;
}

.thumb-sec .con-thumb .slick-dots {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  padding-top: 0;
  margin-top: -15px;
}

.thumb-sec .con-thumb .slick-dots li {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 3px;
}

.thumb-sec .con-thumb .slick-dots li#slick-slide10 button {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/con1-1s.jpg");
}

.thumb-sec .con-thumb .slick-dots li#slick-slide11 button {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/con1-2s.jpg");
}

.thumb-sec .con-thumb .slick-dots li#slick-slide12 button {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/con1-3s.jpg");
}

.thumb-sec .con-thumb .slick-dots li button {
  width: 150px;
  height: 75px;
  border: none;
  cursor: pointer;
  border: 0px solid black;
  -webkit-box-shadow: 0 0 0 0 transparent;
          box-shadow: 0 0 0 0 transparent;
  vertical-align: middle;
  color: #fff;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  opacity: 1;
}

.thumb-sec .con-thumb .slick-dots li button:focus {
  outline: none;
}

.thumb-sec .con-thumb .slick-dots li button:hover {
  opacity: 1;
}

.thumb-sec .con-thumb .slick-dots li.slick-active button {
  border-bottom: 3px solid #943b72;
  -webkit-box-shadow: 0 5px 13px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 13px 0px rgba(0, 0, 0, 0.3);
  opacity: 1;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .thumb-sec {
    padding: 50px 10px 30px;
    background-color: #ffffff !important;
  }
  .thumb-sec .con-thumb {
    position: relative;
    margin: 0 auto;
    height: 100%;
  }
  .thumb-sec .con-thumb > div .thumb1-box, .thumb-sec .con-thumb > div .thumb2-box, .thumb-sec .con-thumb > div .thumb3-box, .thumb-sec .con-thumb > div .thumb4-box, .thumb-sec .con-thumb > div .thum54-box, .thumb-sec .con-thumb > div .thumb6-box, .thumb-sec .con-thumb > div .thumb7-box {
    -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;
    max-width: 100%;
    width: calc(100% - 10px);
    height: 300px;
    border: 1px solid #f2f2f5 !important;
  }
  .thumb-sec .con-thumb > div .thumb1-box .top-box, .thumb-sec .con-thumb > div .thumb2-box .top-box, .thumb-sec .con-thumb > div .thumb3-box .top-box, .thumb-sec .con-thumb > div .thumb4-box .top-box, .thumb-sec .con-thumb > div .thum54-box .top-box, .thumb-sec .con-thumb > div .thumb6-box .top-box, .thumb-sec .con-thumb > div .thumb7-box .top-box {
    width: 100%;
    height: 55%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box, .thumb-sec .con-thumb > div .thumb2-box .tex-box, .thumb-sec .con-thumb > div .thumb3-box .tex-box, .thumb-sec .con-thumb > div .thumb4-box .tex-box, .thumb-sec .con-thumb > div .thum54-box .tex-box, .thumb-sec .con-thumb > div .thumb6-box .tex-box, .thumb-sec .con-thumb > div .thumb7-box .tex-box {
    -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;
    width: 100%;
    height: 45%;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb2-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb3-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb4-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thum54-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb6-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb7-box .tex-box .tit-bx {
    -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: calc(100% - 40px);
    background-color: #fafafc !important;
    padding: 10px;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb2-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb3-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb4-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thum54-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb6-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb7-box .tex-box .tit-bx p {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx {
    width: 100%;
    height: 40px;
    background-color: #f2f2f5 !important;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .left-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%;
    padding: 0 10px;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .left-box p {
    width: 100%;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .right-box {
    -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;
    width: 100%;
    padding: 0 10px;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .right-box p {
    width: 100%;
    text-align: right;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .thumb-sec .con-thumb .Pre {
    position: absolute;
    z-index: 10;
    left: 5px;
    top: 100%;
    margin-top: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e1e3e5 !important;
    background-image: url("../img/icon/left.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ffffff;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: none;
  }
  .thumb-sec .con-thumb .Pre:hover {
    background-color: #ffe083 !important;
  }
  .thumb-sec .con-thumb .Nex {
    position: absolute;
    z-index: 10;
    left: 48px;
    top: 100%;
    margin-top: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e1e3e5 !important;
    background-image: url("../img/icon/right.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ffffff !important;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: none;
  }
  .thumb-sec .con-thumb .Nex:hover {
    background-color: #ffe083 !important;
  }
  .thumb-sec .con-thumb .slick-dots {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    padding-top: 0;
    margin-top: -15px;
  }
  .thumb-sec .con-thumb .slick-dots li {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 3px;
  }
  .thumb-sec .con-thumb .slick-dots li#slick-slide10 button {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/con1-1s.jpg");
  }
  .thumb-sec .con-thumb .slick-dots li#slick-slide11 button {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/con1-2s.jpg");
  }
  .thumb-sec .con-thumb .slick-dots li#slick-slide12 button {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/con1-3s.jpg");
  }
  .thumb-sec .con-thumb .slick-dots li button {
    width: 150px;
    height: 75px;
    border: none;
    cursor: pointer;
    border: 0px solid black;
    -webkit-box-shadow: 0 0 0 0 transparent;
            box-shadow: 0 0 0 0 transparent;
    vertical-align: middle;
    color: #fff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 1;
  }
  .thumb-sec .con-thumb .slick-dots li button:focus {
    outline: none;
  }
  .thumb-sec .con-thumb .slick-dots li button:hover {
    opacity: 1;
  }
  .thumb-sec .con-thumb .slick-dots li.slick-active button {
    border-bottom: 3px solid #943b72;
    -webkit-box-shadow: 0 5px 13px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 0 5px 13px 0px rgba(0, 0, 0, 0.3);
    opacity: 1;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .thumb-sec {
    padding: 50px 10px 30px;
    background-color: #ffffff !important;
  }
  .thumb-sec .con-thumb {
    position: relative;
    margin: 0 auto;
    height: 100%;
  }
  .thumb-sec .con-thumb > div .thumb1-box, .thumb-sec .con-thumb > div .thumb2-box, .thumb-sec .con-thumb > div .thumb3-box, .thumb-sec .con-thumb > div .thumb4-box, .thumb-sec .con-thumb > div .thum54-box, .thumb-sec .con-thumb > div .thumb6-box, .thumb-sec .con-thumb > div .thumb7-box {
    -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;
    max-width: 100%;
    width: calc(100% - 10px);
    height: 260px;
    border: 1px solid #f2f2f5 !important;
  }
  .thumb-sec .con-thumb > div .thumb1-box .top-box, .thumb-sec .con-thumb > div .thumb2-box .top-box, .thumb-sec .con-thumb > div .thumb3-box .top-box, .thumb-sec .con-thumb > div .thumb4-box .top-box, .thumb-sec .con-thumb > div .thum54-box .top-box, .thumb-sec .con-thumb > div .thumb6-box .top-box, .thumb-sec .con-thumb > div .thumb7-box .top-box {
    width: 100%;
    height: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box, .thumb-sec .con-thumb > div .thumb2-box .tex-box, .thumb-sec .con-thumb > div .thumb3-box .tex-box, .thumb-sec .con-thumb > div .thumb4-box .tex-box, .thumb-sec .con-thumb > div .thum54-box .tex-box, .thumb-sec .con-thumb > div .thumb6-box .tex-box, .thumb-sec .con-thumb > div .thumb7-box .tex-box {
    -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;
    width: 100%;
    height: 50%;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb2-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb3-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb4-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thum54-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb6-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb7-box .tex-box .tit-bx {
    -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: calc(100% - 40px);
    background-color: #fafafc !important;
    padding: 10px;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb2-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb3-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb4-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thum54-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb6-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb7-box .tex-box .tit-bx p {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx {
    width: 100%;
    height: 40px;
    background-color: #f2f2f5 !important;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .left-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%;
    padding: 0 10px;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .left-box p {
    width: 100%;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .right-box {
    -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;
    width: 100%;
    padding: 0 10px;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .right-box p {
    width: 100%;
    text-align: right;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .thumb-sec .con-thumb .Pre {
    position: absolute;
    z-index: 10;
    left: 5px;
    top: 100%;
    margin-top: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #e1e3e5 !important;
    background-image: url("../img/icon/left.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ffffff;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: none;
  }
  .thumb-sec .con-thumb .Pre:hover {
    background-color: #ffe083 !important;
  }
  .thumb-sec .con-thumb .Nex {
    position: absolute;
    z-index: 10;
    left: 38px;
    top: 100%;
    margin-top: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #e1e3e5 !important;
    background-image: url("../img/icon/right.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ffffff !important;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: none;
  }
  .thumb-sec .con-thumb .Nex:hover {
    background-color: #ffe083 !important;
  }
  .thumb-sec .con-thumb .slick-dots {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    padding-top: 0;
    margin-top: -15px;
  }
  .thumb-sec .con-thumb .slick-dots li {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 3px;
  }
  .thumb-sec .con-thumb .slick-dots li#slick-slide10 button {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/con1-1s.jpg");
  }
  .thumb-sec .con-thumb .slick-dots li#slick-slide11 button {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/con1-2s.jpg");
  }
  .thumb-sec .con-thumb .slick-dots li#slick-slide12 button {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/con1-3s.jpg");
  }
  .thumb-sec .con-thumb .slick-dots li button {
    width: 150px;
    height: 75px;
    border: none;
    cursor: pointer;
    border: 0px solid black;
    -webkit-box-shadow: 0 0 0 0 transparent;
            box-shadow: 0 0 0 0 transparent;
    vertical-align: middle;
    color: #fff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 1;
  }
  .thumb-sec .con-thumb .slick-dots li button:focus {
    outline: none;
  }
  .thumb-sec .con-thumb .slick-dots li button:hover {
    opacity: 1;
  }
  .thumb-sec .con-thumb .slick-dots li.slick-active button {
    border-bottom: 3px solid #943b72;
    -webkit-box-shadow: 0 5px 13px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 0 5px 13px 0px rgba(0, 0, 0, 0.3);
    opacity: 1;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .thumb-sec {
    padding: 40px 10px 30px;
    background-color: #ffffff !important;
  }
  .thumb-sec .con-thumb {
    position: relative;
    margin: 0 auto;
    height: 100%;
  }
  .thumb-sec .con-thumb > div .thumb1-box, .thumb-sec .con-thumb > div .thumb2-box, .thumb-sec .con-thumb > div .thumb3-box, .thumb-sec .con-thumb > div .thumb4-box, .thumb-sec .con-thumb > div .thum54-box, .thumb-sec .con-thumb > div .thumb6-box, .thumb-sec .con-thumb > div .thumb7-box {
    -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;
    max-width: 100%;
    width: calc(100% - 10px);
    height: 260px;
    border: 1px solid #f2f2f5 !important;
  }
  .thumb-sec .con-thumb > div .thumb1-box .top-box, .thumb-sec .con-thumb > div .thumb2-box .top-box, .thumb-sec .con-thumb > div .thumb3-box .top-box, .thumb-sec .con-thumb > div .thumb4-box .top-box, .thumb-sec .con-thumb > div .thum54-box .top-box, .thumb-sec .con-thumb > div .thumb6-box .top-box, .thumb-sec .con-thumb > div .thumb7-box .top-box {
    width: 100%;
    height: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box, .thumb-sec .con-thumb > div .thumb2-box .tex-box, .thumb-sec .con-thumb > div .thumb3-box .tex-box, .thumb-sec .con-thumb > div .thumb4-box .tex-box, .thumb-sec .con-thumb > div .thum54-box .tex-box, .thumb-sec .con-thumb > div .thumb6-box .tex-box, .thumb-sec .con-thumb > div .thumb7-box .tex-box {
    -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;
    width: 100%;
    height: 50%;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb2-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb3-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb4-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thum54-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb6-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb7-box .tex-box .tit-bx {
    -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: calc(100% - 40px);
    background-color: #fafafc !important;
    padding: 10px;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb2-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb3-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb4-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thum54-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb6-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb7-box .tex-box .tit-bx p {
    width: 100%;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx {
    width: 100%;
    height: 40px;
    background-color: #f2f2f5 !important;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .left-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%;
    padding: 0 0 0 10px;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .left-box p {
    width: 100%;
    font-size: 11px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .right-box {
    -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;
    width: 100%;
    padding: 0 10px 0 0;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .right-box p {
    width: 100%;
    text-align: right;
    font-size: 11px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .thumb-sec .con-thumb .Pre {
    position: absolute;
    z-index: 10;
    left: 5px;
    top: 100%;
    margin-top: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #e1e3e5 !important;
    background-image: url("../img/icon/left.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ffffff;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: none;
  }
  .thumb-sec .con-thumb .Pre:hover {
    background-color: #ffe083 !important;
  }
  .thumb-sec .con-thumb .Nex {
    position: absolute;
    z-index: 10;
    left: 38px;
    top: 100%;
    margin-top: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #e1e3e5 !important;
    background-image: url("../img/icon/right.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ffffff !important;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: none;
  }
  .thumb-sec .con-thumb .Nex:hover {
    background-color: #ffe083 !important;
  }
  .thumb-sec .con-thumb .slick-dots {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    padding-top: 0;
    margin-top: -15px;
  }
  .thumb-sec .con-thumb .slick-dots li {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 3px;
  }
  .thumb-sec .con-thumb .slick-dots li#slick-slide10 button {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/con1-1s.jpg");
  }
  .thumb-sec .con-thumb .slick-dots li#slick-slide11 button {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/con1-2s.jpg");
  }
  .thumb-sec .con-thumb .slick-dots li#slick-slide12 button {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/con1-3s.jpg");
  }
  .thumb-sec .con-thumb .slick-dots li button {
    width: 150px;
    height: 75px;
    border: none;
    cursor: pointer;
    border: 0px solid black;
    -webkit-box-shadow: 0 0 0 0 transparent;
            box-shadow: 0 0 0 0 transparent;
    vertical-align: middle;
    color: #fff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 1;
  }
  .thumb-sec .con-thumb .slick-dots li button:focus {
    outline: none;
  }
  .thumb-sec .con-thumb .slick-dots li button:hover {
    opacity: 1;
  }
  .thumb-sec .con-thumb .slick-dots li.slick-active button {
    border-bottom: 3px solid #943b72;
    -webkit-box-shadow: 0 5px 13px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 0 5px 13px 0px rgba(0, 0, 0, 0.3);
    opacity: 1;
  }
}

@media (max-width: 575.99px) {
  .thumb-sec {
    padding: 30px 10px 30px;
    background-color: #ffffff !important;
  }
  .thumb-sec .con-thumb {
    position: relative;
    margin: 0 auto;
    height: 100%;
  }
  .thumb-sec .con-thumb > div .thumb1-box, .thumb-sec .con-thumb > div .thumb2-box, .thumb-sec .con-thumb > div .thumb3-box, .thumb-sec .con-thumb > div .thumb4-box, .thumb-sec .con-thumb > div .thum54-box, .thumb-sec .con-thumb > div .thumb6-box, .thumb-sec .con-thumb > div .thumb7-box {
    -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;
    max-width: 100%;
    width: calc(100% - 10px);
    height: 260px;
    border: 1px solid #f2f2f5 !important;
  }
  .thumb-sec .con-thumb > div .thumb1-box .top-box, .thumb-sec .con-thumb > div .thumb2-box .top-box, .thumb-sec .con-thumb > div .thumb3-box .top-box, .thumb-sec .con-thumb > div .thumb4-box .top-box, .thumb-sec .con-thumb > div .thum54-box .top-box, .thumb-sec .con-thumb > div .thumb6-box .top-box, .thumb-sec .con-thumb > div .thumb7-box .top-box {
    width: 100%;
    height: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box, .thumb-sec .con-thumb > div .thumb2-box .tex-box, .thumb-sec .con-thumb > div .thumb3-box .tex-box, .thumb-sec .con-thumb > div .thumb4-box .tex-box, .thumb-sec .con-thumb > div .thum54-box .tex-box, .thumb-sec .con-thumb > div .thumb6-box .tex-box, .thumb-sec .con-thumb > div .thumb7-box .tex-box {
    -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;
    width: 100%;
    height: 50%;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb2-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb3-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb4-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thum54-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb6-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb7-box .tex-box .tit-bx {
    -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: calc(100% - 40px);
    background-color: #fafafc !important;
    padding: 10px;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb2-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb3-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb4-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thum54-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb6-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb7-box .tex-box .tit-bx p {
    width: 100%;
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx {
    width: 100%;
    height: 40px;
    background-color: #f2f2f5 !important;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .left-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%;
    padding: 0 0 0 10px;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .left-box p {
    width: 100%;
    font-size: 11px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .right-box {
    -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;
    width: 100%;
    padding: 0 10px 0 0;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .right-box p {
    width: 100%;
    text-align: right;
    font-size: 11px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .thumb-sec .con-thumb .Pre {
    position: absolute;
    z-index: 10;
    left: 5px;
    top: 100%;
    margin-top: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #e1e3e5 !important;
    background-image: url("../img/icon/left.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ffffff;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: none;
  }
  .thumb-sec .con-thumb .Pre:hover {
    background-color: #ffe083 !important;
  }
  .thumb-sec .con-thumb .Nex {
    position: absolute;
    z-index: 10;
    left: 38px;
    top: 100%;
    margin-top: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #e1e3e5 !important;
    background-image: url("../img/icon/right.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ffffff !important;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: none;
  }
  .thumb-sec .con-thumb .Nex:hover {
    background-color: #ffe083 !important;
  }
  .thumb-sec .con-thumb .slick-dots {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    padding-top: 0;
    margin-top: -15px;
  }
  .thumb-sec .con-thumb .slick-dots li {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 3px;
  }
  .thumb-sec .con-thumb .slick-dots li#slick-slide10 button {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/con1-1s.jpg");
  }
  .thumb-sec .con-thumb .slick-dots li#slick-slide11 button {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/con1-2s.jpg");
  }
  .thumb-sec .con-thumb .slick-dots li#slick-slide12 button {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/con1-3s.jpg");
  }
  .thumb-sec .con-thumb .slick-dots li button {
    width: 150px;
    height: 75px;
    border: none;
    cursor: pointer;
    border: 0px solid black;
    -webkit-box-shadow: 0 0 0 0 transparent;
            box-shadow: 0 0 0 0 transparent;
    vertical-align: middle;
    color: #fff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 1;
  }
  .thumb-sec .con-thumb .slick-dots li button:focus {
    outline: none;
  }
  .thumb-sec .con-thumb .slick-dots li button:hover {
    opacity: 1;
  }
  .thumb-sec .con-thumb .slick-dots li.slick-active button {
    border-bottom: 3px solid #943b72;
    -webkit-box-shadow: 0 5px 13px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 0 5px 13px 0px rgba(0, 0, 0, 0.3);
    opacity: 1;
  }
}

@media (max-width: 419.99px) {
  .thumb-sec {
    padding: 20px 10px 30px;
    background-color: #ffffff !important;
  }
  .thumb-sec .con-thumb {
    position: relative;
    margin: 0 auto;
    height: 100%;
  }
  .thumb-sec .con-thumb > div .thumb1-box, .thumb-sec .con-thumb > div .thumb2-box, .thumb-sec .con-thumb > div .thumb3-box, .thumb-sec .con-thumb > div .thumb4-box, .thumb-sec .con-thumb > div .thum54-box, .thumb-sec .con-thumb > div .thumb6-box, .thumb-sec .con-thumb > div .thumb7-box {
    -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;
    max-width: 100%;
    width: calc(100% - 5px);
    height: 260px;
    border: 1px solid #f2f2f5 !important;
  }
  .thumb-sec .con-thumb > div .thumb1-box .top-box, .thumb-sec .con-thumb > div .thumb2-box .top-box, .thumb-sec .con-thumb > div .thumb3-box .top-box, .thumb-sec .con-thumb > div .thumb4-box .top-box, .thumb-sec .con-thumb > div .thum54-box .top-box, .thumb-sec .con-thumb > div .thumb6-box .top-box, .thumb-sec .con-thumb > div .thumb7-box .top-box {
    width: 100%;
    height: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box, .thumb-sec .con-thumb > div .thumb2-box .tex-box, .thumb-sec .con-thumb > div .thumb3-box .tex-box, .thumb-sec .con-thumb > div .thumb4-box .tex-box, .thumb-sec .con-thumb > div .thum54-box .tex-box, .thumb-sec .con-thumb > div .thumb6-box .tex-box, .thumb-sec .con-thumb > div .thumb7-box .tex-box {
    -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;
    width: 100%;
    height: 50%;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb2-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb3-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb4-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thum54-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb6-box .tex-box .tit-bx, .thumb-sec .con-thumb > div .thumb7-box .tex-box .tit-bx {
    -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: calc(100% - 40px);
    background-color: #fafafc !important;
    padding: 7px;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb2-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb3-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb4-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thum54-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb6-box .tex-box .tit-bx p, .thumb-sec .con-thumb > div .thumb7-box .tex-box .tit-bx p {
    width: 100%;
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx {
    width: 100%;
    height: 40px;
    background-color: #f2f2f5 !important;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .left-box, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .left-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%;
    padding: 0 0 0 10px;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .left-box p, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .left-box p {
    width: 100%;
    font-size: 11px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .right-box, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .right-box {
    -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;
    width: 100%;
    padding: 0 10px 0 0;
  }
  .thumb-sec .con-thumb > div .thumb1-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb2-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb3-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb4-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thum54-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb6-box .tex-box .link-bx .right-box p, .thumb-sec .con-thumb > div .thumb7-box .tex-box .link-bx .right-box p {
    width: 100%;
    text-align: right;
    font-size: 11px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .thumb-sec .con-thumb .Pre {
    position: absolute;
    z-index: 10;
    left: 5px;
    top: 100%;
    margin-top: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #e1e3e5 !important;
    background-image: url("../img/icon/left.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ffffff;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: none;
  }
  .thumb-sec .con-thumb .Pre:hover {
    background-color: #ffe083 !important;
  }
  .thumb-sec .con-thumb .Nex {
    position: absolute;
    z-index: 10;
    left: 38px;
    top: 100%;
    margin-top: 5px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #e1e3e5 !important;
    background-image: url("../img/icon/right.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #ffffff !important;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: none;
  }
  .thumb-sec .con-thumb .Nex:hover {
    background-color: #ffe083 !important;
  }
  .thumb-sec .con-thumb .slick-dots {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    padding-top: 0;
    margin-top: -15px;
  }
  .thumb-sec .con-thumb .slick-dots li {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0 3px;
  }
  .thumb-sec .con-thumb .slick-dots li#slick-slide10 button {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/con1-1s.jpg");
  }
  .thumb-sec .con-thumb .slick-dots li#slick-slide11 button {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/con1-2s.jpg");
  }
  .thumb-sec .con-thumb .slick-dots li#slick-slide12 button {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/con1-3s.jpg");
  }
  .thumb-sec .con-thumb .slick-dots li button {
    width: 150px;
    height: 75px;
    border: none;
    cursor: pointer;
    border: 0px solid black;
    -webkit-box-shadow: 0 0 0 0 transparent;
            box-shadow: 0 0 0 0 transparent;
    vertical-align: middle;
    color: #fff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 1;
  }
  .thumb-sec .con-thumb .slick-dots li button:focus {
    outline: none;
  }
  .thumb-sec .con-thumb .slick-dots li button:hover {
    opacity: 1;
  }
  .thumb-sec .con-thumb .slick-dots li.slick-active button {
    border-bottom: 3px solid #943b72;
    -webkit-box-shadow: 0 5px 13px 0px rgba(0, 0, 0, 0.3);
            box-shadow: 0 5px 13px 0px rgba(0, 0, 0, 0.3);
    opacity: 1;
  }
}

.blocker {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center;
}

.blocker.behind {
  background-color: transparent;
}

.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}

.blocker .modal {
  position: relative;
  z-index: 100;
  display: none;
  vertical-align: middle;
  max-width: 90%;
  top: 70px;
  margin-bottom: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: white;
  padding: 15px 30px 50px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px #000;
  -o-box-shadow: 0 0 10px #000;
  -ms-box-shadow: 0 0 10px #000;
  box-shadow: 0 0 10px #000;
}

.blocker .modal a.close-modal {
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  display: block;
  width: 50px;
  height: 50px;
  text-indent: -9999px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==");
}

.blocker .modal #modal-view {
  padding: 50px 0 30px;
}

.blocker .modal #modal-view .view .tex-box {
  -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-bottom: 30px;
}

.blocker .modal #modal-view .view .tex-box h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033 !important;
}

.blocker .modal #modal-view .view .tex-box > ul {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 20px;
}

.blocker .modal #modal-view .view .tex-box > ul > li {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033 !important;
}

.info-sec {
  height: 1000px;
}

.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;
}

.yt-sec {
  padding-top: 70px;
  background-color: #ffffff !important;
}

.yt-sec .con-yt .left-box {
  width: 49.5%;
  height: 300px;
  margin-right: 1%;
}

.yt-sec .con-yt .left-box .video-box {
  -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%;
  background-image: url("../img/y-1.jpg");
}

.yt-sec .con-yt .left-box .video-box > a img {
  width: calc(119px * 0.6);
  height: calc(119px * 0.6);
}

.yt-sec .con-yt .right-box {
  width: 49.5%;
  height: 300px;
  -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;
}

.yt-sec .con-yt .right-box .video-box {
  -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%;
  background-image: url("../img/y-2.jpg");
}

.yt-sec .con-yt .right-box .video-box > a img {
  width: calc(119px * 0.6);
  height: calc(119px * 0.6);
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .yt-sec {
    padding-top: 50px;
    background-color: #ffffff !important;
  }
  .yt-sec .con-yt {
    padding: 0 10px;
  }
  .yt-sec .con-yt .left-box {
    width: 49.5%;
    height: 260px;
    margin-right: 1%;
  }
  .yt-sec .con-yt .left-box .video-box {
    -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%;
    background-image: url("../img/y-1.jpg");
  }
  .yt-sec .con-yt .left-box .video-box > a img {
    width: calc(119px * 0.6);
    height: calc(119px * 0.6);
  }
  .yt-sec .con-yt .right-box {
    width: 49.5%;
    height: 260px;
    -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;
  }
  .yt-sec .con-yt .right-box .video-box {
    -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%;
    background-image: url("../img/y-2.jpg");
  }
  .yt-sec .con-yt .right-box .video-box > a img {
    width: calc(119px * 0.6);
    height: calc(119px * 0.6);
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .yt-sec {
    padding-top: 40px;
    background-color: #ffffff !important;
  }
  .yt-sec .con-yt {
    padding: 0 10px;
  }
  .yt-sec .con-yt .left-box {
    width: 49.5%;
    height: 220px;
    margin-right: 1%;
  }
  .yt-sec .con-yt .left-box .video-box {
    -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%;
    background-image: url("../img/y-1.jpg");
  }
  .yt-sec .con-yt .left-box .video-box > a img {
    width: calc(119px * 0.6);
    height: calc(119px * 0.6);
  }
  .yt-sec .con-yt .right-box {
    width: 49.5%;
    height: 220px;
    -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;
  }
  .yt-sec .con-yt .right-box .video-box {
    -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%;
    background-image: url("../img/y-2.jpg");
  }
  .yt-sec .con-yt .right-box .video-box > a img {
    width: calc(119px * 0.6);
    height: calc(119px * 0.6);
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .yt-sec {
    padding-top: 40px;
    background-color: #ffffff !important;
  }
  .yt-sec .con-yt {
    padding: 0 10px;
  }
  .yt-sec .con-yt .left-box {
    width: 49.5%;
    height: 170px;
    margin-right: 1%;
  }
  .yt-sec .con-yt .left-box .video-box {
    -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%;
    background-image: url("../img/y-1.jpg");
  }
  .yt-sec .con-yt .left-box .video-box > a img {
    width: calc(119px * 0.4);
    height: calc(119px * 0.4);
  }
  .yt-sec .con-yt .right-box {
    width: 49.5%;
    height: 170px;
    -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;
  }
  .yt-sec .con-yt .right-box .video-box {
    -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%;
    background-image: url("../img/y-2.jpg");
  }
  .yt-sec .con-yt .right-box .video-box > a img {
    width: calc(119px * 0.4);
    height: calc(119px * 0.4);
  }
}

@media (max-width: 575.99px) {
  .yt-sec {
    padding-top: 40px;
    background-color: #ffffff !important;
  }
  .yt-sec .con-yt {
    padding: 0 10px;
  }
  .yt-sec .con-yt .left-box {
    width: 49.5%;
    height: 130px;
    margin-right: 1%;
  }
  .yt-sec .con-yt .left-box .video-box {
    -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%;
    background-image: url("../img/y-1.jpg");
  }
  .yt-sec .con-yt .left-box .video-box > a img {
    width: calc(119px * 0.4);
    height: calc(119px * 0.4);
  }
  .yt-sec .con-yt .right-box {
    width: 49.5%;
    height: 130px;
    -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;
  }
  .yt-sec .con-yt .right-box .video-box {
    -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%;
    background-image: url("../img/y-2.jpg");
  }
  .yt-sec .con-yt .right-box .video-box > a img {
    width: calc(119px * 0.4);
    height: calc(119px * 0.4);
  }
}

@media (max-width: 419.99px) {
  .yt-sec {
    padding-top: 40px;
    background-color: #ffffff !important;
  }
  .yt-sec .con-yt {
    -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;
  }
  .yt-sec .con-yt .left-box {
    width: 100%;
    height: 130px;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .yt-sec .con-yt .left-box .video-box {
    -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%;
    background-image: url("../img/y-1.jpg");
  }
  .yt-sec .con-yt .left-box .video-box > a img {
    width: calc(119px * 0.4);
    height: calc(119px * 0.4);
  }
  .yt-sec .con-yt .right-box {
    width: 100%;
    height: 130px;
    -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;
  }
  .yt-sec .con-yt .right-box .video-box {
    -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%;
    background-image: url("../img/y-2.jpg");
  }
  .yt-sec .con-yt .right-box .video-box > a img {
    width: calc(119px * 0.4);
    height: calc(119px * 0.4);
  }
}

.bn-sec {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
  padding: 70px 20px;
  margin: 0 auto;
  background-color: #ffffff !important;
}

.bn-sec .parabox {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.bn-sec .parabox .paraover {
  position: absolute;
  width: 100vw;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(116, 15, 79, 0.1);
}

.bn-sec .parabox .img-parallax {
  width: 100vw;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  pointer-events: none;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .bn-sec {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    overflow: hidden;
    padding: 50px 10px;
    margin: 0 auto;
    background-color: #ffffff !important;
  }
  .bn-sec .parabox {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
  }
  .bn-sec .parabox .paraover {
    position: absolute;
    width: 100vw;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(116, 15, 79, 0.1);
  }
  .bn-sec .parabox .img-parallax {
    width: 100vw;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    pointer-events: none;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .bn-sec {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    overflow: hidden;
    padding: 40px 10px;
    margin: 0 auto;
    background-color: #ffffff !important;
  }
  .bn-sec .parabox {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
  }
  .bn-sec .parabox .paraover {
    position: absolute;
    width: 100vw;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(116, 15, 79, 0.1);
  }
  .bn-sec .parabox .img-parallax {
    width: 100vw;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    pointer-events: none;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .bn-sec {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    overflow: hidden;
    padding: 30px 10px;
    margin: 0 auto;
    background-color: #ffffff !important;
  }
  .bn-sec .parabox {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
  }
  .bn-sec .parabox .paraover {
    position: absolute;
    width: 100vw;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(116, 15, 79, 0.1);
  }
  .bn-sec .parabox .img-parallax {
    width: 100vw;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    pointer-events: none;
  }
}

@media (max-width: 575.99px) {
  .bn-sec {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    overflow: hidden;
    padding: 30px 10px;
    margin: 0 auto;
    background-color: #ffffff !important;
  }
  .bn-sec .parabox {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
  }
  .bn-sec .parabox .paraover {
    position: absolute;
    width: 100vw;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(116, 15, 79, 0.1);
  }
  .bn-sec .parabox .img-parallax {
    width: 100vw;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    pointer-events: none;
  }
}

@media (max-width: 419.99px) {
  .bn-sec {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    overflow: hidden;
    padding: 30px 10px;
    margin: 0 auto;
    background-color: #ffffff !important;
  }
  .bn-sec .parabox {
    width: 100%;
    height: 170px;
    position: relative;
    overflow: hidden;
  }
  .bn-sec .parabox .paraover {
    position: absolute;
    width: 100vw;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(116, 15, 79, 0.1);
  }
  .bn-sec .parabox .img-parallax {
    width: 100vw;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    pointer-events: none;
  }
}

@-webkit-keyframes hide {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@keyframes hide {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@-webkit-keyframes show {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes show {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes hide2 {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes hide2 {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@-webkit-keyframes show2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes show2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

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

.roll-sec.cont1-show .con-roll .left-box > .cont1-box {
  -webkit-animation: show 1s ease 0.2s both;
          animation: show 1s ease 0.2s both;
}

.roll-sec.cont1-show .con-roll .right-box > .cont4-box {
  -webkit-animation: show2 1s ease 0.2s both;
          animation: show2 1s ease 0.2s both;
}

.roll-sec.cont1-show .con-bt .btn1-bx {
  background-color: #17a2b8 !important;
  color: #ffffff !important;
}

.roll-sec.cont2-show .con-roll .left-box .cont2-box {
  -webkit-animation: show 1s ease 0.2s both;
          animation: show 1s ease 0.2s both;
}

.roll-sec.cont2-show .con-roll .right-box > .cont5-box {
  -webkit-animation: show2 1s ease 0.2s both;
          animation: show2 1s ease 0.2s both;
}

.roll-sec.cont2-show .con-bt .btn2-bx {
  background-color: #17a2b8 !important;
  color: #ffffff !important;
}

.roll-sec.cont3-show .con-roll .left-box .cont3-box {
  -webkit-animation: show 1s ease 0.2s both;
          animation: show 1s ease 0.2s both;
}

.roll-sec.cont3-show .con-roll .right-box > .cont6-box {
  -webkit-animation: show2 1s ease 0.2s both;
          animation: show2 1s ease 0.2s both;
}

.roll-sec.cont3-show .con-bt .btn3-bx {
  background-color: #17a2b8 !important;
  color: #ffffff !important;
}

.roll-sec .con-roll {
  width: 100%;
  height: 700px;
  overflow: hidden;
}

.roll-sec .con-roll .left-box {
  width: 50%;
  height: 100%;
}

.roll-sec .con-roll .left-box .cont1-box, .roll-sec .con-roll .left-box .cont2-box, .roll-sec .con-roll .left-box .cont3-box {
  position: absolute;
}

.roll-sec .con-roll .left-box .cont1-box {
  width: 100%;
  height: 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;
  -webkit-animation: hide 1s ease 0s both;
          animation: hide 1s ease 0s both;
}

.roll-sec .con-roll .left-box .cont1-box span {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #606266 !important;
}

.roll-sec .con-roll .left-box .cont1-box h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033 !important;
}

.roll-sec .con-roll .left-box .cont1-box h4::after {
  width: 100%;
  height: 1px;
  background-color: #2f3033 !important;
}

.roll-sec .con-roll .left-box .cont1-box p {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  width: 80%;
  color: #2f3033 !important;
  margin-bottom: 30px;
}

.roll-sec .con-roll .left-box .cont1-box p:nth-of-type(1) {
  margin-top: 30px;
}

.roll-sec .con-roll .left-box .cont1-box h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033 !important;
}

.roll-sec .con-roll .left-box .cont2-box {
  width: 100%;
  height: 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;
  -webkit-animation: hide 1s ease 0s both;
          animation: hide 1s ease 0s both;
}

.roll-sec .con-roll .left-box .cont2-box span {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #606266 !important;
}

.roll-sec .con-roll .left-box .cont2-box h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033 !important;
}

.roll-sec .con-roll .left-box .cont2-box h4::after {
  width: 100%;
  height: 1px;
  background-color: #2f3033 !important;
}

.roll-sec .con-roll .left-box .cont2-box p {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  width: 80%;
  color: #2f3033 !important;
  margin-bottom: 30px;
}

.roll-sec .con-roll .left-box .cont2-box p:nth-of-type(1) {
  margin-top: 30px;
}

.roll-sec .con-roll .left-box .cont2-box h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033 !important;
}

.roll-sec .con-roll .left-box .cont3-box {
  width: 100%;
  height: 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;
  -webkit-animation: hide 1s ease 0s both;
          animation: hide 1s ease 0s both;
}

.roll-sec .con-roll .left-box .cont3-box span {
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #606266 !important;
}

.roll-sec .con-roll .left-box .cont3-box h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033 !important;
}

.roll-sec .con-roll .left-box .cont3-box h4::after {
  width: 100%;
  height: 1px;
  background-color: #2f3033 !important;
}

.roll-sec .con-roll .left-box .cont3-box p {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  font-family: "Noto Sans KR", sans-serif !important;
  width: 80%;
  color: #2f3033 !important;
  margin-bottom: 30px;
}

.roll-sec .con-roll .left-box .cont3-box p:nth-of-type(1) {
  margin-top: 30px;
}

.roll-sec .con-roll .left-box .cont3-box h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033 !important;
}

.roll-sec .con-roll .right-box {
  width: 50%;
  height: 100%;
}

.roll-sec .con-roll .right-box .cont4-box, .roll-sec .con-roll .right-box .cont5-box, .roll-sec .con-roll .right-box .cont6-box {
  position: absolute;
}

.roll-sec .con-roll .right-box .cont4-box {
  width: 100%;
  height: 500px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: hide2 1s ease 0s both;
          animation: hide2 1s ease 0s both;
}

.roll-sec .con-roll .right-box .cont5-box {
  width: 100%;
  height: 500px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: hide2 1s ease 0s both;
          animation: hide2 1s ease 0s both;
}

.roll-sec .con-roll .right-box .cont6-box {
  width: 100%;
  height: 500px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-animation: hide2 1s ease 0s both;
          animation: hide2 1s ease 0s both;
}

.roll-sec .con-bt {
  padding: 20px 0;
}

.roll-sec .con-bt .btn1-bx, .roll-sec .con-bt .btn2-bx, .roll-sec .con-bt .btn3-bx {
  -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;
  margin-bottom: 30px;
  padding: 15px;
  margin-right: 2px;
  border: 1px solid #f2f2f5 !important;
  color: #2f3033 !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  cursor: pointer;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .roll-sec {
    background-color: #ffffff !important;
    margin-bottom: 100px;
  }
  .roll-sec.cont1-show .con-roll .left-box > .cont1-box {
    -webkit-animation: show 1s ease 0.2s both;
            animation: show 1s ease 0.2s both;
  }
  .roll-sec.cont1-show .con-roll .right-box > .cont4-box {
    -webkit-animation: show2 1s ease 0.2s both;
            animation: show2 1s ease 0.2s both;
  }
  .roll-sec.cont1-show .con-bt .btn1-bx {
    background-color: #17a2b8 !important;
    color: #ffffff !important;
  }
  .roll-sec.cont2-show .con-roll .left-box .cont2-box {
    -webkit-animation: show 1s ease 0.2s both;
            animation: show 1s ease 0.2s both;
  }
  .roll-sec.cont2-show .con-roll .right-box > .cont5-box {
    -webkit-animation: show2 1s ease 0.2s both;
            animation: show2 1s ease 0.2s both;
  }
  .roll-sec.cont2-show .con-bt .btn2-bx {
    background-color: #17a2b8 !important;
    color: #ffffff !important;
  }
  .roll-sec.cont3-show .con-roll .left-box .cont3-box {
    -webkit-animation: show 1s ease 0.2s both;
            animation: show 1s ease 0.2s both;
  }
  .roll-sec.cont3-show .con-roll .right-box > .cont6-box {
    -webkit-animation: show2 1s ease 0.2s both;
            animation: show2 1s ease 0.2s both;
  }
  .roll-sec.cont3-show .con-bt .btn3-bx {
    background-color: #17a2b8 !important;
    color: #ffffff !important;
  }
  .roll-sec .con-roll {
    width: 100%;
    height: 700px;
    overflow: hidden;
    padding: 0 10px;
  }
  .roll-sec .con-roll .left-box {
    width: 50%;
    height: 100%;
  }
  .roll-sec .con-roll .left-box .cont1-box, .roll-sec .con-roll .left-box .cont2-box, .roll-sec .con-roll .left-box .cont3-box {
    position: absolute;
  }
  .roll-sec .con-roll .left-box .cont1-box {
    width: 100%;
    height: 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;
    -webkit-animation: hide 1s ease 0s both;
            animation: hide 1s ease 0s both;
  }
  .roll-sec .con-roll .left-box .cont1-box span {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .roll-sec .con-roll .left-box .cont1-box h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont1-box h4::after {
    width: 100%;
    height: 1px;
    background-color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont1-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 80%;
    color: #2f3033 !important;
    margin-bottom: 30px;
  }
  .roll-sec .con-roll .left-box .cont1-box p:nth-of-type(1) {
    margin-top: 30px;
  }
  .roll-sec .con-roll .left-box .cont1-box h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont2-box {
    width: 100%;
    height: 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;
    -webkit-animation: hide 1s ease 0s both;
            animation: hide 1s ease 0s both;
  }
  .roll-sec .con-roll .left-box .cont2-box span {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .roll-sec .con-roll .left-box .cont2-box h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont2-box h4::after {
    width: 100%;
    height: 1px;
    background-color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont2-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 80%;
    color: #2f3033 !important;
    margin-bottom: 30px;
  }
  .roll-sec .con-roll .left-box .cont2-box p:nth-of-type(1) {
    margin-top: 30px;
  }
  .roll-sec .con-roll .left-box .cont2-box h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont3-box {
    width: 100%;
    height: 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;
    -webkit-animation: hide 1s ease 0s both;
            animation: hide 1s ease 0s both;
  }
  .roll-sec .con-roll .left-box .cont3-box span {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .roll-sec .con-roll .left-box .cont3-box h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 34px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont3-box h4::after {
    width: 100%;
    height: 1px;
    background-color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont3-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 80%;
    color: #2f3033 !important;
    margin-bottom: 30px;
  }
  .roll-sec .con-roll .left-box .cont3-box p:nth-of-type(1) {
    margin-top: 30px;
  }
  .roll-sec .con-roll .left-box .cont3-box h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .right-box {
    width: 50%;
    height: 100%;
  }
  .roll-sec .con-roll .right-box .cont4-box, .roll-sec .con-roll .right-box .cont5-box, .roll-sec .con-roll .right-box .cont6-box {
    position: absolute;
  }
  .roll-sec .con-roll .right-box .cont4-box {
    width: 100%;
    height: 500px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: hide2 1s ease 0s both;
            animation: hide2 1s ease 0s both;
  }
  .roll-sec .con-roll .right-box .cont5-box {
    width: 100%;
    height: 500px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: hide2 1s ease 0s both;
            animation: hide2 1s ease 0s both;
  }
  .roll-sec .con-roll .right-box .cont6-box {
    width: 100%;
    height: 500px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: hide2 1s ease 0s both;
            animation: hide2 1s ease 0s both;
  }
  .roll-sec .con-bt {
    padding: 20px 10px;
  }
  .roll-sec .con-bt .btn1-bx, .roll-sec .con-bt .btn2-bx, .roll-sec .con-bt .btn3-bx {
    -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;
    margin-bottom: 30px;
    padding: 15px;
    margin-right: 2px;
    border: 1px solid #f2f2f5 !important;
    color: #2f3033 !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    cursor: pointer;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .roll-sec {
    background-color: #ffffff !important;
    margin-bottom: 70px;
  }
  .roll-sec.cont1-show .con-roll .left-box > .cont1-box {
    -webkit-animation: show 1s ease 0.2s both;
            animation: show 1s ease 0.2s both;
  }
  .roll-sec.cont1-show .con-roll .right-box > .cont4-box {
    -webkit-animation: show2 1s ease 0.2s both;
            animation: show2 1s ease 0.2s both;
  }
  .roll-sec.cont1-show .con-bt .btn1-bx {
    background-color: #17a2b8 !important;
    color: #ffffff !important;
  }
  .roll-sec.cont2-show .con-roll .left-box .cont2-box {
    -webkit-animation: show 1s ease 0.2s both;
            animation: show 1s ease 0.2s both;
  }
  .roll-sec.cont2-show .con-roll .right-box > .cont5-box {
    -webkit-animation: show2 1s ease 0.2s both;
            animation: show2 1s ease 0.2s both;
  }
  .roll-sec.cont2-show .con-bt .btn2-bx {
    background-color: #17a2b8 !important;
    color: #ffffff !important;
  }
  .roll-sec.cont3-show .con-roll .left-box .cont3-box {
    -webkit-animation: show 1s ease 0.2s both;
            animation: show 1s ease 0.2s both;
  }
  .roll-sec.cont3-show .con-roll .right-box > .cont6-box {
    -webkit-animation: show2 1s ease 0.2s both;
            animation: show2 1s ease 0.2s both;
  }
  .roll-sec.cont3-show .con-bt .btn3-bx {
    background-color: #17a2b8 !important;
    color: #ffffff !important;
  }
  .roll-sec .con-roll {
    width: 100%;
    height: 800px;
    overflow: hidden;
    padding: 0 10px;
  }
  .roll-sec .con-roll .left-box {
    width: 50%;
    height: 100%;
  }
  .roll-sec .con-roll .left-box .cont1-box, .roll-sec .con-roll .left-box .cont2-box, .roll-sec .con-roll .left-box .cont3-box {
    position: absolute;
  }
  .roll-sec .con-roll .left-box .cont1-box {
    width: 100%;
    height: 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;
    -webkit-animation: hide 1s ease 0s both;
            animation: hide 1s ease 0s both;
  }
  .roll-sec .con-roll .left-box .cont1-box span {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .roll-sec .con-roll .left-box .cont1-box h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont1-box h4::after {
    width: 100%;
    height: 1px;
    background-color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont1-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 80%;
    color: #2f3033 !important;
    margin-bottom: 30px;
  }
  .roll-sec .con-roll .left-box .cont1-box p:nth-of-type(1) {
    margin-top: 30px;
  }
  .roll-sec .con-roll .left-box .cont1-box h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont2-box {
    width: 100%;
    height: 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;
    -webkit-animation: hide 1s ease 0s both;
            animation: hide 1s ease 0s both;
  }
  .roll-sec .con-roll .left-box .cont2-box span {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .roll-sec .con-roll .left-box .cont2-box h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont2-box h4::after {
    width: 100%;
    height: 1px;
    background-color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont2-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 80%;
    color: #2f3033 !important;
    margin-bottom: 30px;
  }
  .roll-sec .con-roll .left-box .cont2-box p:nth-of-type(1) {
    margin-top: 30px;
  }
  .roll-sec .con-roll .left-box .cont2-box h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont3-box {
    width: 100%;
    height: 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;
    -webkit-animation: hide 1s ease 0s both;
            animation: hide 1s ease 0s both;
  }
  .roll-sec .con-roll .left-box .cont3-box span {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .roll-sec .con-roll .left-box .cont3-box h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont3-box h4::after {
    width: 100%;
    height: 1px;
    background-color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont3-box p {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 80%;
    color: #2f3033 !important;
    margin-bottom: 30px;
  }
  .roll-sec .con-roll .left-box .cont3-box p:nth-of-type(1) {
    margin-top: 30px;
  }
  .roll-sec .con-roll .left-box .cont3-box h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .right-box {
    width: 50%;
    height: 50%;
  }
  .roll-sec .con-roll .right-box .cont4-box, .roll-sec .con-roll .right-box .cont5-box, .roll-sec .con-roll .right-box .cont6-box {
    position: absolute;
  }
  .roll-sec .con-roll .right-box .cont4-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: hide2 1s ease 0s both;
            animation: hide2 1s ease 0s both;
  }
  .roll-sec .con-roll .right-box .cont5-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: hide2 1s ease 0s both;
            animation: hide2 1s ease 0s both;
  }
  .roll-sec .con-roll .right-box .cont6-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: hide2 1s ease 0s both;
            animation: hide2 1s ease 0s both;
  }
  .roll-sec .con-bt {
    padding: 20px 10px;
  }
  .roll-sec .con-bt .btn1-bx, .roll-sec .con-bt .btn2-bx, .roll-sec .con-bt .btn3-bx {
    -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;
    margin-bottom: 30px;
    padding: 15px;
    margin-right: 2px;
    border: 1px solid #f2f2f5 !important;
    color: #2f3033 !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    cursor: pointer;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .roll-sec {
    background-color: #ffffff !important;
    margin-bottom: 50px;
  }
  .roll-sec.cont1-show .con-roll .left-box > .cont1-box {
    -webkit-animation: show 1s ease 0.2s both;
            animation: show 1s ease 0.2s both;
  }
  .roll-sec.cont1-show .con-roll .right-box > .cont4-box {
    -webkit-animation: show2 1s ease 0.2s both;
            animation: show2 1s ease 0.2s both;
  }
  .roll-sec.cont1-show .con-bt .btn1-bx {
    background-color: #17a2b8 !important;
    color: #ffffff !important;
  }
  .roll-sec.cont2-show .con-roll .left-box .cont2-box {
    -webkit-animation: show 1s ease 0.2s both;
            animation: show 1s ease 0.2s both;
  }
  .roll-sec.cont2-show .con-roll .right-box > .cont5-box {
    -webkit-animation: show2 1s ease 0.2s both;
            animation: show2 1s ease 0.2s both;
  }
  .roll-sec.cont2-show .con-bt .btn2-bx {
    background-color: #17a2b8 !important;
    color: #ffffff !important;
  }
  .roll-sec.cont3-show .con-roll .left-box .cont3-box {
    -webkit-animation: show 1s ease 0.2s both;
            animation: show 1s ease 0.2s both;
  }
  .roll-sec.cont3-show .con-roll .right-box > .cont6-box {
    -webkit-animation: show2 1s ease 0.2s both;
            animation: show2 1s ease 0.2s both;
  }
  .roll-sec.cont3-show .con-bt .btn3-bx {
    background-color: #17a2b8 !important;
    color: #ffffff !important;
  }
  .roll-sec .con-roll {
    width: 100%;
    height: 700px;
    overflow: hidden;
    padding: 0 10px;
  }
  .roll-sec .con-roll .left-box {
    width: 60%;
    height: 100%;
  }
  .roll-sec .con-roll .left-box .cont1-box, .roll-sec .con-roll .left-box .cont2-box, .roll-sec .con-roll .left-box .cont3-box {
    position: absolute;
  }
  .roll-sec .con-roll .left-box .cont1-box {
    width: 100%;
    height: 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;
    -webkit-animation: hide 1s ease 0s both;
            animation: hide 1s ease 0s both;
  }
  .roll-sec .con-roll .left-box .cont1-box span {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .roll-sec .con-roll .left-box .cont1-box h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont1-box h4::after {
    width: 100%;
    height: 1px;
    margin-top: 10px;
    background-color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont1-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 90%;
    color: #2f3033 !important;
    margin-bottom: 30px;
  }
  .roll-sec .con-roll .left-box .cont1-box p:nth-of-type(1) {
    margin-top: 30px;
  }
  .roll-sec .con-roll .left-box .cont1-box h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont2-box {
    width: 100%;
    height: 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;
    -webkit-animation: hide 1s ease 0s both;
            animation: hide 1s ease 0s both;
  }
  .roll-sec .con-roll .left-box .cont2-box span {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .roll-sec .con-roll .left-box .cont2-box h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont2-box h4::after {
    width: 100%;
    height: 1px;
    margin-top: 10px;
    background-color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont2-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 90%;
    color: #2f3033 !important;
    margin-bottom: 30px;
  }
  .roll-sec .con-roll .left-box .cont2-box p:nth-of-type(1) {
    margin-top: 30px;
  }
  .roll-sec .con-roll .left-box .cont2-box h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont3-box {
    width: 100%;
    height: 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;
    -webkit-animation: hide 1s ease 0s both;
            animation: hide 1s ease 0s both;
  }
  .roll-sec .con-roll .left-box .cont3-box span {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .roll-sec .con-roll .left-box .cont3-box h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont3-box h4::after {
    width: 100%;
    height: 1px;
    margin-top: 10px;
    background-color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont3-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 90%;
    color: #2f3033 !important;
    margin-bottom: 30px;
  }
  .roll-sec .con-roll .left-box .cont3-box p:nth-of-type(1) {
    margin-top: 30px;
  }
  .roll-sec .con-roll .left-box .cont3-box h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .right-box {
    width: 40%;
    height: 50%;
  }
  .roll-sec .con-roll .right-box .cont4-box, .roll-sec .con-roll .right-box .cont5-box, .roll-sec .con-roll .right-box .cont6-box {
    position: absolute;
  }
  .roll-sec .con-roll .right-box .cont4-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: hide2 1s ease 0s both;
            animation: hide2 1s ease 0s both;
  }
  .roll-sec .con-roll .right-box .cont5-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: hide2 1s ease 0s both;
            animation: hide2 1s ease 0s both;
  }
  .roll-sec .con-roll .right-box .cont6-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: hide2 1s ease 0s both;
            animation: hide2 1s ease 0s both;
  }
  .roll-sec .con-bt {
    padding: 20px 10px;
  }
  .roll-sec .con-bt .btn1-bx, .roll-sec .con-bt .btn2-bx, .roll-sec .con-bt .btn3-bx {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px;
    margin-bottom: 20px;
    margin-right: 2px;
    border: 1px solid #f2f2f5 !important;
    color: #2f3033 !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    cursor: pointer;
  }
}

@media (max-width: 575.99px) {
  .roll-sec {
    background-color: #ffffff !important;
    margin-bottom: 20px;
  }
  .roll-sec.cont1-show .con-roll .left-box > .cont1-box {
    -webkit-animation: show 1s ease 0.2s both;
            animation: show 1s ease 0.2s both;
  }
  .roll-sec.cont1-show .con-roll .right-box > .cont4-box {
    -webkit-animation: show2 1s ease 0.2s both;
            animation: show2 1s ease 0.2s both;
  }
  .roll-sec.cont1-show .con-bt .btn1-bx {
    background-color: #17a2b8 !important;
    color: #ffffff !important;
  }
  .roll-sec.cont2-show .con-roll .left-box .cont2-box {
    -webkit-animation: show 1s ease 0.2s both;
            animation: show 1s ease 0.2s both;
  }
  .roll-sec.cont2-show .con-roll .right-box > .cont5-box {
    -webkit-animation: show2 1s ease 0.2s both;
            animation: show2 1s ease 0.2s both;
  }
  .roll-sec.cont2-show .con-bt .btn2-bx {
    background-color: #17a2b8 !important;
    color: #ffffff !important;
  }
  .roll-sec.cont3-show .con-roll .left-box .cont3-box {
    -webkit-animation: show 1s ease 0.2s both;
            animation: show 1s ease 0.2s both;
  }
  .roll-sec.cont3-show .con-roll .right-box > .cont6-box {
    -webkit-animation: show2 1s ease 0.2s both;
            animation: show2 1s ease 0.2s both;
  }
  .roll-sec.cont3-show .con-bt .btn3-bx {
    background-color: #17a2b8 !important;
    color: #ffffff !important;
  }
  .roll-sec .con-roll {
    -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;
    width: 100%;
    height: 850px;
    overflow: hidden;
    padding: 0 10px;
  }
  .roll-sec .con-roll .left-box {
    overflow: hidden;
    width: 100%;
    height: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .roll-sec .con-roll .left-box .cont1-box, .roll-sec .con-roll .left-box .cont2-box, .roll-sec .con-roll .left-box .cont3-box {
    position: absolute;
  }
  .roll-sec .con-roll .left-box .cont1-box {
    width: 100%;
    height: 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;
    -webkit-animation: hide 1s ease 0s both;
            animation: hide 1s ease 0s both;
  }
  .roll-sec .con-roll .left-box .cont1-box span {
    font-size: 11px;
    font-weight: 400;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .roll-sec .con-roll .left-box .cont1-box h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont1-box h4::after {
    width: 100%;
    height: 1px;
    margin-top: 10px;
    background-color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont1-box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 90%;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  .roll-sec .con-roll .left-box .cont1-box p:nth-of-type(1) {
    margin-top: 20px;
  }
  .roll-sec .con-roll .left-box .cont1-box h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont2-box {
    width: 100%;
    height: 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;
    -webkit-animation: hide 1s ease 0s both;
            animation: hide 1s ease 0s both;
  }
  .roll-sec .con-roll .left-box .cont2-box span {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .roll-sec .con-roll .left-box .cont2-box h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont2-box h4::after {
    width: 100%;
    height: 1px;
    margin-top: 5px;
    background-color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont2-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 90%;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  .roll-sec .con-roll .left-box .cont2-box p:nth-of-type(1) {
    margin-top: 20px;
  }
  .roll-sec .con-roll .left-box .cont2-box h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont3-box {
    width: 100%;
    height: 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;
    -webkit-animation: hide 1s ease 0s both;
            animation: hide 1s ease 0s both;
  }
  .roll-sec .con-roll .left-box .cont3-box span {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .roll-sec .con-roll .left-box .cont3-box h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont3-box h4::after {
    width: 100%;
    height: 1px;
    margin-top: 5px;
    background-color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont3-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 90%;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  .roll-sec .con-roll .left-box .cont3-box p:nth-of-type(1) {
    margin-top: 20px;
  }
  .roll-sec .con-roll .left-box .cont3-box h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .right-box {
    overflow: hidden;
    width: 100%;
    height: 50%;
    margin-bottom: 20px;
  }
  .roll-sec .con-roll .right-box .cont4-box, .roll-sec .con-roll .right-box .cont5-box, .roll-sec .con-roll .right-box .cont6-box {
    position: absolute;
  }
  .roll-sec .con-roll .right-box .cont4-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: hide2 1s ease 0s both;
            animation: hide2 1s ease 0s both;
  }
  .roll-sec .con-roll .right-box .cont5-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: hide2 1s ease 0s both;
            animation: hide2 1s ease 0s both;
  }
  .roll-sec .con-roll .right-box .cont6-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: hide2 1s ease 0s both;
            animation: hide2 1s ease 0s both;
  }
  .roll-sec .con-bt {
    padding: 20px 10px;
  }
  .roll-sec .con-bt .btn1-bx, .roll-sec .con-bt .btn2-bx, .roll-sec .con-bt .btn3-bx {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px;
    margin-bottom: 20px;
    margin-right: 2px;
    border: 1px solid #f2f2f5 !important;
    color: #2f3033 !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    cursor: pointer;
  }
}

@media (max-width: 419.99px) {
  .roll-sec {
    background-color: #ffffff !important;
    margin-bottom: 20px;
  }
  .roll-sec.cont1-show .con-roll .left-box > .cont1-box {
    -webkit-animation: show 1s ease 0.2s both;
            animation: show 1s ease 0.2s both;
  }
  .roll-sec.cont1-show .con-roll .right-box > .cont4-box {
    -webkit-animation: show2 1s ease 0.2s both;
            animation: show2 1s ease 0.2s both;
  }
  .roll-sec.cont1-show .con-bt .btn1-bx {
    background-color: #17a2b8 !important;
    color: #ffffff !important;
  }
  .roll-sec.cont2-show .con-roll .left-box .cont2-box {
    -webkit-animation: show 1s ease 0.2s both;
            animation: show 1s ease 0.2s both;
  }
  .roll-sec.cont2-show .con-roll .right-box > .cont5-box {
    -webkit-animation: show2 1s ease 0.2s both;
            animation: show2 1s ease 0.2s both;
  }
  .roll-sec.cont2-show .con-bt .btn2-bx {
    background-color: #17a2b8 !important;
    color: #ffffff !important;
  }
  .roll-sec.cont3-show .con-roll .left-box .cont3-box {
    -webkit-animation: show 1s ease 0.2s both;
            animation: show 1s ease 0.2s both;
  }
  .roll-sec.cont3-show .con-roll .right-box > .cont6-box {
    -webkit-animation: show2 1s ease 0.2s both;
            animation: show2 1s ease 0.2s both;
  }
  .roll-sec.cont3-show .con-bt .btn3-bx {
    background-color: #17a2b8 !important;
    color: #ffffff !important;
  }
  .roll-sec .con-roll {
    -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;
    width: 100%;
    height: 950px;
    overflow: hidden;
    padding: 0 10px;
  }
  .roll-sec .con-roll .left-box {
    overflow: hidden;
    width: 100%;
    height: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .roll-sec .con-roll .left-box .cont1-box, .roll-sec .con-roll .left-box .cont2-box, .roll-sec .con-roll .left-box .cont3-box {
    position: absolute;
  }
  .roll-sec .con-roll .left-box .cont1-box {
    width: 100%;
    height: 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;
    -webkit-animation: hide 1s ease 0s both;
            animation: hide 1s ease 0s both;
  }
  .roll-sec .con-roll .left-box .cont1-box span {
    font-size: 11px;
    font-weight: 400;
    line-height: 15px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .roll-sec .con-roll .left-box .cont1-box h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont1-box h4::after {
    width: 100%;
    height: 1px;
    margin-top: 10px;
    background-color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont1-box p {
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 90%;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  .roll-sec .con-roll .left-box .cont1-box p:nth-of-type(1) {
    margin-top: 20px;
  }
  .roll-sec .con-roll .left-box .cont1-box h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont2-box {
    width: 100%;
    height: 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;
    -webkit-animation: hide 1s ease 0s both;
            animation: hide 1s ease 0s both;
  }
  .roll-sec .con-roll .left-box .cont2-box span {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .roll-sec .con-roll .left-box .cont2-box h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont2-box h4::after {
    width: 100%;
    height: 1px;
    margin-top: 5px;
    background-color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont2-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 90%;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  .roll-sec .con-roll .left-box .cont2-box p:nth-of-type(1) {
    margin-top: 20px;
  }
  .roll-sec .con-roll .left-box .cont2-box h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont3-box {
    width: 100%;
    height: 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;
    -webkit-animation: hide 1s ease 0s both;
            animation: hide 1s ease 0s both;
  }
  .roll-sec .con-roll .left-box .cont3-box span {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .roll-sec .con-roll .left-box .cont3-box h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont3-box h4::after {
    width: 100%;
    height: 1px;
    margin-top: 5px;
    background-color: #2f3033 !important;
  }
  .roll-sec .con-roll .left-box .cont3-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 18px;
    font-family: "Noto Sans KR", sans-serif !important;
    width: 90%;
    color: #2f3033 !important;
    margin-bottom: 20px;
  }
  .roll-sec .con-roll .left-box .cont3-box p:nth-of-type(1) {
    margin-top: 20px;
  }
  .roll-sec .con-roll .left-box .cont3-box h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .roll-sec .con-roll .right-box {
    overflow: hidden;
    width: 100%;
    height: 50%;
    margin-bottom: 20px;
  }
  .roll-sec .con-roll .right-box .cont4-box, .roll-sec .con-roll .right-box .cont5-box, .roll-sec .con-roll .right-box .cont6-box {
    position: absolute;
  }
  .roll-sec .con-roll .right-box .cont4-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: hide2 1s ease 0s both;
            animation: hide2 1s ease 0s both;
  }
  .roll-sec .con-roll .right-box .cont5-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: hide2 1s ease 0s both;
            animation: hide2 1s ease 0s both;
  }
  .roll-sec .con-roll .right-box .cont6-box {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-animation: hide2 1s ease 0s both;
            animation: hide2 1s ease 0s both;
  }
  .roll-sec .con-bt {
    padding: 20px 10px;
  }
  .roll-sec .con-bt .btn1-bx, .roll-sec .con-bt .btn2-bx, .roll-sec .con-bt .btn3-bx {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px;
    margin-bottom: 20px;
    margin-right: 2px;
    border: 1px solid #f2f2f5 !important;
    color: #2f3033 !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    cursor: pointer;
  }
}
/*# sourceMappingURL=main.css.map */