@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@font-face {
    font-family: 'ElandChoice';
    font-weight: 300;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/eland/ElandChoiceLight.eot');
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/eland/ElandChoiceLight.eot?#iefix') format('embedded-opentype'),
         url('https://cdn.jsdelivr.net/gh/webfontworld/eland/ElandChoiceLight.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/gh/webfontworld/eland/ElandChoiceLight.woff') format('woff'),
         url('https://cdn.jsdelivr.net/gh/webfontworld/eland/ElandChoiceLight.ttf') format("truetype");
    font-display: swap;
} 
@font-face {
    font-family: 'ElandChoice';
    font-weight: 500;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/eland/ElandChoiceMedium.eot');
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/eland/ElandChoiceMedium.eot?#iefix') format('embedded-opentype'),
         url('https://cdn.jsdelivr.net/gh/webfontworld/eland/ElandChoiceMedium.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/gh/webfontworld/eland/ElandChoiceMedium.woff') format('woff'),
         url('https://cdn.jsdelivr.net/gh/webfontworld/eland/ElandChoiceMedium.ttf') format("truetype");
    font-display: swap;
} 
@font-face {
    font-family: 'ElandChoice';
    font-weight: 700;
    font-style: normal;
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/eland/ElandChoiceBold.eot');
    src: url('https://cdn.jsdelivr.net/gh/webfontworld/eland/ElandChoiceBold.eot?#iefix') format('embedded-opentype'),
         url('https://cdn.jsdelivr.net/gh/webfontworld/eland/ElandChoiceBold.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/gh/webfontworld/eland/ElandChoiceBold.woff') format('woff'),
         url('https://cdn.jsdelivr.net/gh/webfontworld/eland/ElandChoiceBold.ttf') format("truetype");
    font-display: swap;
} 

/* 주요색상 */
:root{--page-point-color:#ff881f;}

#site {
    padding-top: 0;
    font-size: 16px;
    font-family: 'ElandChoice', 'Inter','notokr', sans-serif;
    letter-spacing: -0.034em;
}

a, button {
    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: #211595;
    border: 1px solid #211595;
    color: #fff;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    color: #fff;
    background-color: #170f6a;
    border-color: #211595;
}

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: 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: #ff881f;
    -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%);
    }
}

/* 페이지 준비중입니다 */
.wrap-prepare-page {
    width: 100%;
    display: inline-block;
    padding: 15px;
    background-color: #f9f9f9;
}
.prepare-page {
    padding: 90px 0;
    text-align: center;
}
.prepare-page > .exclamation {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 0 auto;
    padding: 29px 30px;
    line-height: 1em;
    border: 4px solid #ff881f;
    border-radius: 100%;
}
.prepare-page > .exclamation::before {
    content: '\f12a';
    top: 0;
    font-size: 36px;
    font-weight: 900;
    font-family: 'Font Awesome 5 Free';
    color: #ff881f;
}
.prepare-page > h4 {
    margin: 25px 0 20px;
    font-size: 24px;
    font-weight: 300;
    color: #333;
}
.prepare-page > h4 strong {
    font-weight: 600;
}
.prepare-page > p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5em;
    color: #333;
    font-weight: 300;
}

/* 불필요 항목 삭제 */
.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.none {
    margin-top: -89px;
}

.navbar-inverse .navbar-brand {
    position: relative;
}
.navbar-inverse .navbar-brand::after {
    content: '㈜건영씨앤피';
    top: 40px;
    left: 115px;
    position: absolute;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    letter-spacing: -0.025em;
}
.navbar.bg-colored .navbar-brand::after {
    color: #000;
}
.navbar-inverse .navbar-brand img{height:55px;margin-top: 2px;}

