@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@700&family=Roboto:wght@300;400;500;700&display=swap");

#site {
    padding-top: 0;
    font-size: 15px;
    font-family: "Roboto", "notokr", sans-serif;
    letter-spacing: -0.03em;
}

a,
button {
    transition: all ease-in-out 0.15s;
    -webkit-transition: all ease-in-out 0.15s;
    -moz-transition: all ease-in-out 0.15s;
    -ms-transition: all ease-in-out 0.15s;
    -o-transition: all ease-in-out 0.15s;
}

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

p {
    line-height: 1.6em;
}

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

.btn.btn-primary {
    background-color: #7db925;
    border-color: #7db925;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background-color: #639419;
    border-color: #639419;
}

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

/* 상단 메뉴 */
.navbar-inverse {
    background: #fff;
    position: static;
    margin-bottom: 0;
    border: 0;
}

.navbar-inverse .navbar-brand {
    padding: 0;
    height: auto;
    margin: 24px 0 0 !important;
}
.navbar-inverse .navbar-brand span {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    color: #006aad;
    letter-spacing: 0.05em;
}
.navbar-inverse .navbar-brand span::after {
    content: "HYOSUNG INDUSTRIAL";
    left: 0;
    bottom: -18px;
    position: absolute;
    font-size: 11px;
    color: #006aad;
    letter-spacing: 0.07em;
    white-space: nowrap;
    opacity: 0.8;
}

.navbar-inverse .navbar-nav > li > a {
    font-size: 17px;
    font-weight: 500;
    color: #222;
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    color: #006aad;
}

.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: none;
    color: #006aad;
}

@media (max-width: 767px) {
    /*.navbar-inverse .navbar-toggle{border:1px solid #666;}*/
    .navbar-inverse .navbar-toggle {
        border: 0;
        padding: 15px 0;
    }
    .navbar-inverse .navbar-toggle .icon-bar {
        background-color: #333;
        transition: ease-in-out 0.15s all;
        opacity: 1;
        position: relative;
    }
    .navbar-inverse .navbar-toggle:hover,
    .navbar-inverse .navbar-toggle:focus {
        background: none;
        border-color: #006aad;
    }
    .navbar-inverse .navbar-toggle:hover .icon-bar,
    .navbar-inverse .navbar-toggle:focus .icon-bar {
        background-color: #006aad;
    }
    .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, 0.125);
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.125);
        background: rgba(0, 0, 0, 0.85);
    }
    .navbar-inverse .navbar-nav .dropdown-menu > li > a {
        padding: 12px 20px;
        color: #fff;
        text-align: center;
        animation-fill-mode: both;
        animation-duration: 0.4s;
        animation-name: fadeIn;
    }
    .navbar-inverse .navbar-nav .dropdown-menu > li > a:hover,
    .navbar-inverse .navbar-nav .dropdown-menu > li > a:focus {
        background: #006aad;
    }
    @keyframes fadeInUp {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
}

@media (min-width: 992px) {
    .navbar-inverse .navbar-right {
        margin-right: -25px;
    }
    .navbar-inverse .navbar-nav > li > a {
        padding: 33px 25px;
    }
}

/* 슬라이드 공통 */
.carousel-control {
    text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.125);
    transition: ease-in-out 0.15s all;
    display: none;
}
.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,
.carousel-indicators li.active {
    width: 15px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0);
    border: 2px solid #fff;
    margin: 0 4px;
    border-radius: 50%;
    transition: ease-in-out 0.15s all;
}
.carousel-indicators li.active {
    background-color: #fff;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.125);
}

.carousel-caption {
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.34);
    padding: 0;
    top: 52%;
}

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

/* 푸터 */
#site footer {
    margin-top: 0px;
    background-color: #222;
    color: #afafaf;
}
#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: 23px;
    letter-spacing: 0;
    font-weight: 300;
}
#site footer .footer-info ul li:first-child {
    font-weight: 500;
    color: #ccc;
    font-size: 14px;
}
#site footer .footer-info ul li.copy {
    font-size: 11px;
    color: #999;
    float: right;
    opacity: 0.8;
    letter-spacing: 0.02em;
}

/* 메인 페이지 */
#mainCarousel .carousel-inner .item {
    height: 650px;
}
#mainCarousel .carousel-caption h1 {
    font-size: 82px;
    font-weight: 600;
    margin: 0 0 7px;
    letter-spacing: 0.01em;
}
#mainCarousel .carousel-caption p {
    font-size: 24px;
    letter-spacing: -0.05em;
    font-weight: 500;
}
#mainCarousel .carousel-inner .item:nth-child(1) .carousel-caption p {
    letter-spacing: -0.01em;
}

