@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');


/* 주요색상 */
:root{
    --page-point-color:#4263eb;
    --page-point-color-light:#5c7cfa;
    --page-point-color-thick:#364fc7;
}

#site {
    padding-top: 0;
    font-size: 18px;
    font-family: 'Poppins', 'notokr', sans-serif;
    letter-spacing: -0.04em;
}

.btn {
    transition: all ease .15s;
    -webkit-transition: all ease .15s;
    -moz-transition: all ease .15s;
    -ms-transition: all ease .15s;
    -o-transition: all ease .15s;
}

a,
a:hover,
a:focus {
    color: inherit;
}

a[href^="mailto"] {
    color: inherit;
}

p {
    line-height: 1.6em;
}

.btn.btn-primary {
    background-color: var(--page-point-color);
    border-color: var(--page-point-color);
}
.board_wrapper .text-center .btn.btn-lg {
    font-size: 16px;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
    color: var(--page-point-color);
    background-color: transparent;
}

h1, h2, h3, h4, h5, h6, p, li, td, dt, dd, figcaption {
    word-break: keep-all;
}

/* To Top Button */
.btn-top {
    z-index: 1;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    position: fixed;
    padding: 13px 15px 15px;
    font-size: 18px;
    color: #fff;
    text-align: center;
    background-color: #555;
    border-radius: 3px;
    display: none;
}
.btn-top:hover {
    cursor: hand;
    cursor: pointer;
    background-color: var(--page-point-color);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* 메인 애니메이션 */
.ani{
    opacity: 0;
    animation-duration: 1s;
	animation-fill-mode: both;
}

.active.ani.fi-in{animation-name:fadeIn;}
.active.ani.fi-up{animation-name:fadeInUp;}
.active.ani.fi-down{animation-name:fadeInDown;}
.active.ani.fi-left{animation-name:fadeInLeft;}
.active.ani.fi-right{animation-name:fadeInRight;}

.active.ani.fi-up2{animation-name:fadeInUp2;}
.active.ani.fi-down2{animation-name:fadeInDown2;}
.active.ani.fi-left2{animation-name:fadeInLeft2;}
.active.ani.fi-right2{animation-name:fadeInRight2;}

.active.ani.t1{animation-delay: 0.1s;}
.active.ani.t2{animation-delay: 0.2s;}
.active.ani.t3{animation-delay: 0.3s;}
.active.ani.t4{animation-delay: 0.4s;}
.active.ani.t5{animation-delay: 0.5s;}
.active.ani.t6{animation-delay: 0.6s;}
.active.ani.t7{animation-delay: 0.7s;}
.active.ani.t8{animation-delay: 0.8s;}
.active.ani.t9{animation-delay: 0.9s;}
.active.ani.t10{animation-delay: 1s;}
.active.ani.t11{animation-delay: 1.1s;}
.active.ani.t13{animation-delay: 1.3s;}
.active.ani.t15{animation-delay: 1.5s;}

@keyframes fadeInUp2 {
    0% {
        opacity: 0;
        transform: translateY(20%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}
@keyframes fadeInDown2 {
    0% {
        opacity: 0;
        transform: translateY(-20%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}
@keyframes fadeInLeft2 {
    0% {
        opacity: 0;
        transform: translateX(-20%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}
@keyframes fadeInRight2 {
    0% {
        opacity: 0;
        transform: translateX(20%);
    }
    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

/* 언어 변환 버튼(다국어 */
.box-lang {
    margin: 32px 30px;
    position: relative;
    z-index: 999;
}
.box-lang > .curr_lang {
    width: 88px;
    height: 36px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 30px;
    color: #fff;
}
.box-lang .inner {
    top: 36px;
    left: 0;
    width: 100%;
    position: absolute;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 20%);
    display: none;
}
.box-lang > .curr_lang::after {
    content: "\ef03";
    top: 8px;
    right: 10px;
    position: absolute;
    font-size: 15px;
    font-family: "Phosphor";
    transition: all 0.3s;
}
.box-lang .lang+.lang {
    border-top: 1px solid #ddd;
}
.box-lang .lang button {
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #111;
    letter-spacing: 0.15px;
    line-height: 1;
    text-align: left;
    background: #fff;
    border: none;
}
.box-lang .lang button.active {
    font-weight: 500;
    color: var(--page-point-color);
}
.box-lang > .curr_lang:hover {
    background: var(--page-point-color);
    cursor: pointer;
}
.box-lang > .curr_lang:hover::after {
    transform: rotate(180deg);
}
.box-lang > .curr_lang:hover .inner {
    display: block;
}

/* 불필요 항목 삭제 */
.navbar .caret{display:none;}

/* 상단 메뉴 */
.navbar.navbar-inverse {
    position: fixed;
    margin-bottom: 0;
    background-color: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: background-color ease-in-out .15s;
}

.navbar.bg-colored {
    background-color: #fff;
    border-bottom-color: #fff;
    border-bottom: none;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.navbar-inverse .navbar-brand img {
    width: 300px;
    margin-top: 10px;
    /* margin-top: 22px; */
}

.navbar-inverse .navbar-nav > li > a{font-size: 18px;font-weight: 500;color:#fff;}
.navbar-inverse .navbar-nav > li > a:hover,.navbar-inverse .navbar-nav > li > a:focus{color:var(--page-point-color);}

.navbar-inverse .navbar-nav > li#gnb_66 > a {
    min-width: 100px;
    margin-top: 25px;
    padding: 14px;
    font-size: 17px;
    background: var(--page-point-color);
    border-radius: 3px;
    transition: background ease .15s;
}
.navbar-inverse .navbar-nav > li#gnb_66 > a:hover,
.navbar-inverse .navbar-nav > li#gnb_66 > a:focus {
    color: #fff;
    background: var(--page-point-color-thick);
}
.navbar.bg-colored .navbar-nav > li#gnb_66 > a {
    color: #fff;
}

.navbar.bg-colored .navbar-nav > li > a,
.navbar.bg-colored .navbar-nav > li#gnblang .box-lang > .curr_lang {
    color: #333;
}
.navbar.bg-colored .navbar-nav > li > a:hover,
.navbar.bg-colored .navbar-nav > li > a:focus,
.navbar.bg-colored .navbar-nav > li:hover > a,
.navbar.bg-colored .navbar-nav > li:focus > a {
    color: var(--page-point-color);
}
.navbar.bg-colored .navbar-nav > li#gnblang .box-lang > .curr_lang::after {
    color: var(--page-point-color);
}
.navbar.bg-colored .navbar-nav > li#gnblang .box-lang > .curr_lang:hover::after,
.navbar.bg-colored .navbar-nav > li#gnblang .box-lang > .curr_lang:hover {
    color: #fff;
}

.navbar-inverse .navbar-nav .dropdown.open .dropdown-toggle,
.navbar-inverse .navbar-nav .dropdown.open:hover .dropdown-toggle,
.navbar-inverse .navbar-nav .dropdown.open:focus .dropdown-toggle{background:#222;color:#fff;}

@media (max-width: 767px) {
 .navbar-inverse .navbar-toggle{border:0;padding:18px 0;}
 .navbar-inverse .navbar-toggle .icon-bar{background-color:#333;transition:ease-in-out .15s all;opacity:1;position:relative;}
 .navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background:none;border-color:var(--page-point-color);}
 .navbar-inverse .navbar-toggle:hover .icon-bar,.navbar-inverse .navbar-toggle:focus .icon-bar{background-color:var(--page-point-color);}
 .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form{border-color:transparent;}

 .navbar-inverse.open .navbar-toggle > .icon-bar:nth-of-type(1){transform:rotate(45deg);top:6px;}
 .navbar-inverse.open .navbar-toggle > .icon-bar:nth-of-type(2){opacity:0;}
 .navbar-inverse.open .navbar-toggle > .icon-bar:nth-of-type(3){transform:rotate(-45deg);top:-6px;}
}

@media (min-width: 768px) {
 .navbar-inverse .navbar-nav .dropdown-menu{left:50%;right:auto;transform:translate(-50%,0);border-radius:0;border:none;padding:0;-webkit-box-shadow:0px 4px 8px rgba(0,0,0,.125);box-shadow:0px 4px 8px rgba(0,0,0,.125);
    animation-fill-mode: both;
    animation-duration: .4s;
    animation-name: fadeIn;}
 .navbar-inverse .navbar-nav .dropdown-menu>li>a{padding:12px 15px;text-align:center;border-bottom:1px solid #eee;font-size: 15px;}
 .navbar-inverse .navbar-nav .dropdown-menu>li:last-child>a{border-bottom:none;}
 .navbar-inverse .navbar-nav .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .dropdown-menu>li>a:focus{color:#fff;background:var(--page-point-color);}
}

@media (min-width: 992px) {
 .navbar-inverse .navbar-right{margin-right:-30px;}
 .navbar-inverse .navbar-nav > li > a{min-width:160px;padding:40px 30px;text-align:center;}
}

/* 슬라이드 공통 */
.carousel-control{text-shadow:0px 2px 6px rgba(0, 0, 0, .125);transition:ease-in-out .15s all;}
.carousel-control.left .glyphicon::before{content:'\f053';font-family:'Font Awesome 5 Free';font-weight:900;}
.carousel-control.right .glyphicon::before{content:'\f054';font-family:'Font Awesome 5 Free';font-weight:900;}
.carousel-indicators {
    bottom: 32%;
}
.carousel-indicators li{width:60px;height:10px;background-color:rgba(255,255,255,.1);border:1px solid #fff;margin:0 4px;border-radius:30px;transition:ease-in-out .15s all;}
.carousel-indicators li.active{width: 10px;height:10px;background-color:#fff;margin:0 4px;box-shadow:0px 2px 6px rgba(0, 0, 0, .125);}

.carousel-caption {text-shadow:none;}

@media (max-width: 767px) {
 .carousel-control{font-size:14px;}
 .carousel-indicators li{width:7px;height:7px;}
 .carousel-indicators li.active{width:40px;height:7px;}
}

/* 푸터 */
#site footer{margin-top:0px;background-color: #222130;color:#aaa}
#site footer .footer-info{padding: 45px 0 50px;/*padding: 55px 0 70px;*/}
#site footer .footer-info ul{position:relative;margin:0;padding:0;font-size:0}
#site footer .footer-info ul li{list-style:none;display:inline-block;font-size: 14px;margin-right: 15px;line-height: 25px;}
#site footer .footer-info ul li:first-child {
    font-weight: 500;
    color: #ddd;
}
#site footer .footer-info .logo > img {
    margin-top: 3px;
    opacity: 0.8;
}
#site footer .footer-info ul li .tit {
    padding-right: 4px;
    font-weight: 500;
    opacity: 0.9;
    color: #ddd;
}
#site footer .footer-info ul li.copy {
    color: #999;
    font-size: 13px;
    letter-spacing: 1px;
    margin-top: 5px;
}
#site footer .footer-info .box-btn {
    margin-top: 20px;
}
#site footer .footer-info .box-btn a {
    min-width: 75px;
    display: inline-block;
    padding: 8px 10px 6px;
    font-size: 13px;
    font-weight: 300;
    color: #ccc;
    line-height: 1em;
    text-align: center;
    border: 1px solid #777;
}
html.is_adm #site footer .footer-info .login > a:nth-child(1) {display: none;}
html:not(.logined) #site footer .footer-info .login > a:nth-child(2) {display: none;}
#site footer .footer-info .box-btn a:hover,
#site footer .footer-info .box-btn a:focus {
    text-decoration: none;
}
#site footer .footer-info .box-btn a:hover {
    color: #fff;
    background: var(--page-point-color-thick);
    border-color: var(--page-point-color-thick);
}