.navbar-inverse .navbar-nav > li > a{font-size:17px;font-weight:600;color:#fff;}
.navbar-inverse .navbar-nav > li > a:hover,.navbar-inverse .navbar-nav > li > a:focus{color:#ff881f;}

.navbar.bg-colored .navbar-nav > li > a {
    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-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:#ff881f;}
 .navbar-inverse .navbar-toggle:hover .icon-bar,.navbar-inverse .navbar-toggle:focus .icon-bar{background-color:#ff881f;}
 .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;}
 .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:#ff881f;}
}

@media (min-width: 992px) {
 .navbar-inverse .navbar-right{margin-right:-30px;}
 .navbar-inverse .navbar-nav > li > a{min-width:160px;padding: 34px 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 li{width: 10px;height: 10px;background-color:rgba(255,255,255,.1);border:1px solid #fff;margin: 0 6px;border-radius:0;transition:ease-in-out .15s all;}
.carousel-indicators li.active{width: 10px;height: 10px;background-color:#fff;margin: 0 6px;box-shadow:0px 2px 6px rgba(0, 0, 0, .125);transform:rotate(45deg);}

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

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

/* 푸터 */
#site footer{margin-top:0px;background-color:#333;color:#ddd}
#site footer .footer-info{padding: 40px 0;}
#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: 13px;margin-right:15px;line-height:22px;color: #b6b6b6;letter-spacing: 0;}
#site footer .footer-info ul li:first-child {font-weight: 600;color: #eee;}
#site footer .footer-info .logo img {
    height: 55px;
    opacity: 0.8;
}
#site footer .footer-info ul li.copy {
    margin: 3px 0 0;
    font-size: 12px;
    color: #999;
    letter-spacing: 0.015em;
}
#site footer .footer-info .box-btn {
    top: 0;
    right: 15px;
    position: absolute;
    display: flex;
}
#site footer .footer-info .box-btn .item+.item {
    margin-left: 5px;
}
#site footer .footer-info .box-btn a {
    min-width: 70px;
    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: #000;
    border-color: #000;
}

/* 메인 페이지 */
.carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
    margin-left: -40px;
}
.carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev {
    margin-right: -40px;
}
#mainCarousel .carousel-inner .item {
    height: 100vh;
    /* height: calc(100vh - 250px); */
}
/* #mainCarousel .carousel-inner .item:nth-child(1) .carousel-caption {
    color: #000;
} */
#mainCarousel .carousel-caption h1 {
    margin: 0 0 30px;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.3em;
    letter-spacing: -0.04em;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.27);
}
#mainCarousel .carousel-caption p {
    font-size: 29px;
    font-weight: 300;
    letter-spacing: 0.015em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.27);
}
#mainCarousel .carousel-caption p i {
    font-weight: 600;
    font-style: normal;
}
@media (max-width: 767px) {
 #mainCarousel .carousel-inner .item{height:300px}
 #mainCarousel .carousel-caption {
    top: 45%;
    right: 5%;
    left: 5%;
}
 #mainCarousel .carousel-caption h1{font-size:28px}
 #mainCarousel .carousel-caption p{font-size:15px;}
}

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

/* 메인 추가 스타일 */
.mainPage .tit {
    margin: 0 0 60px;
}
.mainPage .tit h2 {
    margin: 0;
    font-size: 46px;
    font-weight: 800;
    line-height: 1em;
    color: #111;
}
.mainPage .tit p {
    margin: 15px 0 0;
    font-size: 18px;
}
.mainPage .box-biz {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0px;
    gap: 5px;
}
.mainPage .box-biz > .item {
    flex: 1 1 25%;
    /* flex: 1 1 0; */
}
.mainPage .box-biz > .item a {
    width: 100%;
    height: 100%;
    display: inline-block;
    padding: 40px 30px;
    /* padding: 30px 22px; */
    text-decoration: none;
    background: rgb(255 255 255 / 65%);
    border: 1px solid #eee;
    box-shadow: 5px 7px 6px -5px rgb(0 0 0 / 6%);
}
.mainPage .box-biz > .item .top {
    display: flex;
    align-items: center;
}
.mainPage .box-biz > .item i[class^="ph-"] {
    margin-right: 8px;
    font-size: 37px;
    /* font-size: 35px; */
    color: #eb7d1d;
    line-height: 1em;
}
.mainPage .box-biz > .item .txt {
    position: relative;
    display: inline-block;
    margin: 5px 0 0;
    font-size: 24px;
    /* font-size: 22px; */
    font-weight: 600;
}
/* .mainPage .box-biz > .item .txt::after {
    content: "\f6a2";
    top: 0;
    right: -25px;
    position: absolute;
    font-size: 20px;
    font-weight: 500;
    font-family: "Phosphor";
} */
.mainPage .box-biz > .item a:hover {
    background: #fff;
    box-shadow: 5px 20px 17px -5px rgba(0, 0, 0, 0.25);
}
.mainPage .box-biz > .item a:hover .txt {
    color: #eb7d1d;
}
.mainPage .box-biz > .item ul {
    display: flex;
    margin-top: 25px;
    /* margin-top: 20px; */
}
.mainPage .box-biz > .item ul > li {
    padding-left: 8px;
    font-size: 17px;
    /* font-size: 15px; */
}
.mainPage .box-biz > .item ul > li::before {
    content: '';
    top: 9px;
    /* top: 7px; */
    left: 0;
    width: 4px;
    height: 4px;
    position: absolute;
    background: #333;
    border-radius: 30px;
}
.mainPage .box-biz > .item ul > li+li {
    margin-left: 12px;
    /* margin-top: 3px; */
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 500,
  'GRAD' 0,
  'opsz' 48
}
.mainPage {
    padding: 110px 0;
    background-image: url(/public/img/main/main-bg.jpg);
}
.mainPage #section1 {
    margin-top: 110px;
}
/* 게시판 */
div[class^="board_box_"] {
    margin: 32px 0 0 !important;
}
div[class^="board_box_"] .page-header {
    margin: 0 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #555;
}
div[class^="board_box_"] .page-header .pull-right {
    font-size: 22px;
}
div[class^="board_box_"] .page-header h4 {
    margin: 0;
    font-size: 26px;
    letter-spacing: -0.04em;
}
.board_box_list ul,
.board_box_status ul,
.board_box_map ul {
    margin: 0;
    padding: 0;
}
.board_box_list ul li,
.board_box_status ul li,
.board_box_map ul li {
    padding: 7px 0;
    list-style: none;
}
.board_box_list .info span,
.board_box_status .info span,
.board_box_map .info span {
    margin-left: 5px;
    opacity: .5;
}
.board_box_list .info span.writer,
.board_box_status .info span.writer,
.board_box_map .info span.writer,
.board_box_list .info span.hits,
.board_box_status .info span.hits,
.board_box_map .info span.hits {
    display: none;
}