@media (max-width: 767px) {
    #mainCarousel .carousel-inner .item {
        height: 300px;
    }
    #mainCarousel .carousel-caption h1 {
        font-size: 30px;
    }
    #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;
}

/* 메인 추가 스타일 */
#main1 {
    padding: 100px 0 105px;
}
#main1 .row {
    /* margin: 0; */
}
.mainPage h3 {
    margin: 0 0 55px;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: -0.005em;
    text-align: center;
    color: #222;
}
#main1.mainPage h3::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #006aad;
    border-right: 30px solid #7db925;
    display: block;
    margin: 28px auto 0;
}
.mainPage .main-link > a {
    position: relative;
    text-decoration: none;
    background: #fff;
    transition: all 0.25s;
    display: block;
    /* padding: 15px 15px 45px; */
}
.mainPage .main-link > a .wrap-img {
    overflow: hidden;
}
.mainPage .main-link > a img {
    transition: all 0.3s;
}
.mainPage .main-link > a:hover .wrap-img {
    border-color: #006aad;
}
.mainPage .main-link a:hover img {
    opacity: 0.6;
    transform: scale(1.05);
}
.mainPage .main-link h4 {
    margin: 35px 0px 22px;
    padding: 0 4px;
    font-size: 26px;
    color: #333;
    font-weight: 500;
    letter-spacing: -0.05em;
    text-align: center;
}
.mainPage .main-link .more {
    position: relative;
    margin: 0 auto;
    padding: 10px 6px;
    font-size: 13px;
    letter-spacing: 0.01em;
    background: #006aad;
    color: #fff;
    font-weight: 500;
    transition: all 0.25s ease;
    text-align: center;
    /* border: 1px solid; */
    width: 140px;
}
.mainPage .main-link .more::after {
    content: "+";
    font-size: 16px;
    margin-left: 8px;
    line-height: 1;
}

/* 게시판 영역 */
div[class^="board_box_"] .page-header {
    margin: 0 0 25px;
    border-bottom: 1px solid #bbb;
    padding: 0 0 15px;
}
div[class^="board_box_"] .page-header h4 {
    margin: 0;
    font-size: 20px;
    text-align: left;
    letter-spacing: -0.03em;
    font-weight: 600;
}

#section_9f6140 {
    padding: 70px 0 40px;
    background: #f4f4f4;
}
.board_box_list ul {
    min-height: 132px;
}
.board_box_list ul li {
    font-size: 15px;
    padding: 6px 0;
    color: #222;
}
.board_box_list ul li .info {
    letter-spacing: 0;
}
.board_box_list ul li .writer,
.board_box_list ul li .hits {
    display: none;
}
@media (min-width: 767px) {
    #section_9f6140 div[class^="board_box_"] {
        width: 35%;
        padding-right: 30px;
    }
}

/* 견적요청, 고객문의 배너 */
#main2 {
    float: right;
    width: 30%;
    padding: 0 15px 0 30px;
}
#main2 h3 {
    margin: 0 0 18px;
    font-size: 20px;
    text-align: left;
    letter-spacing: -0.03em;
    font-weight: 600;
}
.mainPage .banner + .banner {
    margin-top: 5px;
}
.mainPage .banner > a {
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 23px;
    color: #fff;
    background: #7db925;
    text-decoration: none;
    border-radius: 0 50px 50px 0;
}
.mainPage #banner2 > a {
    background: #0f7cc1;
}
.mainPage .banner > a::after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    right: 15px;
    top: 16px;
    background: rgba(255, 255, 255, 0.18);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 15px;
    transition: all 0.3s;
}
.mainPage .banner:hover > a::after {
    background: #fff;
    color: #7db925;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
}
.mainPage #banner2:hover > a::after {
    color: #0f7cc1;
}
.mainPage .banner h4 {
    position: relative;
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.055em;
}

/*************** 서브 시작 ***************/
/* 공통 스타일 */
.navbar-inverse + .container {
    width: 100%;
    padding: 0;
}
.subPage > .pageTop {
    height: 260px;
    color: #fff;
    background: #333 url("/public/img/sub/back_page_top.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}
.subPage > .pageTop > .container {
    height: 100%;
    position: relative;
}
.subPage > .pageTop .wrap-title {
    padding: 92px 0 0;
    text-align: center;
}
.subPage > .pageTop .wrap-title > h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -0.03em;
}
.subPage > .pageTop .wrap-title > p {
    margin: 13px 0 0;
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: -0.05em;
}