/* 메인 페이지 */
#mainCarousel .carousel-inner .item{height:100vh;}
#mainCarousel .carousel-inner .item::before {
  content:'';
  width:100%;
  height:100%;
  display: block;
  background:#000;
  opacity: .15;
}
#mainCarousel .carousel-inner .item:first-child::before {
  opacity: .25;
}
#mainCarousel .carousel-caption {
    top: 47%;
}
#mainCarousel .carousel-caption h1 {
    margin: 0 0 35px;
    font-size: 32px;
    font-weight: 600;
}
#mainCarousel .carousel-caption p {
    font-size: 50px;
    font-weight: 500;
    line-height: 1.5;
}
@media (max-width: 767px) {
    .carousel-indicators {
        bottom: 25%;
    }
    #mainCarousel .carousel-inner .item {
        height: 300px;
    }
    #mainCarousel .carousel-caption {
        top: 45%;
        right: 5%;
        left: 5%;
    }
    #mainCarousel .carousel-caption h1 {
        margin: 0 0 20px;
        font-size: 18px;
    }
    #mainCarousel .carousel-caption p {
        font-size: 18px;
    }
    #mainCarousel .carousel-control {
        display: none;
    }
}

#section_a684ec {
  padding: 20px 0;
}

#section_b53b3a {
  min-height: 400px;
}