.mainPage .right {
    padding-left: 40px;
}
.mainPage .left {
    padding-right: 30px;
}
.box-main {
    margin: 0 -12px;
}
.box-main > .item {
    position: relative;
    padding: 0 12px;
}
.box-main > .item .inner,
.box-main > .item a {
    width: 100%;
    height: 280px;
    position: relative;
    display: inline-block;
    background: #fff;
    text-decoration: none;
    border: 5px solid #eee;
    overflow: hidden;
}
.box-main > .item3 .inner {
    color: #fff;
    background: #0f00a0 url('/public/img/main/pattern-slash-white.png');
    border: none;
}
.box-main > .item a::before {
    content: '';
    top: 50%;
    left: 50%;
    width: 460px;
    height: 0;
    position: absolute;
    background: #ff891e url('/public/img/main/pattern-slash-white.png');
    transform: translate(-50%,-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.29, 0.44, 0.58, 0.99);
}
.box-main > .item .text {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    padding: 35px;
}
.box-main > .item .en {
    font-size: 13px;
    letter-spacing: 0.04em;
    font-weight: 400;
}
.box-main > .item .tit {
    margin: 10px 0 0;
    font-size: 25px;
    font-weight: 600;
}
.box-main > .item i {
    left: 30px;
    bottom: 30px;
    position: absolute;
    font-size: 100px;
    color: #ddd;
}
.box-main > .item .view-more {
    right: 30px;
    bottom: 30px;
    position: absolute;
    padding: 10px;
    padding-right: 27px;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all ease .15s;
}
.box-main > .item .view-more::before {
    content: '\f1df';
    top: 9px;
    right: 0px;
    position: absolute;
    font-size: 17px;
    font-weight: 400;
    font-family: 'Material Symbols Outlined';
    line-height: 19px;
}
.box-main > .item a:hover {
    color: #fff;
    border-color: #ff891e;
}
.box-main > .item a:hover::before {
    height: 460px;
}
.box-main > .item a:hover i {
    color: #ffd4ae;
}
.box-main > .item a:hover .view-more,
.box-main > .item a:hover .view-more {
    padding-right: 22px;
    text-decoration: underline;
}
.box-main .list-contact {
    margin-top: 40px;
}
.box-main .list-contact > li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    line-height: 1.5em;
}
.box-main .list-contact > li+li {
    margin-top: 8px;
    letter-spacing: 0;
}
.box-main .list-contact > li.addr {
    margin-bottom: 12px;
}
.box-main .list-contact > li span[class^='material'] {
    top: 0;
    left: 0;
    position: absolute;
    font-size: 19px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    padding-top: 2px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .box-main {
        margin: 0 -6px;
    }
    .box-main > .item {
        margin: 0 6px;
    }
}