/* Breadcrumb */
.subPage .breadcrumb {
    top: 20px;
    right: 15px;
    position: absolute;
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0;
    background-color: transparent;
}
.subPage .breadcrumb > li:first-child::before {
    content: "\f015";
    top: 1px;
    left: -10px;
    position: absolute;
    font-size: 11px;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}

/* Link */
.subPage .link {
    background: linear-gradient(to right, #24387d, #0075bd);
}
.subPage .link ul > li > a {
    position: relative;
    padding: 0;
    font-size: 18px;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 54px;
    text-decoration: none;
    font-weight: 400;
}

.subPage .link ul > li > a::after {
    content: "";
    width: 1px;
    height: 18px;
    background: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.25;
}
.subPage .link ul > li:last-child > a::after {
    content: none;
}
.subPage .link ul > li.active > a {
    color: #0c4390;
    font-weight: 600;
    background: #fff;
}
.subPage .link ul > li:not(.active) > a:hover {
    color: #fff;
    background: rgba(0, 0, 0, 0.15);
}

.subPage > .contents {
    padding: 85px 0 110px;
}

.space-bottom {
    margin-bottom: 80px;
}
.title-lv-1 {
    margin: 0 0 80px;
    font-size: 40px;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.03em;
    line-height: 1;
    text-align: center;
}
#history .title-lv-1 + h3 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #222;
    margin: 0 0 35px 0;
}
#history .title-lv-1 + h3 + p {
    font-size: 19px;
    margin-bottom: 30px;
}
.title-lv-3 {
    position: relative;
    margin: 0 0 30px;
    padding-left: 32px;
    font-size: 28px;
    font-weight: 500;
    color: #2f2f2f;
    letter-spacing: -0.04em;
}
.title-lv-3::before {
    content: "";
    top: 9px;
    left: 8px;
    width: 8px;
    height: 12px;
    position: absolute;
    background: #006fb5;
    /* border-radius: 20px; */
    box-shadow: 5px 4px 0 #97ca4b;
    transform: skew(-37deg);
}
.title-lv-4 {
    position: relative;
    margin: 0 0 14px;
    padding-left: 12px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.045em;
}
.title-lv-4::before {
    content: "";
    top: 3px;
    left: 2px;
    width: 2px;
    height: 16px;
    position: absolute;
    background: #555;
}
.title-lv-5 {
    position: relative;
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.045em;
    color: #006aad;
}
.list-default {
    margin: 0;
    padding-left: 0;
    list-style-type: none;
}
.list-default > li {
    position: relative;
    margin-bottom: 5px;
}
.list-style-1 > li {
    padding-left: 12px;
    font-size: 15px;
    letter-spacing: -0.0165em;
    line-height: 1.5;
    color: #555;
}
.list-style-1 > li::before {
    content: "";
    top: 8px;
    left: 0;
    width: 4px;
    height: 4px;
    position: absolute;
    background: #1971c2;
    border-radius: 20px;
}

.list-style-1 > li > ul {
    margin-top: 4px;
    margin-bottom: 9px;
}
.list-style-1 > li > ul > li {
    margin-bottom: 3px;
    font-size: 14px;
}
/*
.list-dash > li {
    padding-left: 12px;
}
.list-dash > li::before {
    content: '-';
    left: 0;
    position: absolute;
}
*/

table.tb-default > thead > tr > th,
table.tb-default > tbody > tr > th,
table.tb-default > tbody > tr > td {
    padding: 16px;
    font-size: 15px;
    border-top: none;
    border-bottom: 1px solid #e6e6e6;
    vertical-align: middle;
}
table.tb-default > thead > tr > th,
table.tb-default > tbody > tr > th {
    text-align: center;
}
table.tb-style-1 {
    border-top: 2px solid #006aad;
}
table.tb-style-1 > thead > tr > th,
table.tb-style-1 > tbody > tr > th {
    font-weight: 600;
    letter-spacing: -0.02em;
    background: #f7f7f7;
}
table.tb-condensed > thead > tr > th,
table.tb-condensed > tbody > tr > th,
table.tb-condensed > tbody > tr > td {
    padding: 8px;
    font-size: 13px;
    text-align: center;
    letter-spacing: 0;
}
table.tb-condensed > thead > tr > th {
    background: #f2f2f2;
    padding: 10px 7px;
    border-color: #ccc;
    line-height: 1.2;
}
table.tb-condensed > tbody > tr > th {
    background: #fff;
}