#section_b53b3a .container {
  width: 100%;
  padding: 0;
}

.root_daum_roughmap {
  width: 100% !important;
  padding: 0 !important;
}

.root_daum_roughmap .map_border {
  display: none !important;
}
 
@media (min-width: 767px) {
  #section_a684ec div[class^="board_box_"] {
    width: 50%;
  }
}

.board_box_blog2 .row {
  margin-left: -5px;
  margin-right: -5px;
}

.board_box_blog2 .row > div[class^="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.board_box_blog2 .inner {
  margin-top: 0;
  margin-bottom: 0;
}

.board_box_blog2 .inner .bottom {
  padding: 12px 10px;
}
  
.board_box_blog2 .inner .bottom .title {
  margin-bottom: 0;
}

.board_box_blog2 .inner .bottom .title a {
  font-size: 14px;
}
  
.board_box_blog2 .inner .bottom .info {
  display: none;
}
  
.board_box_blog2 .inner .top a .thumb {
  height: 100px;
}

/* 메인 추가 스타일 */
/* Scroll Down 버튼 */
.scrollDown {
    left: 50%;
    bottom: 9%;
    position: absolute;
    font-size: 13px;
    font-weight: 600;
    color: rgb(255 255 255 / 78%);
    letter-spacing: 2px;
    transform: translateX(-50%);
}
.scrollDown:hover {
    color: #fff;
    cursor: pointer;
}
.scrollDown::after {
    content: '\e313';
    left: 50%;
    bottom: -50px;
    position: absolute;
    font-size: 35px;
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'wght' 200;
    transform: translateX(-50%);
}
/* .scrollDown::before {
    content: '';
    width: 1px;
    height: 20px;
    background: #fff;
} */

/* 본문 공통 스타일 */
.mainPage > section {
    padding: 140px 0 150px;
}
.mainPage #section1 {
    padding: 120px 0 150px;
}
.mainPage .container {
    position: relative;
}
.mainPage h2 {
    margin: 0 0 80px;
    font-size: 55px;
    font-weight: 700;
    color: #222;
    line-height: 1;
    text-align: center;
    padding-top: 0;
    letter-spacing: -0.055em;
}
.mainPage h2 .en {
    display: block;
    margin-bottom: 22px;
    font-size: 25px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.015em;
}
.mainPage #section2 h2 {
    color: #fff;
}
.mainPage #section2 h2 .en {
  color: rgb(255 255 255 / 58%);
} 
/* Section 1 */
.mainPage .box-biz > .item a {
    width: 100%;
    position: relative;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}
.mainPage .box-biz > .item a::before,
.mainPage .box-biz > .item a::after {
    content: '';
    width: 0%;
    height: 0%;
    position: absolute;
    transition: all cubic-bezier(0.27, 0.51, 0.38, 1.01) 0.35s;
    z-index: 110;
}
.mainPage .box-biz > .item a::before {
    top: 0;
    left: 0;
    border-top: 5px solid transparent;
    border-left: 5px solid transparent;
}
.mainPage .box-biz > .item a::after {
    right: 0;
    bottom: 0;
    border-right: 7px solid transparent;
    border-bottom: 7px solid transparent;
}
.mainPage .box-biz > .item .w_img {
    position: relative;
    box-shadow: 4px 9px 11px 0px rgb(0 0 0 / 19%);
    overflow: hidden;
    border-radius: 15px;
}
.mainPage .box-biz > .item .w_img::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000;
    transition: all cubic-bezier(0.27, 0.51, 0.38, 1.01) 0.35s;
    opacity: .45;
    z-index: 100;
}
.mainPage .box-biz > .item .w_img img {
    transform: scale(1);
    transition: all cubic-bezier(0.27, 0.51, 0.38, 1.01) 0.35s;
}
.mainPage .box-biz > .item .text {
    top: 50%;
    left: 50%;
    width: 80%;
    position: absolute;
    color: #fff;
    transform: translate(-50%,-50%);
    z-index: 110;
}
.mainPage .box-biz > .item .text .tit {
    margin: 0;
    font-size: 35px;
    font-weight: 600;
}
.mainPage .box-biz > .item .text .more {
    width: 140px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0;
    padding-top: 1px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1em;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50px;
}
.mainPage .box-biz > .item a:hover::before,
.mainPage .box-biz > .item a:hover::after {
    width: 100%;
    height: 100%;
    border-color: var(--page-point-color);
    border-radius: 13px;
}
.mainPage .box-biz > .item a:hover .w_img::before {
    opacity: 0.6;
}
.mainPage .box-biz > .item a:hover .w_img img {
    transform: scale(1.125);
}
.mainPage .box-biz > .item a:hover .text .more {
    background: var(--page-point-color);
    border-color: var(--page-point-color);
}