/*************** 서브 시작 ***************/
/* 공통 스타일 */
.navbar-inverse+.container {
    width: 100%;
    padding: 0;
}
.subPage {
    padding-top: 89px;
}
.subPage .wrapTop {
    position: relative;
    transition: all ease .15s;
    z-index: 100;
}
.subPage .pageTop {
    height: 280px;
    position: relative;
    color: #fff;
    background: #333 url(/public/img/sub/bg_sub_top01.jpg) no-repeat center / cover;
}
.subPage .pageTop::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    background: #000;
    opacity: 0.35;
}
.subPage .pageTop h1,
.subPage .pageTop h2 {
    height: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-weight: 700;
    font-size: 43px;
    letter-spacing: -0.02em;
    padding-top: 12px;
}

/* Link */
.subPage .link {
    background: rgb(255 255 255 / 80%);
    margin-top: 0;
    border-bottom: 1px solid #ddd;
}
.subPage .link ul {
    display: flex;
}
.subPage .link ul > li {
    flex: 1 1 0%;
    text-align: center;
}
.subPage .link ul > li.active {
    position: relative;
}
.subPage .link ul > li.active::before {
    content: "";
    display: block;
    position: absolute;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #ff881f;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1px;
}
.subPage .link ul > li > a {
    padding: 0;
    font-size: 16px;
    color: #555;
    line-height: 65px;
    transition: none;
    font-weight: 500;
    position:relative;
}
.subPage .link ul > li > a::after {
    content: "";
    display: block;
    width: 1px;
    height: 14px;
    background: #e9e9e9;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.subPage .link ul > li:first-child > a::after {
  display:none;
}
.subPage .link ul > li > a:hover,
.subPage .link ul > li > a:focus {
    color: #333;
    background: transparent;
}
.subPage .link ul > li.active > a {
    font-weight: 700;
    color: #222;
}
.subPage .link ul > li > a::before {
    content: '';
    left: 50%;
    bottom: -2px;
    width: 0%;
    height: 3px;
    position: absolute;
    background: #ff881f;
    transform: translateX(-50%);
    transition: all 0.35s;
}
.subPage .link ul > li.active > a::before,
.subPage .link ul > li:not(.active) > a:hover::before,
.subPage .link ul > li:not(.active) > a:focus::before {
    width: 100%;
}

.subPage > .contents {
    padding: 100px 0 120px;
}
.subPage > .contents .row:not(.page-title)+.row {
    margin-top: 150px;
}

.page-title {
    margin: 0 0 90px;
}

.title-lv-1 {
    margin: 0;
    font-size: 39px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.045em;
    line-height: 1em;
    text-align: center;
}
.list-default {
    margin: 0;
    padding-left: 0;
    list-style-type: none;
}
.list-default > li {
    position: relative;
}

/* 연혁 (페이지) */
.wrap-history .block {
    display: flex;
}
.wrap-history .block+.block {
    margin-top: 65px;
}
.wrap-history .left {
    flex-basis: 22%;
    margin-right: 30px;
}
.wrap-history .right {
    flex-basis: 75%;
    padding-top: 15px;
    border-top: 2px solid #ddd;
}
.wrap-history .left .year {
    margin: 0;
    font-size: 57px;
    font-weight: 900;
    color: #ffd4ae;
}
.wrap-history .right ul > li {
    margin-bottom: 15px;
    padding-left: 90px;
    padding-bottom: 15px;
    color: #666;
    border-bottom: 1px solid #eee;
}
.wrap-history .right ul > li:last-child {
    margin-bottom: 0;
}
.wrap-history .right .date {
    top: 0;
    left: 0;
    position: absolute;
    font-weight: 600;
    color: #111;
}

/* 인사말 (페이지) */
.wrap-greet {
    display: flex;
    align-items: center;
}
.wrap-greet .text {
    padding-top: 50px;
    padding-left: 20px;
}
.wrap-greet .image {
    padding-right: 30px;
}
.wrap-greet .text h3 {
    position: relative;
    margin: 0 0 40px;
    padding-top: 30px;
    font-size: 35px;
    font-weight: 300;
    letter-spacing: -0.055em;
    color: #444;
}
.wrap-greet .text h3::before {
    content: '';
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    position: absolute;
    background: #ff881f;
    border-radius: 30px;
}
.wrap-greet .text h3::after {
    content: '';
    top: 0;
    left: 13px;
    width: 8px;
    height: 8px;
    position: absolute;
    background: #0f00a0;
    border-radius: 30px;
}
.wrap-greet .text p {
    margin: 0 0 25px;
    font-size: 17px;
    font-weight: 300;
    letter-spacing: -0.035em;
    color: #000;
}
#greeting .text .from {
    margin-top: -10px;
    font-size: 16px;
    font-weight: 700;
    text-align: right;
}