/* CEO 인사말 (페이지) */
#greeting .image {
    padding: 0 30px;
}
#greeting .image p {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin-block: 10px;
}
#greeting .text {
    padding: 10px 0 0px 40px;
    word-break: keep-all;
}
#greeting .text h4 {
    margin: 5px 0 40px;
    font-size: 32px;
    font-weight: 300;
    color: #0076c3;
    letter-spacing: -0.06em;
}
#greeting .text p {
    margin: 0 0 28px;
    font-size: 15px;
    letter-spacing: -0.035em;
    line-height: 1.75;
    color: #484848;
}
#greeting .text p > strong {
    font-size: 17px;
}
#greeting .text > .from {
    font-size: 18px;
    letter-spacing: 0.1em;
    text-align: right;
}
#greeting .text > .from .name {
    padding-left: 6px;
    font-size: 24px;
    font-weight: 700;
    font-family: "Noto Serif KR", serif;
    color: #333;
}

/* 회사개요 (페이지) */
#summary table > tbody > tr > th,
#summary table > tbody > tr > td {
    padding: 20px;
}
#summary table > tbody > tr > th {
    width: 12%;
}
#summary table > tbody > tr > td {
    width: 38%;
    word-break: keep-all;
}
#summary table > tbody > tr > td ul > li {
    margin: 3px 0;
}
#summary .wrap-certifi {
    padding: 0 10px;
}
#summary .certifi {
    margin-bottom: 20px;
    padding: 0 10px;
}
#summary .wrap-certifi img {
    padding: 5px;
    border: 1px solid #ddd;
}

/* 주요연혁 (페이지) */
.wrap-history {
    position: relative;
}
.wrap-history::before {
    content: "";
    top: 20px;
    left: 22%;
    height: 99%;
    position: absolute;
    margin-left: -10px;
    border-left: 1px solid #ddd;
}
.history-block + .history-block {
    margin-top: 80px;
}
.history-block > .decade {
    float: left;
    width: 22%;
    position: relative;
}
.history-block > .decade h4 {
    margin: -15px 0 0 -30px;
    display: inline-block;
    font-size: 65px;
    font-weight: 900;
    color: #dbdee0;
    letter-spacing: 0;
    line-height: 1;
}
.history-block > .wrap-detail {
    width: 78%;
    display: inline-flex;
    flex-direction: column-reverse;
    padding: 5px 0 0 60px;
}
.history-block .detail {
    margin-top: 30px;
}
.history-block .detail:last-child {
    margin-top: 0px;
}
.history-block .detail > .year {
    float: left;
    width: 15%;
    position: relative;
    margin: 0;
    font-size: 28px;
    color: #006aad;
    font-weight: 600;
}
.history-block .detail > .year::before,
.history-block .detail > .year::after {
    content: "";
    position: absolute;
}
.history-block .detail > .year::before {
    top: 11px;
    left: -76px;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 3px solid #97ca4b;
    border-radius: 20px;
}
.history-block .detail > .year::after {
    top: 15px;
    left: -65px;
    width: 45px;
    height: 2px;
    border-bottom: 1px dotted #92c2e4;
}
.history-block .detail > ul {
    width: 85%;
    display: inline-block;
    margin-top: 5px;
}
.history-block .detail .month {
    float: left;
    width: 10%;
    margin: 2px 0 0;
    font-size: 16px;
    color: #333;
    letter-spacing: 0;
    font-weight: 600;
}
.history-block .detail .desc {
    width: 90%;
    display: inline-block;
}
.history-block .detail .desc > p {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.4em;
    color: #606060;
}
#history #row2 .table-responsive + h4 {
    margin-top: 40px;
}
#history table > thead > tr > th:nth-child(1) {
    width: 20%;
}
#history table > thead > tr > th:nth-child(2) {
    width: 39%;
}
#history table > thead > tr > th:nth-child(4) {
    width: 15%;
}

#history table > tbody > tr > td:nth-child(2) {
    text-align: left;
}
#history table > tbody > tr > td.text-center,
#history table > tbody > tr > td {
    text-align: center;
}

/* 오시는길 (페이지) */
#location .contact {
    width: 100%;
    display: inline-block;
    margin-top: 5px;
    padding: 20px 40px 10px;
    border: 5px solid #ececec;
}
#location .contact > p.addr {
    float: left;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.034em;
}
#location .contact > p.addr i {
    padding-right: 4px;
    color: #0f85d0;
}
#location .contact > p.tel {
    float: right;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
}
#location .contact > p.tel i {
    padding-right: 4px;
}