/* Section 2 */
.mainPage #section2 {
    position: relative;
    background: #fff url(/public/img/main/refer_bg.jpg) no-repeat 50% 50% / cover;
}
.mainPage #section2::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    background: #000;
    opacity: 0.4;
}
.box-ref .board-area {
    width: 100%;
    display: inline-block;
    background: #fff;
    border-radius: 15px;
    transition: all ease .15s;
}
.box-ref .board-area:hover {
    color: #fff;
    background: #4263eb;
    transform: translateY(-30px);
}
.box-ref .board_box_goods {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin-bottom: 0 !important;
}
.box-ref .board_box_goods .page-header {
    margin: 325px 0 0;
    padding: 0;
    border-bottom: none;
}
.box-ref .board_box_goods .page-header h4 {
    margin: 0;
    padding-left: 5px;
    font-size: 22px;
    color: #222;
}
.box-ref .board-area:hover h4 {
    color: #fff;
}
.box-ref .board_box_goods .pull-right {
    text-decoration: none;
}
.box-ref .board_box_goods .pull-right i {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    background: #ddd;
    border-radius: 30px;
}
.box-ref .board-area:hover .board_box_goods .pull-right i {
    background: #fff;
    color: #4263eb;
}
.box-ref .board_box_goods dd {
    width: 100%;
    padding: 20px;
}
.box-ref .board_box_goods dd .inner {
    margin: 0;
}
.box-ref .board_box_goods .top {
    border: none;
}
.box-ref .board_box_goods .top .thumb {
    border-radius: 10px;
}
.box-ref .board_box_goods .bottom {
    display: none;
}

/* Section 3 */
.mainPage #section3 {
    clear: both;
    padding: 140px 0 130px;
    position: relative;
}
.mainPage #section3::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 310px;
    background: #f5f6fc;
    bottom: 0;
    left: 0;
}
.mainPage #section3 h2 {
    text-align: left;
    display: inline-block;
    width: 22%;
    padding: 0;
    font-size: 48px;
}
.mainPage #section3 h2 .en {
  font-size: 23px;
  margin-bottom: 18px;
}
.mainPage #section3 .box-contact {
    float: right;
    width: 78%;
}
.box-contact ul {
    display: flex;
    justify-content: space-evenly;
    margin-top: -7px;
    padding: 40px 20px;
    color: #222;
    background: #fff;
    gap: 22px;
}
.box-contact ul li {
    font-size: 17px;
}
.box-contact ul li .tit {
    padding-right: 4px;
    font-weight: 600;
    letter-spacing: 0;
    color: #0201a5;
}
body[lang="en"] .mainPage #section3 h2 {
    width: 26%;
}
body[lang="en"] .mainPage #section3 .box-contact {
    width: 74%;
}
body[lang="en"] .box-contact ul {
    flex-wrap: wrap;
    justify-content: left;
}
/*************** 서브 시작 ***************/
/* 공통 스타일 */
#site > .container {
    width: 100%;
    padding: 0;
}
.subPage > .pageTop {
    height: 390px;
    position: relative;
    color: #fff;
    background: #332 url('/public/img/sub/bg_subTop2.jpg') no-repeat center / cover;
}
.subPage > .pageTop .container {
    height: 100%;
    position: relative;
}
.subPage > .pageTop .inner {
    top: 60%;
    width: 100%;
    position: absolute;
    text-align: center;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}
.subPage > .pageTop span {
    margin: 0;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}
.subPage > .pageTop p {
    margin: 30px 0 0;
    font-size: 17px;
}

/* Link */
.subPage .link {
    text-align: center;
    background: #fff;
    border-bottom: 1px solid #ddd;
}
.subPage .link ul {
    display: flex;
}
.subPage .link ul > li > a {
    min-width: 200px;
    position: relative;
    padding: 0 50px;
    font-size: 18px;
    font-weight: 600;
    color: #b1b1b1;
    letter-spacing: 0.01em;
    line-height: 60px;
    text-decoration: none;
    background: transparent;
}
.subPage .link ul > li > a::after {
    content: '';
    top: 50%;
    right: 0;
    width: 1px;
    height: 22px;
    position: absolute;
    background: #999;
    transform: translateY(-50%);
    opacity: 0.15;
}
.subPage .link ul > li:last-child > a::after {
    content: none;
}
.subPage .link ul > li.active > a {
    font-weight: 600;
    color: #fff;
    opacity: 1;
    background: var(--page-point-color);
}
.subPage .link ul > li:not(.active) > a:hover {
    color: var(--page-point-color);
}

.subPage > .contents section {
    padding: 130px 0 180px;
}
.subPage > .contents .row:not(.page-title)+.row {
    margin-top: 150px;
}
#certificate .contents section {
    padding: 130px 0 150px;
}
.page-title {
    margin-bottom: 80px;
}
.page-title .menu-main {
    margin: 0;
    font-size: 65px;
    font-weight: 700;
    color: #e5e5e5;
    letter-spacing: 2px;
    line-height: 1;
}
.page-title .menu-sub {
    margin: 20px 0 0;
    font-size: 55px;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    color: #222;
}

.title-lv-1 {
    margin: 0 0 30px;
    font-size: 26px;
    font-weight: 600;
    color: #000098;
    letter-spacing: -0.06em;
    line-height: 1em;
}

.list-default {
    margin: 0;
    padding-left: 0;
    list-style-type: none;
}
.list-default > li {
    position: relative;
}
.list-style-1 {
    padding-left: 3px;
    padding-right: 0px;
}
.list-style-1 > li {
    padding-left: 14px;
}
.list-style-1 > li+li {
    margin-top: 4px;
}
.list-style-1 > li::before {
    content: '';
    top: 8px;
    left: 0;
    width: 5px;
    height: 5px;
    position: absolute;
    background: #333;
}

/* 인사말 (페이지) */
#wrap-intro .inner+.inner {
    margin-top: 80px;
}
#wrap-intro .top h3 {
    margin: 0 0 -10px;
    font-size: 38px;
    font-weight: 300;
    letter-spacing: -0.06em;
    line-height: 1.4em;
    color: #000098;
}
#wrap-intro .top h3 span {
    font-weight: 500;
}
#wrap-intro .text {
    padding-top: 100px;
}
#wrap-intro .text:not(.col-md-pull-6) {
    padding-left: 55px;
}
#wrap-intro .text.col-md-pull-6 {
    padding-right: 55px;
}
#wrap-intro .text h4 {
    margin: 0 0 30px;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -0.06em;
    line-height: 1.4em;
    color: #222;
}
#wrap-intro .text  p {
    font-size: 18px;
    color: #555;
}