/* 사업수행실적 공통 스타일 */
.subPage[id^='biz_'] .pageTop {
    height: 150px;
    background: #fff;
    border-bottom: 1px solid #ddd;
}
.subPage[id^='biz_'].none2 .wrapTop {
    width: 100%;
    position: fixed;
    transform: translateY(-240px);
}
.subPage[id^='biz_'] .pageTop::before {
    display: none;
}
.subPage[id^='biz_'].none2 .link {
    background: #fff;
}
.subPage[id^='biz_'] > .contents {
    /* padding-top: 215px; */
    padding-top: 65px;
}
.subPage[id^='biz_'] .pageTop h1,
.subPage[id^='biz_'] .pageTop h2 {
    font-size: 38px;
    color: #000;
}
.box-top {
    display: flex;
    height: calc(100vh - 239px);
    align-items: center;
    position: relative;
    margin-top: -131px;
    margin-bottom: 90px;
    padding: 100px;
    background: #333 url(/public/img/sub/bg_box_top01_2.jpg) no-repeat center / cover;
}
#biz_result02 .box-top {background: #333 url(/public/img/sub/bg_box_top02.jpg) no-repeat center / cover;}
#biz_result03 .box-top {background: #333 url(/public/img/sub/bg_box_top03_2.jpg) no-repeat center / cover;}
#biz_result06 .box-top {background: #333 url(/public/img/sub/bg_box_top04.jpg) no-repeat center / cover;}
#biz_result07 .box-top {background: #333 url(/public/img/sub/bg_box_top05_2.jpg) no-repeat center / cover;}
#biz_result05 .box-top {background: #333 url(/public/img/sub/bg_box_top06.jpg) no-repeat center / cover;}
.box-top::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    background: #000;
    opacity: 0.35;
}
.box-top .container {
    top: 58%;
    left: 50%;
    position: absolute;
    transform: translate(-50%,-50%);
}
#biz_result05 .box-top .container {
    top: 43%;
}
.box-top .title-lv-1 {
    position: relative;
    font-weight: 400;
    font-size: 48px;
    color: #fff;
    text-align: left;
}
.box-top .title-lv-1::before {
    top: -42px;
    content: 'BUSINESS';
    position: absolute;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    line-height: 1em;
}
.box-top .desc {
    margin-top: 52px;
}
.box-top .desc p {
    padding: 48px 65px 48px 55px;
    font-size: 17px;
    background: rgba(255, 255, 255, 0.9);
}

.biz_result {
    overflow-x: hidden;
}
.biz_result .row > div {
    width: 100%;
}
.biz_result img {
    padding: 3px;
    border: 1px solid #ddd;
}
.biz_result h5 {
    margin: 30px 0 46px;
    font-size: 34px;
    font-weight: 300;
    color: #000;
    letter-spacing: -0.05em;
}
.biz_result img+h5 {
    margin-top: 100px;
}
.biz_result ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.biz_result h5+ul {
    padding-top: 60px;
    border-top: 1px solid #333;
}
.biz_result ul li {
    flex-basis: 25%;
    position: relative;
    margin-bottom: 30px;
    padding-left: 15px;
    font-size: 22px;
    border-left: 1px solid #ddd;
}
.biz_result h5+ul > li {
    flex: unset;
    width: 25%;
}
.subPage#biz_result05 .biz_result h5+ul > li {
    flex: 1 1 auto;
}
.subPage#biz_result02 .biz_result ul+ul > li {
    flex: 1 1 auto;
}
.subPage:not(#biz_result05) .biz_result h5+ul > li:nth-child(2) {
    width: 50%;
}
.biz_result ul li .tit {
    top: 0;
    left: 0;
    display: block;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 8px;
    color: #777;
}

