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

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

.content-sec {
  position: relative;
  z-index: 1;
  background-color: white;
}

.content-sec .con-bbs-cont {
  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;
}

.content-sec .con-bbs-cont .items-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;
}

.content-sec .con-bbs-cont .items-box .item-bx {
  -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: 32%;
  height: 400px;
  margin-right: 2%;
  margin-bottom: 2%;
  overflow: hidden;
}

.content-sec .con-bbs-cont .items-box .item-bx:nth-of-type(3n) {
  margin-right: 0;
}

.content-sec .con-bbs-cont .items-box .item-bx:hover > a {
  background-color: rgba(150, 220, 65, 0.2);
}

.content-sec .con-bbs-cont .items-box .item-bx:hover > a::before {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.content-sec .con-bbs-cont .items-box .item-bx:hover > a::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.2s ease 0.2s;
  transition: all 0.2s ease 0.2s;
}

.content-sec .con-bbs-cont .items-box .item-bx:hover span {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.2s ease 0.4s;
  transition: all 0.2s ease 0.4s;
}

.content-sec .con-bbs-cont .items-box .item-bx:hover span:nth-of-type(2) {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.2s ease 0.6s;
  transition: all 0.2s ease 0.6s;
}

.content-sec .con-bbs-cont .items-box .item-bx > a {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.content-sec .con-bbs-cont .items-box .item-bx > a::before {
  width: 3px;
  height: 100%;
  right: 0;
  top: 0;
  background-color: #95DC41;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 0.2s ease 0.6s;
  transition: all 0.2s ease 0.6s;
}

.content-sec .con-bbs-cont .items-box .item-bx > a::after {
  width: 100%;
  height: 3px;
  left: 0;
  top: 0;
  background-color: #95DC41;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.2s ease 0.4s;
  transition: all 0.2s ease 0.4s;
}

.content-sec .con-bbs-cont .items-box .item-bx span {
  position: absolute;
  z-index: 1;
  width: 3px;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #95DC41;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.2s ease 0.2s;
  transition: all 0.2s ease 0.2s;
}

.content-sec .con-bbs-cont .items-box .item-bx span:nth-of-type(2) {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 3px;
  top: calc(100% - 3px);
  left: 0;
  background-color: #95DC41;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.content-sec .con-bbs-cont .items-box .item-bx .t-box {
  width: 100%;
  height: calc(100% - 80px);
  background-color: aquamarine;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.content-sec .con-bbs-cont .items-box .item-bx .bt-box {
  width: 100%;
  height: 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 20px;
}

.content-sec .con-bbs-cont .items-box .item-bx .bt-box h5 {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  font-family: "Noto Sans KR", sans-serif !important;
  color: #2f3033 !important;
}

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

.content-sec .con-pagenav {
  -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-top: 30px;
}

.content-sec .con-pagenav .list-nav {
  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;
}

.content-sec .con-pagenav .list-nav > 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: 30px;
  height: 30px;
  border: 1px solid #e1e3e5 !important;
  margin: 1px;
  cursor: pointer;
}

.content-sec .con-pagenav .list-nav > li > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-weight: 300;
  line-height: 30px;
  font-family: "Noto Sans KR", sans-serif !important;
}

.content-sec .con-pagenav .list-nav > li:hover {
  background-color: #e1e3e5 !important;
}

.content-sec .con-pagenav .list-nav > li.active {
  background-color: #939599 !important;
}

.content-sec .con-pagenav .list-nav > li.active span {
  color: #ffffff !important;
}

.content-sec .con-pagenav .list-nav > li:first-child, .content-sec .con-pagenav .list-nav > li:last-child {
  background-color: #17181a !important;
  border: 1px solid #17181a !important;
}