/* 송풍기 (페이지) */
#product1 .box-prod > a {
    width: 100%;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}
#product1 .box-prod > a img {
    border: 1px solid #d9d9d9;
    padding: 7px;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.05);
    background: #fff;
}
#product1 .box-prod > a:hover img {
    border-color: #006aad;
}
#product1 .box-prod h4 {
    margin: 30px 0 35px;
    font-size: 24px;
    letter-spacing: -0.05em;
    font-weight: 500;
    color: #2f2f2f;
}
#product1 .box-prod .more {
    margin: 0 -1px -1px;
    padding: 10px;
    font-size: 14px;
    background: #73b315;
    color: #fff;
    font-weight: 500;
    letter-spacing: -0.035em;
}
#product1 .box-prod > a:hover {
    border-color: #006aad;
}
#product1 .box-prod > a:hover .more {
    color: #fff;
    background: #006aad;
}

/* 제품소개 공통 스타일 */
.sub-nav {
    width: 100%;
    display: inline-block;
    margin-bottom: 64px;
    text-align: center;
}
.sub-nav ul li {
    display: inline-block;
    margin: 0 -3px;
}
.sub-nav ul li a {
    position: relative;
    font-size: 17px;
    color: #555;
    font-weight: 500;
    display: block;
    padding: 12px 15px;
    min-width: 150px;
    border: 1px solid #777;
    letter-spacing: -0.06em;
    background: #fff;
}
.sub-nav ul li a:hover,
.sub-nav ul li a:focus {
    color: #333;
    text-decoration: none;
    background: #f6f6f6;
}
.sub-nav ul li.active a {
    font-weight: 500;
    letter-spacing: -0.034em;
    background: #555;
    color: #fff;
    border-color: #555;
}
.sub-nav ul li.active a::after {
    content: "";
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: -1px;
}
.sub-nav ul li.active {
    border-color: #97ca4b;
}
.subPage[id^="product"] h3 > .eng {
    padding-left: 5px;
    font-size: 22px;
    letter-spacing: 0;
    color: #2b8fce;
    font-weight: 400;
    font-style: oblique;
}
.subPage[id^="product"] h3 + .p-sub {
    margin: -18px 0 25px 32px;
    font-size: 24px;
    font-weight: 500;
    color: #2b8fce;
}
.subPage[id^="product"] .wrap-prod {
    padding: 0;
}
.subPage[id^="product"] .wrap-prod .text {
    padding-right: 30px;
}
.subPage[id^="product"] .wrap-prod .text p {
    font-size: 16px;
    line-height: 1.75;
    color: #666;
}
.subPage[id^="product"] .wrap-prod .image img + img {
    margin-top: 15px;
}
.subPage[id^="product"] ul.list-prod > li {
    margin-bottom: 25px;
}
.subPage[id^="product"] ul.list-prod > li:first-child > p {
    font-size: 16px;
    letter-spacing: -0.0165em;
    line-height: 1.7;
    color: #666;
    margin-bottom: 35px;
}
.subPage[id^="product"] ul.list-prod > li h5 {
    float: left;
    width: 20%;
    margin: 0;
    padding: 10px 7px;
    font-size: 16px;
    line-height: 1.25;
    background: #0f79bb;
    color: #fff;
    text-align: center;
    border-radius: 0 20px 20px 0;
}
.subPage[id^="product"] ul.list-prod > li .detail {
    width: 80%;
    display: inline-block;
    padding: 2px 0 0 30px;
    /* border-top: 1px solid #e3e3e3; */
}
.subPage[id^="product"] .text-full > ul.list-prod > li h5 {
    width: 15%;
}
.subPage[id^="product"] .text-full > ul.list-prod > li .detail {
    width: 85%;
}

/* 송풍기 - 주문형 (페이지) */
#product1_03 #row2 .text-full img {
    margin-bottom: 50px;
}
#product1_03 #row2 .text-full .ast {
    color: #ff0000;
}
#product1_03 #row2 .text-full ul > li {
    margin-bottom: 0;
    font-size: 15px;
}
#product1_03 table.tb-spec > thead > tr > th {
    width: 65px;
}
#product1_03 table.tb-spec > thead > tr > th:first-child {
    width: 90px;
}
#product1_03 table.tb-spec > thead > tr > th:last-child {
    width: 140px;
}
#product1_03 table.tb-spec + p,
#product1_03 table.tb-spec + ul > li {
    font-size: 15px;
}