/* 인증서 (페이지) */
.box-certifi {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -30px;
}
.box-certifi > .item {
    flex-basis: 22%;
    margin-bottom: 60px;
    padding: 0px 15px;
}
.box-certifi > .item figure img {
    padding: 10px;
    border: 1px solid #ddd;
}
.box-certifi > .item figure figcaption {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.034em;
}

/* 보유기술 (페이지) */
#business01 p.top {
    position: relative;
    display: inline-block;
    margin: 20px 0 0;
    /* margin: 20px 0 60px; */
    font-size: 29px;
    line-height: 1.5em;
    text-align: center;
    font-weight: 600;
    color: #01028f;
}
#business01 p.top::before,
#business01 p.top::after {
    content: '';
    display: block;
    position: absolute;
    top: -30px;
    width: 76px;
    height: 52px;
    opacity: .2;
}
#business01 p.top::before {
    background: url(/public/img/sub/quotes01.png) no-repeat center / cover;
    left: -60px;
}
#business01 p.top::after {
    background: url(/public/img/sub/quotes02.png) no-repeat center / cover;
    right: -50px;
}
.box-skill {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 80px !important;
}
.box-skill > .item:nth-child(n+4) {
    margin-top: 30px;
}
.box-skill > .item .inner {
    height: 100%;
    text-align: center;
    background: #f5f6fc;
}
.box-skill > .item .inner p {
    font-size: 16px;
    color: #555;
}
.box-skill > .item .bottom {
    padding: 40px 35px;
}
.box-skill .tit {
    color: #222;
    margin: 0px 0 15px;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.5;
}

/* 사업영역 (페이지) */
.box-biz-area {
    display: flex;
    justify-content: center;
}
.box-biz-area > .item .inner {
    height: 100%;
    text-align: center;
    background: #f5f6fc;
}
.box-biz-area > .item .inner p {
    font-size: 16px;
    color: #555;
}
.box-biz-area > .item .bottom {
    padding: 40px 35px;
}
.box-biz-area .tit {
    color: #222;
    margin: 0px 0 15px;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
}

/* 오시는길 (페이지) */
.box-contact-sub+.box-contact-sub {
    margin-top: 80px;
}
.box-contact-sub ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: -7px;
    padding: 35px;
    /* padding: 50px; */
    background: #f6f7fb;
}
.box-contact-sub ul .clearfix {
    flex-basis: 100%;
    height: 30px;
}
.box-contact-sub ul > li {
    flex: 1 1 33.333%;
    padding-left: 130px;
}
.box-contact-sub ul > li .tit {
    top: 1px;
    left: 0;
    position: absolute;
    padding-left: 34px;
    font-size: 17px;
    font-weight: 600;
}
.box-contact-sub ul > li .tit::before {
    content: '\e55b';
    top: 0px;
    left: 0;
    width: 25px;
    height: 25px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-family: 'Material Symbols Outlined';
    font-variation-settings: 'wght' 300;
    background: var(--page-point-color);
    border-radius: 50px;
}
.box-contact-sub ul > li.tel .tit::before {content: '\e0b0';}
.box-contact-sub ul > li.fax .tit::before {content: '\e873';}
.box-contact-sub ul > li.mail .tit::before {content: '\e158';}

/* 게시판, 주문폼 공통 스타일 */
.board_wrapper,
.calendar_wrapper {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}
.search_wrap {
  margin-top: 100px;
  margin-bottom: 0;
}
.board_wrapper .table.table_default {
  border-top: 1px solid #555;
}
.table.table_default tr th,
.table.table_default tr td {
  border-color: #e6e6e6;
}
.table.table_default tr td.writer, .table.table_default tr td.regdate,
.table.table_default tr td.hits {
  color: #999;
}
.table.table_default tr td.subject {
  position: relative;
}
.table.table_default thead th {
  font-weight: 600;
  color: #333;
  background: #fff;
  border-color: #ccc;
  padding: 17px 15px;
}
.table.table_default tbody .subject .badge {
  top: 15px;
  position: absolute;
  padding: 4px 6px 3px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3em;
  background: var(--page-secondary-color);
  border: none;
  border-radius: 0;
  background: #333;
}
.table.table_default tbody .subject a {
  font-size: 16px;
}
.table.table_default tbody .subject a:hover {
  text-decoration: underline;
}
.table.table_default tbody .subject span>.badge+a {
  padding-left: 62px;
}

:where(.table_video, .table_blog2) .inner :where(.bottom .title a, .title a) {
  font-weight: 500;
  letter-spacing: -0.02em;
}

:where(.table_video, .table_blog2, .table_pd) .inner .bottom {
  padding: 20px 15px 20px;
}

.table_pd .inner .bottom {
    gap: 10px 0;
    padding: 25px 0 0;
}
:where(.table_video, .table_blog2) dd {
  margin-bottom: 55px;
}

:where(.table_video, .table_blog2, .table_pd) .inner .top a {
  background: #000;
}

.board_data_view {
  border-top: 1px solid #555;
  border-bottom: 1px solid #ccc;
}
.board_data_view .header_wrap {
  padding: 0;
  border-bottom: 1px solid #ccc;
}
.board_data_view .header_wrap .title {
  padding: 40px 5px 38px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3em;
  border-bottom: 1px solid #eee;
}
.board_data_view .header_wrap .info {
  margin: 0;
  padding: 11px 0 11px;
}
.board_data_view .header_wrap .info span {
  font-size: 14px;
  color: #909090;
}