/* 게시판, 주문폼 공통 스타일 */
.board_wrapper,
.calendar_wrapper {
    margin-top: 0;
    margin-bottom: 0;
}
.search_wrap {
    margin-bottom: 0;
}
.board_wrapper .table.table_default {
    border-top: 1px solid #333;
}
.table.table_default colgroup > col:nth-child(3),
.table.table_default colgroup > col:nth-child(4) {
    display: none;
}
.table.table_default tr th,
.table.table_default tr td {
    border-color: #e6e6e6;
}
.table.table_default tr .writer,
.table.table_default tr .regdate,
.table.table_default tr .hits {
    color: #999;
    display: none;
}
.table.table_default tr td.subject {
    position: relative;
}
.table.table_default thead th {
    font-weight: 600;
    color: #222;
    background: #fff;
    border-color: #e3e3e3;
}
.table.table_default tbody .subject .badge {
    top: 15px;
    position: absolute;
    padding: 4px 6px 3px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3em;
    background: #ff881f;
    border: none;
    border-radius: 0;
}
.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;
}
.board_data_view {
    border-top: 1px solid #333;
    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: 24px;
    font-weight: 500;
    color: #111;
    letter-spacing: -0.04em;
    line-height: 1.3em;
    border-bottom: 1px solid #eee;
}
.board_data_view .header_wrap .info {
    margin: 0;
    padding: 12px 0 13px;
    display: none;
}
.board_data_view .header_wrap .info span {
    font-size: 13px;
    color: #909090;
}
.board_data_view p {
    font-size: 18px;
}
/* 카테고리 */
.category_wrap {
    margin-bottom: 65px;
}
.category_wrap ul{
    display: flex;
}
.category_wrap li{
    flex: 1;
}
.category_wrap li+li {
    margin-left: 0;
}
.category_wrap li a {
    width: 100%;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-left: none;
    transition: none;
    border-color: #ff881f;
    background: #f9f9f9;
    position: relative;
}
.category_wrap li a::before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 15px;
    background: #ddd;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.category_wrap li.on a::before {
    z-index: -1;
}
.category_wrap li:first-child a::before {
    display: none;
}
.category_wrap li a:hover,
.category_wrap li a:focus {
    color: #333;
    background: #f9f9f9;
}
.category_wrap li.on a,
.category_wrap li.on a:hover,
.category_wrap li.on a:focus{
    color: #eb7d1d;
    background: #fff;
    border-color: #ff881f;
    border: 1px solid;
    border-bottom: 0;
}
/* Pagenation */
.pagination_wrap ul li.active a,
.pagination_wrap ul li.active a:hover,
.pagination_wrap ul li.active a:focus {
    color: #ff881f;
}
.pagination_wrap ul li.box a {
    border: none;
}
.pagination_wrap ul li.box:hover a,
.pagination_wrap ul li.box:focus a {
    color: #ff881f;
}

.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;
    letter-spacing: -0.04em;
    border-color: #e6e6e6;
}
.board_wrapper .table.board_write_table {
    border-top: 2px solid #333;
}
.board_wrapper .table.board_write_table tbody tr th {
    width: 180px;
    font-weight: 500;
    color: #222;
    background: #fff;
    padding-left: 10px;
}
.board_wrapper .table.board_write_table tbody tr th>span:nth-child(1) {
    color: #ff0000;
    margin-right: 3px;
}
.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: #0a79cb;
    text-decoration: underline;
}
.form-control:not([readonly]):focus {
    border-color: #555;
}
.board_wrapper .text-center #list_btn {
    display: none;
}

/* 블로그B 게시판 */
.table_video .inner:hover,
.table_blog2 .inner:hover,
.table_pd .inner:hover {
    border-color: #ff881f;
    box-shadow: 5px 20px 17px -5px rgba(0, 0, 0, 0.25);
    transition: all ease .3s;
}
.table_blog2 .inner .top a {
    transition: all ease .3s;
}
.table_blog2 .inner:hover .top a {
    transform: scale(1.08);
}
.table_video .inner:hover .bottom,
.table_blog2 .inner:hover .bottom,
.table_pd .inner:hover .bottom {
    background: rgb(255,121,0);
    background: linear-gradient(150deg, rgba(255,121,0,1) 10%, rgba(255,137,30,1) 60%, rgba(255,167,87,1) 100%);
}
:where(.table_video, .table_blog2, .table_pd) .inner :where(.bottom .title a, .title a) :where(:hover, :focus),
.table_video .inner:hover .bottom a,
.table_blog2 .inner:hover .bottom a,
.table_pd .inner:hover .bottom a {
    color: #fff;
}
.table_video .inner .title a:hover,
.table_blog2 .inner .title a:hover,
.table_pd .inner .title a:hover,
.table_video .inner .title a:focus,
.table_blog2 .inner .title a:focus,
.table_pd .inner .title a:focus {
    color: #fff;
}
.table_video .inner .top a .thumb,
.table_blog2 .inner .top a .thumb,
.table_pd .inner .top a .thumb {
    min-height: 267px;
    display: block;
    padding-top: 75%;
    background-size: cover;
    border-bottom: 1px solid #ddd;
}
.table_video .inner .bottom,
.table_blog2 .inner .bottom,
.table_pd .inner .bottom {
    padding: 25px 22px 23px;
    border: none;
}
.table_video .inner .bottom .title,
.table_blog2 .inner .bottom .title {
    margin-bottom: 0;
}
.table_video .inner .title a,
.table_blog2 .inner .title a {
    font-size: 17px;
    text-decoration: none !important;
    white-space: initial;
    display: block;
    word-wrap: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 47px;
    line-height: 1.5;
    letter-spacing: -0.03em;
    font-weight: 600;
}