@media (max-width: 1199.99px) and (min-width: 992px) {
  .content-sec {
    position: relative;
    z-index: 1;
    background-color: white;
  }
  .content-sec .con-bbs-cont {
    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;
  }
  .content-sec .con-bbs-cont .items-box {
    width: 100%;
    margin-top: 0;
    -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;
  }
  .content-sec .con-bbs-cont .items-box .item-bx {
    -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: 32%;
    height: 350px;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:nth-of-type(3n) {
    margin-right: 0;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover > a {
    background-color: rgba(150, 220, 65, 0.2);
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover > a::before {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover > a::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: all 0.2s ease 0.2s;
    transition: all 0.2s ease 0.2s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover span {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: all 0.2s ease 0.4s;
    transition: all 0.2s ease 0.4s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover span:nth-of-type(2) {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: all 0.2s ease 0.6s;
    transition: all 0.2s ease 0.6s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx > a {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  .content-sec .con-bbs-cont .items-box .item-bx > a::before {
    width: 3px;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #95DC41;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: all 0.2s ease 0.6s;
    transition: all 0.2s ease 0.6s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx > a::after {
    width: 100%;
    height: 3px;
    left: 0;
    top: 0;
    background-color: #95DC41;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.2s ease 0.4s;
    transition: all 0.2s ease 0.4s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx span {
    position: absolute;
    z-index: 1;
    width: 3px;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #95DC41;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: all 0.2s ease 0.2s;
    transition: all 0.2s ease 0.2s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx span:nth-of-type(2) {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 3px;
    top: calc(100% - 3px);
    left: 0;
    background-color: #95DC41;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx .t-box {
    width: 100%;
    height: calc(100% - 80px);
    background-color: aquamarine;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .content-sec .con-bbs-cont .items-box .item-bx .bt-box {
    width: 100%;
    height: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px;
  }
  .content-sec .con-bbs-cont .items-box .item-bx .bt-box h3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .content-sec .con-bbs-cont .items-box .item-bx .bt-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .content-sec .con-pagenav {
    -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-top: 30px;
  }
  .content-sec .con-pagenav .list-nav {
    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;
  }
  .content-sec .con-pagenav .list-nav > 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: 30px;
    height: 30px;
    border: 1px solid #e1e3e5 !important;
    margin: 1px;
    cursor: pointer;
  }
  .content-sec .con-pagenav .list-nav > li:hover {
    background-color: #e1e3e5 !important;
  }
  .content-sec .con-pagenav .list-nav > li.active {
    background-color: #939599 !important;
  }
  .content-sec .con-pagenav .list-nav > li.active span {
    color: #ffffff !important;
  }
  .content-sec .con-pagenav .list-nav > li:first-child, .content-sec .con-pagenav .list-nav > li:last-child {
    background-color: #17181a !important;
    border: 1px solid #17181a !important;
  }
}

@media (max-width: 991.99px) and (min-width: 768px) {
  .content-sec {
    position: relative;
    z-index: 1;
    background-color: white;
  }
  .content-sec .con-bbs-cont {
    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;
  }
  .content-sec .con-bbs-cont .items-box {
    width: 100%;
    margin-top: 0;
    -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;
  }
  .content-sec .con-bbs-cont .items-box .item-bx {
    -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: 32.5%;
    height: 300px;
    margin-right: 1.25%;
    margin-bottom: 1.25%;
    overflow: hidden;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:nth-of-type(3n) {
    margin-right: 0;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover > a {
    background-color: rgba(150, 220, 65, 0.2);
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover > a::before {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover > a::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: all 0.2s ease 0.2s;
    transition: all 0.2s ease 0.2s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover span {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: all 0.2s ease 0.4s;
    transition: all 0.2s ease 0.4s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover span:nth-of-type(2) {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: all 0.2s ease 0.6s;
    transition: all 0.2s ease 0.6s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx > a {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  .content-sec .con-bbs-cont .items-box .item-bx > a::before {
    width: 3px;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #95DC41;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: all 0.2s ease 0.6s;
    transition: all 0.2s ease 0.6s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx > a::after {
    width: 100%;
    height: 3px;
    left: 0;
    top: 0;
    background-color: #95DC41;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.2s ease 0.4s;
    transition: all 0.2s ease 0.4s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx span {
    position: absolute;
    z-index: 1;
    width: 3px;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #95DC41;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: all 0.2s ease 0.2s;
    transition: all 0.2s ease 0.2s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx span:nth-of-type(2) {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 3px;
    top: calc(100% - 3px);
    left: 0;
    background-color: #95DC41;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx .t-box {
    width: 100%;
    height: calc(100% - 80px);
    background-color: aquamarine;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .content-sec .con-bbs-cont .items-box .item-bx .bt-box {
    width: 100%;
    height: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px;
  }
  .content-sec .con-bbs-cont .items-box .item-bx .bt-box h3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .content-sec .con-bbs-cont .items-box .item-bx .bt-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .content-sec .con-pagenav {
    -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-top: 30px;
  }
  .content-sec .con-pagenav .list-nav {
    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;
  }
  .content-sec .con-pagenav .list-nav > 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: 30px;
    height: 30px;
    border: 1px solid #e1e3e5 !important;
    margin: 1px;
    cursor: pointer;
  }
  .content-sec .con-pagenav .list-nav > li:hover {
    background-color: #e1e3e5 !important;
  }
  .content-sec .con-pagenav .list-nav > li.active {
    background-color: #939599 !important;
  }
  .content-sec .con-pagenav .list-nav > li.active span {
    color: #ffffff !important;
  }
  .content-sec .con-pagenav .list-nav > li:first-child, .content-sec .con-pagenav .list-nav > li:last-child {
    background-color: #17181a !important;
    border: 1px solid #17181a !important;
  }
}

@media (max-width: 767.99px) and (min-width: 576px) {
  .content-sec {
    position: relative;
    z-index: 1;
    background-color: white;
  }
  .content-sec .con-bbs-cont {
    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;
  }
  .content-sec .con-bbs-cont .items-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;
  }
  .content-sec .con-bbs-cont .items-box .item-bx {
    -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: 49%;
    height: 300px;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:nth-of-type(2n) {
    margin-right: 0;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover > a {
    background-color: rgba(150, 220, 65, 0.2);
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover > a::before {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover > a::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: all 0.2s ease 0.2s;
    transition: all 0.2s ease 0.2s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover span {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: all 0.2s ease 0.4s;
    transition: all 0.2s ease 0.4s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover span:nth-of-type(2) {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: all 0.2s ease 0.6s;
    transition: all 0.2s ease 0.6s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx > a {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  .content-sec .con-bbs-cont .items-box .item-bx > a::before {
    width: 3px;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #95DC41;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: all 0.2s ease 0.6s;
    transition: all 0.2s ease 0.6s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx > a::after {
    width: 100%;
    height: 3px;
    left: 0;
    top: 0;
    background-color: #95DC41;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.2s ease 0.4s;
    transition: all 0.2s ease 0.4s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx span {
    position: absolute;
    z-index: 1;
    width: 3px;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #95DC41;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: all 0.2s ease 0.2s;
    transition: all 0.2s ease 0.2s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx span:nth-of-type(2) {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 3px;
    top: calc(100% - 3px);
    left: 0;
    background-color: #95DC41;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx .t-box {
    width: 100%;
    height: calc(100% - 80px);
    background-color: aquamarine;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .content-sec .con-bbs-cont .items-box .item-bx .bt-box {
    width: 100%;
    height: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px;
  }
  .content-sec .con-bbs-cont .items-box .item-bx .bt-box h3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .content-sec .con-bbs-cont .items-box .item-bx .bt-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .content-sec .con-pagenav {
    -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-top: 30px;
  }
  .content-sec .con-pagenav .list-nav {
    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;
  }
  .content-sec .con-pagenav .list-nav > 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: 30px;
    height: 30px;
    border: 1px solid #e1e3e5 !important;
    margin: 1px;
    cursor: pointer;
  }
  .content-sec .con-pagenav .list-nav > li:hover {
    background-color: #e1e3e5 !important;
  }
  .content-sec .con-pagenav .list-nav > li.active {
    background-color: #939599 !important;
  }
  .content-sec .con-pagenav .list-nav > li.active span {
    color: #ffffff !important;
  }
  .content-sec .con-pagenav .list-nav > li:first-child, .content-sec .con-pagenav .list-nav > li:last-child {
    background-color: #17181a !important;
    border: 1px solid #17181a !important;
  }
}

@media (max-width: 575.99px) {
  .content-sec {
    position: relative;
    z-index: 1;
    background-color: white;
  }
  .content-sec .con-bbs-cont {
    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;
  }
  .content-sec .con-bbs-cont .items-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;
  }
  .content-sec .con-bbs-cont .items-box .item-bx {
    -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: 49%;
    height: 260px;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:nth-of-type(2n) {
    margin-right: 0;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover > a {
    background-color: rgba(150, 220, 65, 0.2);
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover > a::before {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover > a::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: all 0.2s ease 0.2s;
    transition: all 0.2s ease 0.2s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover span {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: all 0.2s ease 0.4s;
    transition: all 0.2s ease 0.4s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover span:nth-of-type(2) {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: all 0.2s ease 0.6s;
    transition: all 0.2s ease 0.6s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx > a {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  .content-sec .con-bbs-cont .items-box .item-bx > a::before {
    width: 3px;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #95DC41;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: all 0.2s ease 0.6s;
    transition: all 0.2s ease 0.6s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx > a::after {
    width: 100%;
    height: 3px;
    left: 0;
    top: 0;
    background-color: #95DC41;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.2s ease 0.4s;
    transition: all 0.2s ease 0.4s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx span {
    position: absolute;
    z-index: 1;
    width: 3px;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #95DC41;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: all 0.2s ease 0.2s;
    transition: all 0.2s ease 0.2s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx span:nth-of-type(2) {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 3px;
    top: calc(100% - 3px);
    left: 0;
    background-color: #95DC41;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx .t-box {
    width: 100%;
    height: calc(100% - 80px);
    background-color: aquamarine;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .content-sec .con-bbs-cont .items-box .item-bx .bt-box {
    width: 100%;
    height: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px;
  }
  .content-sec .con-bbs-cont .items-box .item-bx .bt-box h3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .content-sec .con-bbs-cont .items-box .item-bx .bt-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .content-sec .con-pagenav {
    -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-top: 30px;
  }
  .content-sec .con-pagenav .list-nav {
    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;
  }
  .content-sec .con-pagenav .list-nav > 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: 30px;
    height: 30px;
    border: 1px solid #e1e3e5 !important;
    margin: 1px;
    cursor: pointer;
  }
  .content-sec .con-pagenav .list-nav > li > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 13px;
    font-weight: 300;
    line-height: 30px;
    font-family: "Noto Sans KR", sans-serif !important;
  }
  .content-sec .con-pagenav .list-nav > li:hover {
    background-color: #e1e3e5 !important;
  }
  .content-sec .con-pagenav .list-nav > li.active {
    background-color: #939599 !important;
  }
  .content-sec .con-pagenav .list-nav > li.active span {
    color: #ffffff !important;
  }
  .content-sec .con-pagenav .list-nav > li:first-child, .content-sec .con-pagenav .list-nav > li:last-child {
    background-color: #17181a !important;
    border: 1px solid #17181a !important;
  }
}

@media (max-width: 419.99px) {
  .content-sec {
    position: relative;
    z-index: 1;
    background-color: white;
  }
  .content-sec .con-bbs-cont {
    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;
  }
  .content-sec .con-bbs-cont .items-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;
  }
  .content-sec .con-bbs-cont .items-box .item-bx {
    -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: 49%;
    height: 220px;
    margin-right: 2%;
    margin-bottom: 2%;
    overflow: hidden;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:nth-of-type(2n) {
    margin-right: 0;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover > a {
    background-color: rgba(150, 220, 65, 0.2);
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover > a::before {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover > a::after {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: all 0.2s ease 0.2s;
    transition: all 0.2s ease 0.2s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover span {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: all 0.2s ease 0.4s;
    transition: all 0.2s ease 0.4s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx:hover span:nth-of-type(2) {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: all 0.2s ease 0.6s;
    transition: all 0.2s ease 0.6s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx > a {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  .content-sec .con-bbs-cont .items-box .item-bx > a::before {
    width: 3px;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #95DC41;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition: all 0.2s ease 0.6s;
    transition: all 0.2s ease 0.6s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx > a::after {
    width: 100%;
    height: 3px;
    left: 0;
    top: 0;
    background-color: #95DC41;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.2s ease 0.4s;
    transition: all 0.2s ease 0.4s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx span {
    position: absolute;
    z-index: 1;
    width: 3px;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #95DC41;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: all 0.2s ease 0.2s;
    transition: all 0.2s ease 0.2s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx span:nth-of-type(2) {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 3px;
    top: calc(100% - 3px);
    left: 0;
    background-color: #95DC41;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
  }
  .content-sec .con-bbs-cont .items-box .item-bx .t-box {
    width: 100%;
    height: calc(100% - 80px);
    background-color: aquamarine;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .content-sec .con-bbs-cont .items-box .item-bx .bt-box {
    width: 100%;
    height: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px;
  }
  .content-sec .con-bbs-cont .items-box .item-bx .bt-box h3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #2f3033 !important;
  }
  .content-sec .con-bbs-cont .items-box .item-bx .bt-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    font-family: "Noto Sans KR", sans-serif !important;
    color: #606266 !important;
  }
  .content-sec .con-pagenav {
    -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-top: 30px;
  }
  .content-sec .con-pagenav .list-nav {
    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;
  }
  .content-sec .con-pagenav .list-nav > 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: 30px;
    height: 30px;
    border: 1px solid #e1e3e5 !important;
    margin: 1px;
    cursor: pointer;
  }
  .content-sec .con-pagenav .list-nav > li:hover {
    background-color: #e1e3e5 !important;
  }
  .content-sec .con-pagenav .list-nav > li.active {
    background-color: #939599 !important;
  }
  .content-sec .con-pagenav .list-nav > li.active span {
    color: #ffffff !important;
  }
  .content-sec .con-pagenav .list-nav > li:first-child, .content-sec .con-pagenav .list-nav > li:last-child {
    background-color: #17181a !important;
    border: 1px solid #17181a !important;
  }
}
/*# sourceMappingURL=product.css.map */