/* 공조기 (페이지) */
#product2 #row2 h4 {
    margin: 0 0 22px;
    font-size: 26px;
    text-align: center;
    color: #006aad;
    letter-spacing: -0.055em;
    font-weight: 600;
}
#product2 #row2 img {
    padding: 15px;
    border: 1px solid #ddd;
}

/* 집진기 (페이지) */
#product3 .wrap-prod .image > img {
    max-height: 500px;
    border: 1px solid #d9d9d9;
    padding: 7px;
    box-shadow: 3px 3px 0 #eee;
}

/* A/S신청 (페이지) */
#apply_as .info {
    padding-left: 25px;
}
#apply_as .info > h4 {
    margin: 0;
    padding: 20px 0px;
    font-size: 20px;
    border-top: 2px solid #97ca4b;
    font-weight: 600;
    letter-spacing: 0;
    text-align: center;
}
#apply_as .info > ul {
    padding: 40px 38px 30px;
    word-break: keep-all;
    border: 1px solid #ddd;
    /* box-shadow: 2px 2px 4px rgba(0,0,0,0.05); */
}
#apply_as .info > ul li {
    font-size: 15px;
}
#apply_as .info > ul li h5 {
    margin: 0 0 9px;
    font-size: 17px;
    font-weight: 500;
    color: #222;
    letter-spacing: -0.05em;
}
#apply_as .info > ul li + li h5 {
    margin-top: 20px;
}
#apply_as .info > ul li h5 i {
    color: #97ca4b;
    width: 18px;
    text-align: left;
}
#apply_as .info > ul li p {
    margin: 0;
    padding-left: 23px;
    letter-spacing: -0.02em;
    font-size: 15px;
    color: #666;
}

/* 게시판, 주문폼 공통 스타일 */
.board_wrapper {
    margin-top: 0;
    margin-bottom: 0;
}
.search_wrap {
    margin-bottom: 0;
}
.board_wrapper .table.table_default {
    border-top: 2px solid #006aad;
}
.board_wrapper .table.table_default thead th {
    background: #f8f8f8;
    border-bottom: 1px solid #d3d3d3;
    padding: 13px 15px;
    font-weight: 500;
}
.board_wrapper .table.table_default tr td {
    padding: 13px 15px;
    border-color: #e6e6e6;
}
.table.table_default tbody .subject a {
    color: #333;
    font-weight: 500;
}
.table.table_default tbody .subject a:hover {
    text-decoration: underline;
}
.table.table_default tbody .subject .badge {
    margin-right: 8px;
    padding: 6px 7px 5px;
    font-weight: 500;
    color: #fff;
    background: #777;
    border-radius: 0;
}
.table.table_default tr td.writer,
.table.table_default tr td.regdate,
.table.table_default tr td.hits {
    color: #777;
}
.board_data_view {
    border-top: 2px solid #006aad;
}
.board_data_view .header_wrap {
    padding: 42px 10px;
    background: #f8f8f8;
    border-bottom: 1px solid #d3d3d3;
}
.board_data_view .header_wrap .title {
    font-size: 30px;
    letter-spacing: -0.05em;
    line-height: 1.3em;
}
.board_data_view .header_wrap .info {
    margin-top: 8px;
}
/* 게시글 작성 */
.board_wrapper .table.board_write_table tbody tr th,
.board_wrapper .table.board_write_table tbody tr td {
    font-size: 15px;
    letter-spacing: -0.033em;
    border-color: #e6e6e6;
}
.board_wrapper .table.board_write_table tbody tr th {
    width: 200px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    background: #f8f8f8;
}

/* 주문폼 */
.board_wrapper .table.board_write_table tbody tr td .form-control {
    width: 350px;
}
.board_wrapper .table.board_write_table tbody tr th > span.required_text {
    color: #1a99ea;
    font-weight: 600;
}
.board_wrapper .table.board_write_table tbody tr td .text-muted {
    font-size: 14px;
}
.board_wrapper .table.board_write_table .checkbox a {
    color: #1e7fc5;
    text-decoration: underline;
}
.form-control:not([readonly]):focus {
    border-color: #999;
}

/*************** 서브 끝 *****************/