.table_video .inner,
.table_blog2 .inner {
    border: 1px solid #ddd;
    margin-bottom: 40px;
}
.table_video .bottom .info,
.table_blog2 .bottom .info,
.table_pd .bottom .info {
    display: none;
}
.table_video .bottom .info span,
.table_blog2 .bottom .info span,
.table_pd .bottom .info span {
    color: #999;
    padding: 0 5px;
    font-size: 13px;
}
.table_video .bottom .info .hits,
.table_blog2 .bottom .info .hits,
.table_pd .bottom .info .hits {
    display: none;
}
.table_video .badge,
.table_blog2 .badge,
.table_pd .badge,
.table_blog .badge,
.table_default .badge,
.board_pd_view .badge,
.pd_title_wrap .badge {
    padding: 6px 7px 5px;
    margin-right: 3px !important;
    color: #fff;
    background-color: #555;
    border: 0;
    margin-bottom: 8px;
    font-size: 13px;
    border-radius: 1px;
    font-weight: 500;
}

.table_blog2 .inner:hover .badge {
    background: #000;
}

/* 목록 */
.btn.btn-dark {
    background-color: #4f5356; 
    border-color: #4f5356; 
}

.member_wrapper {
    padding-top: 200px;
    padding-bottom: 150px;
}
/**************** 서브 끝 ****************/