/* 카테고리 */
.category_wrap {
    margin-top: -30px;
    margin-bottom: 80px;
}
.category_wrap ul {
  width: 100%;
  display: inline-block;
  text-align: center;
}
.category_wrap ul li {
  position: relative;
  margin: 0;
}
.category_wrap ul li+li {
  position: relative;
  margin-left: 0;
  margin-bottom: 10px;
}
.category_wrap ul li+li::before {
    content: '';
    display: block;
    width: 1px;
    height: 15px;
    background: #ddd;
}
.category_wrap ul li+li::before {
    content: '';
    display: block;
    width: 1px;
    height: 15px;
    background: #ddd;
}
.category_wrap ul li a {
  min-width: 100px;
  font-size: 18px;
  font-weight: 700;
  border: 0;
  padding: 18px 30px;
  color: #999;
  position: relative;
  border-bottom: 2px solid #eee;
  letter-spacing: 0;
}
.category_wrap ul li+li::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 50%;
  width: 1px;
  height: 14px;
  transform: translateY(-50%);
  background: #ccc;
  display: none;
}
.category_wrap ul li.on a,
.category_wrap ul li.on a:hover,
.category_wrap ul li.on a:focus {
  color: var(--page-point-color);
  border-bottom: 2px solid var(--page-point-color);
}
.category_wrap ul li:not(.on) a:hover,
.category_wrap ul li:not(.on) a:focus {
  color: #666;
}
.category_wrap ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0;
  height: 3px;
  background: #478ce4;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
  display: none;
}
.category_wrap ul li.on a::before,
.category_wrap ul li.on a:hover::before,
.category_wrap ul li.on a:focus::before,
.category_wrap ul li a:hover::before {
  visibility: visible;
  opacity: 1;
  width: 100%;
}
/* Pagenation */
.pagination_wrap ul li.active a,
.pagination_wrap ul li.active a:hover,
.pagination_wrap ul li.active a:focus {
  color: var(--page-point-color);
}
.pagination_wrap ul li.box a {
  border: none;
}
.pagination_wrap ul li.box:hover a,
.pagination_wrap ul li.box:focus a {
  color: var(--page-point-color);
}

.board_wrapper .text-center {
  margin-bottom: 0;
}

#reply_list span {
  font-size: 16px !important;
}

/* 게시글 작성 */
.board_wrapper .table.board_write_table tbody tr th,
.board_wrapper .table.board_write_table tbody tr td {
  font-size: 15px;
  border-color: #e6e6e6;
}
.board_wrapper .table.board_write_table {
  border-top: 2px solid #333;
}
.board_wrapper .table.board_write_table tbody tr th {
  width: 220px;
  font-weight: 700;
  color: #333;
  background: #f8f8f8;
}
.board_wrapper .table.board_write_table tbody tr th>span.required_text {
  color: #ff0000;
}
.board_wrapper .table.board_write_table .files .fileInput .file_add {
  padding: 6px 8px;
}
.form-control {
  letter-spacing: -0.03em;
  font-size: 15px;
}

/* 주문폼 */
.board_wrapper .table.board_write_table tbody tr td .form-control {
  width: 350px;
}
.board_wrapper .table.board_write_table tbody tr td .text-muted {
  margin-top: 10px !important;
  font-size: 14px;
}
.board_wrapper .table.board_write_table .checkbox a {
  font-weight: 500;
  color: var(--page-point-color);
  text-decoration: underline;
}
.form-control:not([readonly]):focus {
  border-color: #555;
}
input+#list_btn {
  display: none;
}

/* 상품 게시판 */
/* 목록 */
.table_pd .inner:hover .top {
    border-color: var(--page-point-color);
}
.table_pd .inner {
    border: 0;
    margin-bottom: 30px;
}
.table_pd .inner:hover {
    border-color: var(--page-point-color);
}
.table_pd .inner:hover .title a {
    color:var(--page-point-color);
}
.table_pd .inner .top a .thumb {
    padding-top: 70%;
    aspect-ratio: auto;
}
.table_pd .badge {
    top: 20px;
    left: 35px;
    position: absolute;
    margin-right: 0 !important;
    padding: 7px 10px 5px;
    font-size: 15px;
    background: var(--page-point-color);
}
.table_pd .inner .bottom .pd_preview {
    height: auto;
    overflow: visible;
}
.table_pd .inner .bottom .title {
    margin: 0 0 5px;
}
.table_pd .inner .bottom .title a {
    font-weight: 600;
    text-decoration: none;
    font-size: 24px;
}
.pd_preview .table-goods {
    margin-bottom: 0;
}
.pd_preview .table-goods > tbody > tr > th,
.pd_preview .table-goods > tbody > tr > td {
    padding: 5px 0;
    font-size: 15px;
    border: none;
}
.pd_preview .table-goods > tbody > tr > th {
    width: 27%;
    font-weight: 700;
    letter-spacing: 0;
}
/* 상세 페이지 */
.board_pd_view .pd_title_wrap {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #999;
}
.board_pd_view .pd_title_wrap .title {
    font-size: 29px;
    font-weight: 600;
}
.board_pd_view .pd_img_main :where(.next-btn, .prev-btn)::before {
    font-size: 35px;
    color: #000;
    background: transparent;
}
.board_pd_view .pd_img_main {
    width: 100%;
    height: 429px;
    /* height: 450px; */
}
.board_pd_view .pd_slider_wrap .pd_img_main .thumb {
    aspect-ratio: auto;
    padding-top: 67% !important;
    /* padding-top: 70% !important; */
}
.board_pd_view .pd_title_wrap .badge {
    font-size: 15px;
    background: var(--page-point-color);
}
.board_pd_view .pd_preview_wrap #pd_preview_text .table-goods > tbody > tr > th,
.board_pd_view .pd_preview_wrap #pd_preview_text .table-goods > tbody > tr > td {
    padding: 7px 0;
    border: none;
}
.board_pd_view .pd_preview_wrap #pd_preview_text .table-goods > tbody > tr > th {
    width: 220px;
    padding-right: 30px;
    font-weight: 800;
    letter-spacing: 0;
    word-break: keep-all;
}
.board_pd_view .pd_btn_wrap li[class^="pd_btn_item"] a {
    text-decoration: none;
}
.board_pd_view .pd_btn_wrap li[class^="pd_btn_item"] a:hover {
    background: var(--page-point-color);
}
.pd_bottom_wrap {
    border-top: 1px solid #ddd;
}
.member_wrapper {
    padding-top: 200px;
    padding-bottom: 120px;
}
/**************** 서브 끝 ****************/