/*********** 모바일 최적화 시작 ***********/
@media (max-width: 1199px) {
    /* Small·Medium·Large devices */
}
@media (max-width: 767px) {
    /* Small devices (col-xs-*) 모바일 */
    #site {
        padding-top: 60px;
    }
    .navbar-inverse {
        position: fixed;
        border-bottom: 1px solid #ddd;
    }
    .navbar-inverse .navbar-brand {
        margin: 17px 0 0 15px !important;
    }
    .navbar-inverse .navbar-brand img {
        height: 28px;
    }
    .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;
    }
    .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 {
        color: #fff;
        background: #006aad;
    }
    .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;
    }
    .carousel-caption {
        right: 5%;
        left: 5%;
        word-break: keep-all;
    }
    #main1 {
        padding: 60px 0;
    }
    .mainPage h3 {
        margin: 0 0 35px;
        font-size: 35px;
    }
    #main1.mainPage h3::after {
        margin: 23px auto 0;
    }
    .mainPage div + div .main-link {
        margin-top: 30px;
    }
    .mainPage .main-link h4 {
        margin: 30px 0px 17px;
        font-size: 24px;
    }
    .mainPage .main-link .more {
        width: 120px;
        padding: 8px 6px;
        font-size: 12px;
    }
    #section_9f6140 {
        padding: 60px 0;
    }
    .board_box_list ul {
        min-height: 66px;
    }
    #main2 {
        width: 100%;
        padding: 0 15px;
    }
    .mainPage .banner > a {
        padding: 20px;
    }
    .mainPage .banner > a::after {
        top: 14px;
        width: 35px;
        height: 35px;
        font-size: 13px;
        line-height: 36px;
    }
    .mainPage .banner h4 {
        font-size: 20px;
    }
    #site footer .footer-info {
        padding: 30px 0;
    }
    #site footer .footer-info ul li:first-child {
        font-size: 12px;
    }
    #site footer .footer-info ul li {
        font-size: 12px;
        line-height: 20px;
    }
    #site footer .footer-info ul li.copy {
        float: left;
        padding-top: 5px;
        font-size: 10px;
    }

    .subPage > .pageTop {
        height: 160px;
        background-position: 70% 50%;
    }
    .subPage > .pageTop .wrap-title {
        padding: 52px 0 0;
    }
    .subPage > .pageTop .wrap-title > h2 {
        font-size: 38px;
    }
    .subPage > .pageTop .wrap-title > p {
        margin: 8px 0 0;
        font-size: 12px;
    }
    .subPage .breadcrumb {
        top: 15px;
        font-size: 10px;
    }
    .subPage .link {
        margin-top: 15px;
        background: transparent;
    }
    .subPage .link ul > li > a {
        font-size: 15px;
        color: #333;
        line-height: 38px;
        border: 1px solid #ddd;
    }
    .subPage .link ul > li.active > a {
        color: #fff;
        background: linear-gradient(to right, #24387d, #0075bd);
        border-color: #0075bd;
    }
    .subPage .link ul > li > a::after {
        display: none;
    }
    .subPage .link ul > li:not(.active) > a:hover {
        background: #0075bd;
        border-color: #0075bd;
    }
    .subPage > .contents {
        padding: 50px 0 60px;
    }
    .title-lv-1 {
        margin: 0 0 50px;
        font-size: 35px;
    }
    #history .title-lv-1 + h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    #history .title-lv-1 + h3 + p {
        font-size: 14px;
    }
    .title-lv-3 {
        margin: 0 0 22px;
        font-size: 25px;
    }
    .title-lv-3::before {
        top: 6px;
    }
    .space-bottom {
        margin-bottom: 40px;
    }

    #greeting .image {
        padding: 0 15px;
    }
    #greeting .text {
        padding: 20px 15px 0 15px;
    }
    #greeting .text h4 {
        margin: 15px 0 30px;
        font-size: 30px;
        line-height: 1.2em;
    }
    #greeting .text p {
        margin: 0 0 18px;
    }
    #summary table > tbody > tr > th,
    #summary table > tbody > tr > td {
        width: 100%;
        display: inline-block;
        padding: 15px;
        font-size: 14px;
        text-align: center;
    }
    .wrap-history::before {
        top: 80px;
        left: 15px;
        height: 97.8%;
    }
    .history-block + .history-block {
        margin-top: 35px;
    }
    .history-block > .decade {
        width: 100%;
    }
    .history-block > .decade h4 {
        margin: 0 0 20px 20px;
        font-size: 50px;
    }
    .history-block > .wrap-detail {
        width: 99%;
        padding: 0 0 0 20px;
    }
    .history-block .detail + .detail {
        margin-top: 18px;
    }
    .history-block .detail > .year {
        width: 100%;
        margin: 0 0 10px 20px;
    }
    .history-block .detail > .year::before {
        top: 10px;
        left: -40px;
    }
    .history-block .detail > .year::after {
        left: -28px;
        width: 20px;
    }
    .history-block .detail .month {
        width: 100%;
        margin: 0 0 5px;
    }
    .history-block .detail .desc {
        width: 100%;
    }
    .history-block .detail .desc > p {
        font-size: 14px;
        word-break: keep-all;
    }
    #location iframe {
        height: 300px;
    }
    #location .contact {
        padding: 20px;
    }
    #location .contact > p.addr,
    #location .contact > p.tel {
        float: none;
        font-size: 17px;
    }
    #location .contact > p:last-child {
        margin: 0;
    }
    #product1 .box-prod:nth-child(odd) {
        padding-right: 5px;
    }
    #product1 .box-prod:nth-child(even) {
        padding-left: 5px;
    }
    #product1 .box-prod:nth-child(n + 3) {
        margin-top: 30px;
    }
    #product1 .box-prod h4 {
        margin: 15px 0 20px;
        font-size: 20px;
    }
    #product1 .box-prod .more {
        padding: 8px;
        font-size: 12px;
    }
    .sub-nav {
        margin-bottom: 44px;
    }
    .sub-nav ul li {
        float: left;
        width: 25%;
        margin: 0;
    }
    .sub-nav ul li a {
        min-width: auto;
        padding: 8px 12px;
        font-size: 14px;
        border-left: 0;
    }
    .sub-nav ul li:first-child a {
        border-left: 1px solid #555;
    }
    .subPage[id^="product"] h3 > .eng {
        padding-left: 3px;
        font-size: 19px;
    }
    .subPage[id^="product"] .wrap-prod .text {
        padding-right: 15px;
    }
    .subPage[id^="product"] ul.list-prod > li h5 {
        width: 100% !important;
        margin: 0 0 15px;
        padding: 8px 7px;
        font-size: 15px;
    }
    .subPage[id^="product"] ul.list-prod > li .detail {
        width: 100% !important;
        padding: 0;
    }
    .subPage[id^="product"] .wrap-prod .text p {
        font-size: 15px;
        word-break: keep-all;
    }
    .subPage[id^="product"] .wrap-prod .image > div + div {
        margin-top: 15px;
    }
    #product1_01 .wrap-prod .image {
        padding: 0;
    }
    #product1_03 #row2 .text-full {
        margin-top: 35px;
    }
    #product1_03 #row2 .text-full ul > li {
        font-size: 14px;
    }
    #product2 #row2 h4 {
        margin: 0 0 18px;
        font-size: 23px;
    }
    #product2 #row2 img {
        padding: 5px;
    }
    #product3 .wrap-prod .image > img {
        margin-top: 15px;
    }
    #apply_as .board_wrapper .text-center {
        margin-top: 20px;
    }
    #apply_as .info {
        padding: 50px 15px 0;
    }
    #apply_as .info > ul {
        padding: 30px;
    }

    .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: 14px;
    }
    .table.table_default tbody .subject .badge {
        margin-right: 5px;
        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: 9px;
    }
    .board_wrapper .text-center .btn#write_btn,
    .member_wrapper .text-center .btn#join_btn {
        margin-top: 20px;
    }
    .member_wrapper {
        padding-top: 60px;
        padding-bottom: 100px;
    }

    .board_data_view .header_wrap {
        padding: 30px 10px;
    }
    .board_data_view .header_wrap .title {
        font-size: 25px;
    }
}
@media (min-width: 768px) {
    /* Medium·Large·Extra large devices */
}
@media (min-width: 768px) and (max-width: 1199px) {
    /* Medium·Large devices */
    .navbar-inverse .navbar-nav > li > a {
        padding: 30px 25px;
    }
    #mainCarousel .carousel-inner .item {
        height: 500px;
    }
    .carousel-caption {
        right: 10%;
        left: 10%;
        word-break: keep-all;
    }
    #mainCarousel .carousel-caption h1 {
        font-size: 58px;
    }
    .history-block > .decade h4 {
        font-size: 55px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    /* Medium devices (col-sm-*) */
}
@media (min-width: 992px) and (max-width: 1199px) {
    /* Large devices (col-md-*) */
}
@media (min-width: 1200px) {
    /* Extra large devices (col-lg-*) */
    #product1_03 #row2 .text-full {
        margin-top: -100px;
    }
}
/************ 모바일 최적화 끝 ************/