/*********** 모바일 최적화 시작 ***********/
@media (max-width: 767px) { /* Small devices (col-xs-*) 모바일 */
    body{overflow-x:hidden;overflow-y:auto}
    #site{padding-top:66px;font-size:15px}
    p{line-height:1.5em}
    .btn-top{right:15px;bottom:15px;width:40px;height:40px;padding:12px;font-size:15px}

    .navbar-inverse .navbar-brand::after{top:26px;left:75px;font-size:18px}
    .navbar-inverse .navbar-brand img{height:33px;margin-top:0}
    .navbar-inverse .navbar-nav{margin:0 -15px}
    .navbar-inverse .navbar-nav > .open{background-color:#f6f6f6}
    .navbar-inverse .navbar-nav > li > a{padding:10px 15px;font-size:16px;transition:all ease .15s}
    .navbar-inverse .navbar-nav .dropdown.open .dropdown-menu {padding:10px 0}
    .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:12px 15px;color:#fff;background:var(--page-point-color)}
    .navbar-inverse .navbar-nav > .open .dropdown-menu > li > a{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}

    .mainPage{padding:60px 0}
    .mainPage #section1{margin-top:60px}
    .mainPage .tit{margin:0 0 40px}
    .mainPage .tit h2{font-size:38px}
    .mainPage .tit p{margin:10px 0 0;font-size:16px}
    .mainPage .box-biz > .item{flex-basis:100%}
    .mainPage .box-biz > .item a{padding:30px 20px}
    .mainPage .box-biz > .item i[class^="ph-"]{margin-right:5px;font-size:33px}
    .mainPage .box-biz > .item .txt{font-size:20px}
    .mainPage .box-biz > .item ul{margin-top:15px}
    .mainPage .box-biz > .item ul > li{font-size:16px}
    .mainPage .box-biz > .item ul > li+li{margin-left:10px}
    .box-main > .item a{height:110px}
    .box-main > .item .text{padding:20px}
    .box-main > .item .en{font-size:12px}
    .box-main > .item .tit{font-size:22px}
    .box-main > .item i{right:20px;bottom:10px;left:auto;font-size:80px;opacity:0.5}
    .box-main > .item .view-more{right:20px;bottom:20px;font-size:12px}
    .box-main > .item .inner{height:225px}
    .box-main .list-contact{margin-top:25px}
    .box-main .list-contact > li{font-size:14px}

    #site footer .footer-info{padding:25px 0}
    #site footer .footer-info ul li{font-size:12px;line-height:18px}
    #site footer .footer-info ul li.copy{font-size:10px}
    #site footer .footer-info .box-btn{position:static;margin-top:15px}
    #site footer .footer-info .box-btn a{font-size:12px}

    .subPage{padding-top:0}
    .subPage .pageTop{height:180px}
    .subPage .pageTop h1,
    .subPage .pageTop h2{font-size:35px}
    .subPage .link ul > li > a{font-size:14px;line-height:50px}
    .subPage > .contents{padding:60px 0 80px}
    .title-lv-1{font-size:33px}
    .page-title{margin:0 0 60px}
    .wrap-history .block{flex-direction:column}
    .wrap-history .block+.block{margin-top:45px}
    .wrap-history .left{margin:0 0 10px}
    .wrap-history .left .year{font-size:42px}
    .wrap-history .right ul > li{padding:25px 0 15px}
    .wrap-greet{flex-direction:column}
    .wrap-greet .image img{height:100px}
    .wrap-greet .text{padding-top:40px;padding-left:15px}
    .wrap-greet .text h3{margin:0 0 25px;padding-top:25px;font-size:30px}
    .wrap-greet .text p{margin:0 0 20px;font-size:16px}
    #greeting .text .from{font-size:15px}
    .subPage[id^='biz_'].none2 .wrapTop{transform:translateY(-175px)}
    .subPage[id^='biz_'] .pageTop{height:110px}
    .subPage[id^='biz_'] .pageTop h1,
    .subPage[id^='biz_'] .pageTop h2{font-size:32px}
    .subPage[id^='biz_'] .link ul{flex-wrap:wrap}
    .subPage[id^='biz_'] .link ul > li{flex:1 1 30%}
    .subPage[id^='biz_'] .link ul > li:nth-child(3) > a::after{display:none}
    .subPage[id^='biz_'] > .contents{padding-top:0}
    .box-top{height:auto;min-height:180px;margin-top:0;margin-bottom:30px;padding:15px 0}
    .box-top .container{top:0;left:0;position:relative;transform:none}
    .box-top .title-lv-1{margin-top:60px;font-size:38px;text-align:center}
    #biz_result05 .box-top .title-lv-1{margin-top:40px}
    .box-top .title-lv-1::before{top:-32px;left:50%;font-size:18px;transform:translateX(-50%)}
    .box-top .desc{margin-top:30px}
    .box-top .desc p{padding:35px 30px;font-size:16px}

    .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:11px}
    .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:55px}
    .board_data_view .header_wrap .title{padding:20px 5px 18px;font-size:20px}
    .board_data_view .header_wrap .info{padding:10px 0;}
    .board_data_view .header_wrap .info span{font-size:11px}
    .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 .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:12px}
    .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:50px;padding-bottom:80px}

    .category_wrap li a{padding:14px 10px;font-size:14px}
    .table_blog2 dd{width:100%}
    .table_video .inner,
    .table_blog2 .inner{margin-bottom:0}
    .table_video .inner .top a .thumb,
    .table_blog2 .inner .top a .thumb,
    .table_pd .inner .top a .thumb{min-height:unset;padding-top:60%}
    .table_video .inner .bottom,
    .table_blog2 .inner .bottom,
    .table_pd .inner .bottom{padding:20px 10px}
    .table_video .inner .title a,
    .table_blog2 .inner .title a{height:auto;font-size:15px;line-height:1.4}

    .biz_result h5{margin:20px 0 30px;font-size:28px}
    .biz_result img+h5{margin-top:50px}
    .biz_result h5+ul{padding-top:0}
    .biz_result ul li{flex:100%;margin-bottom:15px;padding-top:15px;padding-left:0;font-size:18px;border-left:none;border-top:1px solid #ddd}
    .biz_result ul li:first-child{border-top:none}
    .biz_result ul li:last-child{padding-bottom:15px;border-bottom:1px solid #ddd}
    .biz_result h5+ul > li{flex:100%;width:100%}
    .biz_result ul li .tit{margin-bottom:4px;font-size:16px}
}
@media (min-width: 768px) and (max-width: 1199px) { /* Medium·Large devices */
    #mainCarousel .carousel-caption{right:10%;left:10%}
    #mainCarousel .carousel-caption h1{font-size:40px}
}
@media (min-width: 1200px) { /* Extra large devices (col-lg-*) */
    #history .link .container,
    #greeting .link .container,
    #organization .link .container{width:37%}
    #site footer .footer-info .logo{width:14%}
    #site footer .footer-info .info{width:86%}
    /* 지구단위계획부문 - /board/view?bd_id=biz_result02&wr_id=50 */
    .board_data_view input[value='50']+.contents_inner .biz_result .row > div:first-child{width:54%;padding-right:5px}
    .board_data_view input[value='50']+.contents_inner .biz_result .row > div:last-child{width:46%;padding-left:5px}
}
/************ 모바일 최적화 끝 ************/