/*********** 모바일 최적화 시작 ***********/
@media (max-width: 1199px) { /* Small·Medium·Large devices */
    .mainPage #section3 h2{width:100% !important}
    .mainPage #section3 .box-contact{width:100% !important}
}
@media (max-width: 767px) { /* Small devices (col-xs-*) 모바일 */
    #site{padding-top:96px;font-size:17px}
    p{line-height:1.5em}

    .box-lang{height:30px;margin:0;text-align:right;background:#f5f6fc}
    .box-lang > .curr_lang{width:auto;height:auto;padding-right:0}
    .box-lang > .curr_lang:hover{background:transparent}
    .box-lang > .curr_lang::after{display:none}
    .box-lang .inner{top:0;right:0;left:auto;display:inline-block !important}
    .box-lang .lang{position:relative;display:inline-block}
    .box-lang .lang+.lang{border-top:none}
    .box-lang .lang+.lang::before{content:'';top:10px;left:-2px;width:1px;height:10px;position:absolute;display:block;background:#ccc}
    .box-lang .lang button{padding:8px 10px;font-size:12px;color:#777;background:transparent}
    .btn-top{width:40px;height:40px;right:15px;bottom:15px;padding:11px 12px 0;font-size:14px}
  
    .navbar-inverse .navbar-brand img{width:230px;margin-top:0;}
    .navbar-inverse .navbar-nav{display:block;margin:0 -15px !important}
    .navbar-inverse .navbar-nav > .open{background-color:#f6f6f6}
    .navbar-inverse .navbar-nav > li{float:left;width:100%}
    .navbar-inverse .navbar-nav > li > a{padding:12px 15px;font-size:16px;border-top:1px solid #eee;border-right:1px solid #eee}
    .navbar.bg-colored .navbar-nav > li#gnb_66 > a{margin-top:0;padding:12px 15px;color:#fff;min-width:auto;font-size:16px;border-radius:0}
    .navbar-inverse .navbar-nav > li > a:hover,
    .navbar-inverse .navbar-nav > li > a:focus{color:var(--page-point-color)}
    .navbar-inverse .navbar-nav .dropdown.open .dropdown-toggle,
    .navbar-inverse .navbar-nav .dropdown.open:hover .dropdown-toggle,
    .navbar-inverse .navbar-nav .dropdown.open:focus .dropdown-toggle{padding:15px;color:#fff !important;background:var(--page-point-color);border:var(--page-point-color)}
    .navbar-inverse .navbar-nav .dropdown.open .dropdown-toggle .caret,
    .navbar-inverse .navbar-nav .dropdown.open:hover .dropdown-toggle .caret,
    .navbar-inverse .navbar-nav .dropdown.open:focus .dropdown-toggle .caret{border-top-color:#fff}
    .navbar-inverse .navbar-nav > .open .dropdown-menu{padding:10px 0}
    .navbar-inverse .navbar-nav > .open .dropdown-menu > li > a{padding:5px 25px;font-size:15px;color:#111}
    .navbar-inverse .navbar-nav > .open .dropdown-menu > li > a:hover,
    .navbar-inverse .navbar-nav > .open .dropdown-menu > li > a:focus{font-weight:600;color:#111}
    .navbar .caret{display:block;border:none}
    .navbar .caret::after{content:'\e409';top:13px;right:15px;position:absolute;font-size:20px;font-weight:500;font-family:'Material Symbols Outlined';transition:transform ease 0.3s}
    .navbar-inverse .navbar-nav .dropdown.open .caret::after{font-weight:300;transform:rotate(90deg)}
    
    .scrollDown{font-size:10px}
    .scrollDown::after{bottom:-30px;font-size:25px}

    .mainPage #section1,
    .mainPage #section2,
    .mainPage #section3{padding:60px 0}
    .mainPage h2{margin:0 0 50px;font-size:42px}
    .mainPage h2 .en{margin-bottom:12px;font-size:20px}
    .mainPage .box-biz > .item+.item{margin-top:15px}
    .mainPage .box-biz > .item .text .tit{font-size:30px}
    .mainPage .box-biz > .item .text .more{width:120px;height:38px;margin:20px auto 0;font-size:12px}
    .box-ref > .item+.item{margin-top:10px}
    .box-ref .board-area:hover{transform:none}
    .box-ref .board_box_goods dd{padding:15px}
    .box-ref .board_box_goods .page-header h4{font-size:20px}
    .mainPage #section3 h2{font-size:35px}
    .mainPage #section3 h2 .en{font-size:18px}
    .box-contact .map iframe{height:300px}
    .box-contact ul{flex-direction:column;gap:10px;padding:20px 15px}
    .box-contact ul li{font-size:16px}
    .box-contact ul li:first-child .tit{display:block}
    .box-contact ul li:not(:first-child) .tit{display:inline-block;width:40px}
    
    #site footer .footer-info{padding:25px 0}
    #site footer .footer-info .logo > img{margin:0 0 15px}
    #site footer .footer-info ul li{font-size:12px;margin-right:10px;line-height:20px}
    #site footer .footer-info ul li.copy{font-size:11px}
    #site footer .footer-info .box-btn {
        margin-top: 15px;
    }
    #site footer .footer-info .box-btn a {
        min-width: 70px;
        padding: 7px 10px 5px;
        font-size: 12px;
    }

    .subPage > .pageTop{height:180px}
    .subPage > .pageTop .inner{top:52%}
    .subPage > .pageTop span{font-size:38px}
    .subPage > .pageTop p{margin:15px 0 0;font-size:15px}
    body[lang="en"] .subPage > .pageTop p {
        font-size: 13px;
    }
    .subPage .link ul{flex-wrap:wrap;justify-content:center}
    .subPage .link ul > li > a{min-width:unset;padding:0 20px;font-size:15px;line-height:45px}
    body[lang="en"] .subPage[id^='refer'] .link .container {
        padding: 0;
    }
    body[lang="en"] .subPage[id^='refer'] .link ul > li {
        width: 100%;
    }
    .subPage > .contents section{padding:60px 0 80px !important}
    .page-title{margin-bottom:50px}
    .page-title .menu-main{font-size:48px}
    .page-title .menu-sub{margin:12px 0 0;font-size:42px}
    .title-lv-1{margin:0 0 20px;font-size:23px}

    #wrap-intro .top h3{font-size:28px}
    #wrap-intro .inner+.inner{margin-top:40px}
    #wrap-intro .text{padding:20px 15px 0 !important}
    #wrap-intro .text h4{margin:0 0 20px;font-size:21px}
    #wrap-intro .text p{font-size:17px}
    .box-certifi{margin:0 -15px;justify-content:flex-start}
    .box-certifi > .item{flex-basis:50%;margin-bottom:30px}
    .box-certifi > .item:nth-child(odd){padding-right:7.5px}
    .box-certifi > .item:nth-child(even){padding-left:7.5px}
    .box-certifi > .item figure figcaption{margin-top:12px;font-size:14px}
    .box-contact-sub+.box-contact-sub{margin-top:50px}
    .box-contact-sub .map iframe{height:300px}
    .box-contact-sub ul{padding:20px}
    .box-contact-sub ul > li{padding:30px 0 0;font-size:16px}
    .box-contact-sub ul > li .tit{padding-left:28px;font-size:16px}
    .box-contact-sub ul > li .tit::before{width:22px;height:22px}
    .box-biz-area{flex-direction:column}
    .box-biz-area .item+.item{margin-top:20px}
    .box-biz-area > .item .bottom{padding:25px 15px}
    .box-biz-area .tit{margin:0 0 10px;font-size:19px}
    .box-biz-area > .item .inner p{font-size:15px}
    #business01 p.top{margin:20px 0 0;padding:0 15px;font-size:22px}
    #business01 p.top::before,
    #business01 p.top::after{top:-18px;width:46px;height:31px}
    #business01 p.top::before{left:0}
    #business01 p.top::after{right:-6px}
    .box-skill{margin-top:40px !important}
    .box-skill > .item+.item{margin-top:20px}
    .box-skill > .item .bottom{padding:25px 15px}
    .box-skill .tit{margin:0 0 12px;font-size:19px}
    .box-skill > .item .inner p{font-size:15px}

    .board_wrapper .table colgroup,
    .board_wrapper .table tr .num,
    .board_wrapper .table tr .hits{display:none}
    .board_wrapper .table .subject{width:55%}
    .board_wrapper .table .writer{width:20%}
    .board_wrapper .table .regdate{width:25%}
    .board_wrapper .table.table_default tr th,
    .board_wrapper .table.table_default tr td{padding:10px;font-size:12px}
    .table.table_default tbody .subject .badge{top:9px;font-size:10px}
    .table.table_default tr td.subject a{font-size:13px}
    .table.table_default tbody .subject span > .badge + a{padding-left:54px}
    .board_data_view .header_wrap{padding:0}
    .board_data_view .header_wrap .title{padding:25px 5px 23px;font-size:20px}
    .board_data_view .header_wrap .info{padding:8px 0}
    .board_data_view .header_wrap .info span{font-size:11px}
    .board_data_view .contents_wrap{padding:40px 15px}
    .board_wrapper .table.board_write_table tbody tr td .form-control,
    .board_wrapper .table.board_write_table .form-control.form-control-big,
    .member_wrapper #join_form .table .form-control,
    .member_wrapper #join_form .table .form-control.form-control-big{width:100%}
    .board_wrapper .table.board_write_table .files .fileInput input {width:100%;}
    .board_wrapper .table.board_write_table .files .fileInput .file_add{width:100%;margin:0 0 15px;padding:6px 12px}
    .member_wrapper .text-center .btn.btn-lg,
    .board_wrapper .text-center .btn.btn-lg{width:100%;margin:0;padding:9px}
    .board_wrapper .text-center .btn#write_btn,
    .member_wrapper .text-center .btn#join_btn,
    .board_wrapper .text-center .btn#list_btn{margin-top:20px}
    .member_wrapper{padding-top:60px;padding-bottom:100px}

    .search_wrap{margin-top:30px}
    .table_pd{flex-direction:column;gap:20px 0}
    .table_pd > dd{width:100%}
    .table_pd .inner .top a .thumb{min-height:205px;padding-top:60%}
    .table_pd .inner .bottom{gap:5px 0;padding:20px 0 0}
    .pd_preview .table-goods > tbody > tr > th,
    .pd_preview .table-goods > tbody > tr > td{width:100%;display:block}
    .pd_preview .table-goods > tbody > tr > th{padding:10px 0 0}
    .table_pd .inner .bottom .title a{white-space:normal}
    .board_pd_view .pd_top_wrap .pd_slider_wrap{margin:0}
    .board_pd_view .pd_img_main{height:250px}
    .board_pd_view .pd_title_wrap{padding-bottom:15px;margin-bottom:15px}
    .board_pd_view .pd_title_wrap .title{font-size:25px}
    .board_pd_view .pd_preview_wrap{max-height:unset}
    .board_pd_view .pd_preview_wrap #pd_preview_text .table-goods > tbody > tr > th,
    .board_pd_view .pd_preview_wrap #pd_preview_text .table-goods > tbody > tr > td{width:100%;display:block}
    .board_pd_view .pd_preview_wrap #pd_preview_text .table-goods > tbody > tr > th{padding:10px 0 0}
    .board_pd_view .contents_wrap .pd_tabs_tp_title{padding:15px 0;border-top:1px solid #ccc}
    .pd_bottom_wrap{border:none}
}
@media (min-width: 992px) and (max-width: 1199px) { /* Large devices (col-md-*) */
    .box-lang{margin:32px 30px 22px}
    .box-lang > .curr_lang::after{top:17px}
    .navbar .container{padding:0}
    .container > .navbar-header{width:100%;padding:15px 0 0;text-align:center}
    .navbar-inverse .navbar-brand{float:none;display:inline-block;margin:0 auto !important;padding:0 !important}
    .navbar-inverse .navbar-brand img{margin-top:0}
    .navbar-inverse .navbar-collapse{text-align:center;line-height:0}
    .navbar-inverse .navbar-right{float:none !important;display:inline-block;margin-right:0}
    .navbar-inverse .navbar-nav > li > a{padding:40px 0 30px}
    #mainCarousel .carousel-caption{right:10%;left:10%}
    #mainCarousel .carousel-caption p{font-size:42px}
}
@media (min-width: 1430px) {
    nav .container,
    footer .container,
    .subPage .container{width:100%;max-width:1400px}
}
/************ 모바일 최적화 끝 ************/