@charset "utf-8";

* {
    word-break: keep-all;
}

#site {
    padding-top: 85px;
    font-family: 'Roboto', 'notokr', sans-serif;
}

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

ol,
ul,
li,
dl {
    list-style: none;
    list-style-position: inside;
    margin: 0;
    padding: 0;
}

span[class^="material-icons"] {
    vertical-align: middle;
    line-height: 1;
    user-select: none;
}

br {
    visibility: visible;
    opacity: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    position: relative;
    line-height: 1;
    letter-spacing: -.025em;
}

a {
    color: #408cff;
    text-decoration: none;
}

a:hover {
    color: #408cff;
    text-decoration: none;
}

.li-round li,
.li-dash li {
    position: relative;
    padding-left: 15px;
}

.li-round li::before,
.li-dash li::before {
    position: absolute;
    left: 0;
}

.li-dash li::before {
    content: '-';
}

.li-round li::before {
    content: '·';
}

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

/* 상단 메뉴 */
.navbar-header,
.navbar>.container {
    display: flex;
}

.navbar-header {
    justify-content: center;
    align-items: center;
}

.navbar>.container {
    justify-content: space-between;
}

.navbar>.container::before,
.navbar>.container::after {
    display: none;
}

.navbar-inverse {
    width: 100%;
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    padding: 0px 0px;
    box-shadow: 5px 0 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    border: 0;
    /* height: 85px; */
}

.navbar-inverse .navbar-right {
    margin-right: 0 !important;
}

.navbar-brand {
    margin-left: 0px !important;
    padding: 0;
    height: auto;
    /* width: 230px; */
}

/* nav 메뉴 속성 */
.navbar-inverse .navbar-nav>li>a {
    position: relative;
    z-index: 10;
    padding: 33px 30px;
    font-size: 18px;
    font-weight: 500;
    color: #222;
    letter-spacing: -0.035em;
}

/* nav 메뉴 클릭 및 후버 시 */
.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>li>a:focus,
.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: #081ea3;
    font-weight: 500;
}

/* 드롭다운 배경 */
.navbar-inverse .navbar-nav .dropdown-menu {
    background: rgba(0, 0, 0, .8);
}

/* 드롭다운 메뉴 기본 */
.navbar-inverse .navbar-nav .dropdown-menu>li>a {
    color: #666;
}

/* 드롭다운 메뉴 후버 */
.navbar-inverse .navbar-nav .dropdown-menu>li>a:hover {
    background: #eee;
    color: #444;
}

@media (min-width: 768px) {

    /* .open>.dropdown-menu{
        display: flex;
        flex-wrap: wrap;
    } */
    /* pc nav 드롭다운 */
    .navbar-inverse .navbar-nav .dropdown-menu {
        left: 50%;
        right: auto;
        transform: translate(-50%, 0);
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        border: 0;
        padding: 10px;
        text-align: center;
    }

    /* pc nav 드롭다운 메뉴*/
    .navbar-inverse .navbar-nav .dropdown-menu>li {
        flex: 1;

    }

    .navbar-inverse .navbar-nav .dropdown-menu>li+li {
        margin-top: 3px;
    }

    .navbar-inverse .navbar-nav .dropdown-menu>li>a {
        font-size: 14px;
        color: #ddd;
        line-height: 1.45;
        padding: 6px 20px;
    }

    /* pc nav 드롭다운 후버 */
    .navbar-inverse .navbar-nav .dropdown-menu>li>a:hover,
    .navbar-inverse .navbar-nav .dropdown-menu>li>a:focus {
        background: transparent;
        color: #fff;
        font-weight: 400;
        text-decoration: underline;
    }
}

@media (max-width: 992px) {
    .navbar>.container {
        width: 100%;
    }
}

@media (max-width: 767px) {
    #site {
        padding-top: 70px;
    }

    .navbar-header {
        justify-content: space-between;
        height: 70px;
        border-bottom: 1px solid #ddd;
    }

    .navbar-collapse {
        padding: 0;
        width: 100vw;
    }

    .navbar-nav {
        margin: 0;
        width: 100%;
    }

    .navbar-header::before,
    .navbar-header::after {
        display: none;
    }

    .navbar>.container {
        display: block;
    }

    .navbar-brand {
        order: 1;
        width: 190px;
        margin: 0 0 0 15px !important;
    }

    .navbar-inverse .navbar-toggle {
        order: 2;
        border: 0;
        padding: 9px 0;
        margin: 0 15px 0 0;
    }

    .navbar-inverse .navbar-toggle .icon-bar {
        background-color: #666;
        transition: ease-in-out .15s all;
        opacity: 1;
        position: relative;
    }

    .navbar-inverse .navbar-toggle:hover,
    .navbar-inverse .navbar-toggle:focus {
        background: none;
        border-color: #444;
    }

    .navbar-inverse .navbar-toggle:hover .icon-bar,
    .navbar-inverse .navbar-toggle:focus .icon-bar {
        background-color: #444;
    }

    .navbar-inverse .navbar-collapse,
    .navbar-inverse .navbar-form {
        border-color: transparent;
    }

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

    .navbar-inverse .navbar-nav>li>a {
        padding: 15px;
    }

    .dropdown-menu {
        padding: 0;
    }

    .navbar-nav .open .dropdown-menu .dropdown-header,
    .navbar-nav .open .dropdown-menu>li>a {
        padding: 15px 15px 15px 25px;
    }

    /* 드롭다운 배경 */
    /* .navbar-inverse .navbar-nav .dropdown-menu{
        background: #444;
    } */

    /* 드롭다운 폰트 */
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
        color: #fff;
    }

    /* 드롭다운 메뉴 클릭시 */
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:active {
        color: #fff;
        background: #081ea3;
    }
}

/* =================================== main carousel =================================== */

/* 슬라이드 */

#mainCarousel .carousel-inner .item {
    /* height: calc(100vh - 100px); */
    height: 630px;
}

#mainCarousel .carousel-inner .item::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: .55;
}

.carousel-caption {
    top: 50%;
}

.carousel-caption h1 {
    text-align: center;
    position: relative;
    font-size: 55px;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -0.05em;
    margin-top: -10px;
}

.carousel-caption h1 strong {
    position: relative;
}

.carousel-caption p {
    font-size: 20px;
    line-height: 1.55;
    color: #fff;
    font-weight: 300;
    letter-spacing: -0.035em;
}

.carousel-control {
    display: none;
}

.carousel-indicators li,
.carousel-indicators li.active {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    margin: 0 5px;
}

.carousel-indicators {
    bottom: 40px;
}

.carousel-indicators li {
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, .1);
    transition: ease-in-out .15s all;
}

.carousel-indicators li.active {
    background: #fff;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, .0);
}

.carousel-caption {
    text-shadow: 0px 0px 10px rgba(0, 0, 0, .0);
}

/* =================================== mainpage =================================== */
.mainpage section {
    padding: 100px 0 90px;
}

.mainpage section.se02 {
    background: #f4f4f4;
}

.mainpage section.se03 {
    padding: 65px 0;
    position: relative;
    background: url(/public/img/main/m-ct01.jpg) no-repeat center / cover;
}

.mainpage section.se03::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(25, 45, 158, 0.95);
}

.mainpage h3 {
    margin-bottom: 25px;
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 55px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.045em;
    line-height: 0.9;
}

.mainpage h3 span {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0;
    color: #555;
}

.main-product-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.main-product-wrap .inner {
    position: relative;
    display: block;
    text-align: center;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, .15);
}

.main-product-wrap .img-box {
    overflow: hidden;
}

.main-product-wrap .inner,
.main-product-wrap p,
.main-product-wrap img,
.main-product-wrap .img-box {
    transition: .35s;
}

.main-product-wrap p {
    padding: 15px 10px;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 500;
    color: #222;
    letter-spacing: -0.035em;
}

@media (hover: hover) {
    .main-product-wrap .inner:hover {
        box-shadow: 0px 3px 15px rgba(0, 0, 0, .25);
    }

    .main-product-wrap .inner:hover p {
        color: #fff;
        background: #243491;
    }

    .main-product-wrap .inner:hover img {
        transform: scale(1.15);
    }
}


.main-product-wrap .col-20 {
    width: 20%;
    float: left;
    padding: 0 10px;
}

.main-product-wrap .slick-list {
    height: 320px !important;
}

.main-product-wrap .slick-slide a {
    outline: none;
}

.main-product-wrap .slick-dots {
    bottom: -30px;
}

.main-product-wrap .slick-dots li {
    margin: 0;
}

.main-product-wrap .next-btn,
.main-product-wrap .prev-btn {
    z-index: 5;
    border: 0;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    transform: translateY(-50%);
    color: #444;
    background: transparent;
    font-size: 18px;
}

.main-product-wrap .next-btn {
    right: -30px;
}

.main-product-wrap .prev-btn {
    left: -30px;
}

.main-product-wrap .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #081ea3 !important;
}

.main-product-wrap .slick-dots button::before {
    color: #231916 !important;
}

.main-bbs-wrap .bbs-example {
    text-align: center;
}

.main-bbs-wrap .page-header {
    display: none;
}

.main-bbs-wrap .board_box_blog2 {
    margin-bottom: 50px !important;
}

.main-bbs-wrap .board_box_blog2 .inner {
    border: 1px solid #fff;
}

.main-bbs-wrap .board_box_blog2 .inner:hover {
    border: 1px solid #243491;
}

.main-bbs-wrap .board_box_blog2 .inner .top a .thumb {
    height: 400px;
}

.main-bbs-wrap .board_box_blog2 .inner .bottom .title a {
    font-size: 17px;
}

.main-bbs-wrap .board_box_blog2 .inner .bottom {
    padding: 15px 10px;
    line-height: 1.45;
    font-weight: 500;
    text-align: center;
    color: #222;
    background: #fff;
    letter-spacing: -0.035em;
}

.more-btn {
    display: inline-block;
    font-size: 16px;
    border-radius: 50px;
    padding: 8px 25px 7px;
    font-weight: 600;
    color: #243491;
    border: 2px solid #243491;
}

.more-btn:hover {
    background: #243491;
    color: #fff;
}

.main-contact-wrap {
    position: relative;
    z-index: 100;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.main-contact-wrap>div {
    padding: 0;
}

.main-contact-wrap>div+div {
    border-left: 1px solid #eee;
}

.main-contact-wrap h3,
.main-contact-wrap p,
.main-contact-wrap li {
    color: #fff;
}

.main-contact-wrap h3 {
    text-align: center;
    margin-bottom: 20px;
}

.main-contact-wrap p {
    text-align: center;
    font-size: 22px;
    font-weight: 300;
    color: #eee;
}

.li-contact {
    padding-left: 120px;
}

.li-contact li {
    font-size: 24px;
}

.li-contact li+li {
    margin-top: 10px;
}

.li-contact span {
    margin-right: 10px;
}

/* =================================== sub common =================================== */
/* sub-header */

.breadcrumb {
    padding: 0 0 0 5px;
    margin: 0;
    font-size: 13px;
    background: none;
}

.breadcrumb>li.active,
.breadcrumb>li {
    color: rgba(255, 255, 255, 0.9);
}


.sub-header-wrap.visual01 {
    background-image: url(/public/img/sub/sub-top01.jpg);
}

.sub-header-wrap.visual02 {
    background-image: url(/public/img/sub/sub-top02.jpg);
}

.sub-header-wrap.visual03 {
    background-image: url(/public/img/sub/sub-top03.jpg);
}

.sub-header-wrap.visual04 {
    background-image: url(/public/img/sub/sub-top04.jpg);
}

.sub-header-wrap {
    position: relative;
    display: flex;
    flex-flow: wrap;
    height: 230px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.sub-header-wrap::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .35);
}

.sub-title {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    position: relative;
    z-index: 2;
}

.sub-header-wrap h2 {
    width: 100%;
    font-size: 41px;
    color: #fff;
    font-weight: 500;
    margin: 3px 0 12px;
    letter-spacing: -0.045em;
}

/* snb-default */
.snb {
    margin-top: 60px;
    position: relative;
    z-index: 10;
}

.snb ul,
.snb li>a {
    display: flex;
    flex-wrap: wrap;
}

.snb ul {
    margin: 0 -7.5px;
    justify-content: center;
}

.snb li {
    width: calc(20% - 10px);
    margin-right: 10px;
    margin-bottom: 10px;
}

.snb li:nth-child(14) {
    display: none;
}

div[id^="about"] .snb li:nth-child(2n),
div[id^="product"] .snb li:nth-child(5n) {
    margin-right: 0px;
}

.snb li>a {
    color: #808080;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 55px;
    line-height: 1.25;
    font-size: 15px;
    text-align: center;
    border-radius: 5px;
    padding: 0 25px;
    border: 1px solid #dedede;
}

.snb li>a:hover {
    background: #fff;
}

.snb li.active a {
    position: relative;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    border-color: #081ea3;
    background: #1f2f91;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, .1);
}

/* subpage default */

.subpage-content section>.row {
    margin-bottom: 105px;
}

#form01 .subpage-content fieldset>.row {
    margin-bottom: 75px;
}

.subpage-content section>.row>.clearfix {
    margin-bottom: 40px;
}

/* .subpage-content section>.row:last-child {
    margin-bottom: 0;
    margin-top: 40px;
} */

.subpage-content section {
    padding: 70px 0 120px;
}



#about01 .subpage-content section {
    padding-bottom: 150px;
}

#about01 .subpage-content section {
    padding: 50px 0 120px;
}

#about02 .subpage-content section {
    padding: 50px 0 120px;
}

#product15 .subpage-content section,
#product08 .subpage-content section,
#product14 .subpage-content section {
    padding: 50px 0 120px;
}

#form01 .subpage-content section,
#example01 .subpage-content section {
    padding-top: 60px;
}

.subpage-content h3 {
    font-weight: 600;
    font-size: 45px;
    color: #222;
    margin: 75px 0 0;
    text-align: center;
    letter-spacing: -0.055em;
}

.subpage-content h3+.en {
    font-size: 22px;
    font-weight: 300;
    color: #555;
    margin-top: 10px;
    text-align: center;
}

.subpage-content h4 {
    font-weight: 600;
    font-size: 32px;
    color: #222;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e7e7e7;
    letter-spacing: -0.055em;
    padding-left: 37px;
    position: relative;
}

.subpage-content h4::before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(/public/img/sub/tit_.png);
    width: 31px;
    height: 50px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0px;
    top: -9px;
}

.subpage-content h4 small {
    display: none;
    font-size: 60%;
    margin-left: 5px;
    color: #868dbb;
}

.subpage-content h5 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;
    color: #081ea3;
    /* display: inline-block; */
    /* border-bottom: 2px solid #081ea3; */
}

.subpage-content h5 small.pull-right {
    margin-top: 7px;
    font-size: 70%;
}

.subpage-content p {
    font-size: 16px;
    line-height: 1.45;
    color: #333;
    background: none;
}

.subpage-content p.label {
    display: block;
    color: #222;
    text-align: center;
    font-size: 16px;
    padding: 0 !important;
    font-weight: 500;
    border-radius: 0;
    margin-top: 7px;
    white-space: inherit;
    /* margin: 7px 0 0px; */
    background: none !important;
}

.subpage-content p.label+p {
    margin-top: 5px;
    text-align: center;
}

.subpage-content p+img,
.subpage-content p+.img-wrap {
    margin-top: 20px;
}

.call-box {
    position: absolute;
    z-index: 100;
    top: 375px;
    left: 4%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: auto;
    height: 185px;
    padding: 0 30px;
    border: 1px solid #dedede;
    border-radius: 5px;
    background: #fff;
}

@media (max-width:1850px) {
    .call-box {
        left: 15px;
    }
}

@media (max-width:1650px) {
    .call-box {
        left: auto;
        top: 110px;
        right: 15px;
    }
}

.call-box h4 {
    display: inline-block;
    font-size: 15px;
    background: #16278f;
    padding: 10px 17.5px;
    color: #fff;
    border-radius: 50px;
    margin-bottom: 10px;
}

.call-box li+li {
    margin-top: 3px;
}

.call-box li:last-child {
    margin-top: 7px;
    font-size: 13px;
    color: #888;
}

.call-box .kakao{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 35px;
    padding: 3px 10px 0 0;
    border-radius: 50px;
    background: #ffe812;
    color: #000000;
    line-height: 1;
    font-size: 15px;
}

.call-box .kakao img{
    margin-right: 5px;
}

/* =================================== subpage =================================== */
/* 01 */
.sub-greet-wrap .top {
    text-align: center;
    font-size: 25px;
    color: #1c2b83;
    margin-bottom: 50px;
    position: relative;
    letter-spacing: -0.045em;
    line-height: 1.5;
    margin-top: -20px;
}

.sub-greet-wrap .top::before {
    content: '';
    display: block;
    position: absolute;
    width: 930px;
    height: 310px;
    background: #fff;
    /* z-index: -1; */
    top: 380px;
    left: 50%;
    transform: translateX(-50%);
}

.sub-greet-wrap .top+img {
    margin-bottom: -120px;
}

.sub-greet-wrap p {
    color: #000;
    font-size: 20px;
    text-align: center;
    width: 1000px;
    margin: 0 auto;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: -0.04em;
    line-height: 1.45;
}

.sub-greet-wrap .name {
    margin-bottom: 0;
    color: #333;
    font-weight: 600;
    font-size: 18px;
    margin-top: 40px;
}

/* 02 */
.subpage-content .info-product {
    margin: 40px 0 0px 0px;
    font-size: 18px;
    color: #333;
    line-height: 1.55;
    text-align: center;
    font-weight: 500;
}

.sub-top-wrap {
    margin: 0 -10px;
}

.sub-top-wrap>div {
    margin-top: 20px;
    padding: 0 10px;
}

.sub-top-wrap img {
    width: 100%;
}

.sub-top-wrap>.col-sm-12:first-child,
.sub-top-wrap>.col-sm-6:first-child,
.sub-top-wrap>.col-sm-6:first-child+.col-sm-6 {
    margin-top: 0;
}

.sub-map-wrap .root_daum_roughmap .wrap_map {
    height: 450px !important;
}

.sub-map-wrap .location-li {
    border-top: 2px solid #333;
    border-bottom: 1px solid #ddd;
    margin: 20px 0 0;
}

.sub-map-wrap .location-li li {
    border-bottom: 1px solid #e3e3e3;
    padding: 15px 10px;
    font-size: 16px;
    color: #555;
    letter-spacing: -0.03em;
}

.sub-map-wrap .location-li strong {
    display: inline-block;
    margin-right: auto;
    min-width: 130px;
    font-weight: 500;
    color: #122593;
    border-radius: 4px;
}

.sub-map-wrap .location-li span {
    margin-right: 10px;
    color: #081ea3;
    transform: translateY(-1px);
}

#product01 .col-sm-4 {
    padding: 10px 40px 10px;
}

@media(max-width:767px) {
    .sub-map-wrap .location-li span {
        display: block;
    }
}

.sub-product-wrap .img-product {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.sub-product-wrap .img-product>div {
    flex: 1;
}

.sub-product-wrap>.col-sm-12+.col-sm-12 {
    margin-top: 50px;
}

.sub-type-wrap img {
    padding: 25px;
}

.sub-type-wrap p.label {
    font-size: 18px;
}

.sub-con-wrap .li-row {
    margin-top: 7px;
    display: flex;
    justify-content: space-between;
}

.sub-con-wrap .li-row li {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.sub-con-wrap .li-row li:nth-of-type(1) {
    text-align: left;
}

.sub-con-wrap>div:first-child .li-row li:nth-of-type(2) {
    width: 80%;
}

.sub-con-wrap .li-row li:nth-of-type(3) {
    text-align: right;
}

.sub-con-wrap .col-sm-12+.col-sm-12 {
    margin-top: 15px;
}

.sub-process-wrap {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
}

.sub-process-wrap::before,
.sub-process-wrap::after {
    content: none;
}

.sub-process-wrap .col-sm-2 {
    width: 195px;
}

.sub-process-wrap .col-sm-3 {
    width: 267px;
}

.sub-process-wrap img {
    border-radius: 20px;
}

.sub-process-wrap div {
    position: relative;
}

.sub-process-wrap div::after {
    content: '\e5cc';
    display: block;
    position: absolute;
    top: 34%;
    right: -20px;
    color: #16278f;
    font-weight: 900;
    font-size: 30px;
    font-family: 'Material Icons';
}

.sub-process-wrap div:last-child::after {
    content: none;
}

/* 03 */

/* 04 */

/* 05 */

/* table */
.table-product {
    border-top: 1px solid #333;
    border-bottom: 1px solid #ddd;
}

.table-product thead tr th,
.table-product tbody tr td {
    border-color: #ddd;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    vertical-align: middle;
    border-bottom: 1px;
}

.table-product thead th {
    border-bottom: 0;
    background: #f0f2fb;
}

.table-product tbody tr td {
    border-color: #ddd;
}

.ol-num {
    padding-left: 3px;
}

.ol-num li {
    font-size: 17px;
    position: relative;
    padding-left: 39px;
}

.ol-num li::before {
    content: '';
    display: block;
    position: absolute;
    width: 0px;
    height: 0px;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #ffffff;
    transform: rotate(180deg);
    top: 17px;
    left: 16px;
    z-index: 1;
}

.ol-num li+li {
    margin-top: 18px;
}

.ol-num li span {
    position: absolute;
    left: 0;
    top: 0px;
    font-weight: 500;
    color: #fff;
    /* border-radius: 50%; */
    background: #16278f;
    width: 25px;
    height: 26px;
    padding: 4px 5px;
    font-size: 14px;
    margin-top: -1px;
}

/* bbs-area */


/* =================================== footer =================================== */
#site footer {
    margin-top: 0px;
    padding: 45px 0;
    background-color: #333;
}

.footer-logo {
    width: 13%;
}

.footer-logo h4 {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

.footer-info {
    font-size: 14px;
    margin: 0 0 10px;
    line-height: 1.6;
    margin-bottom: 7px;
}

.footer-info li {
    display: inline-block;
    margin-right: 10px;
    color: #c3c3c3;
}

.footer-info strong {
    color: #ddd;
}

.copyright {
    font-size: 13px;
    color: #737373;
    margin: 0;
}

/* mobile*/
@media(max-width:767px) {
    .footer-logo {
        width: 100%;
    }

    .footer-info {
        margin-top: 15px;
    }

    .footer-info li {
        display: block;
        line-height: 1.35;
        margin-bottom: 7px;
    }

    .footer-info li+li {
        border: 0;
        margin-left: 0;
        padding-left: 0;
    }
}

/* =================================== map, board, bbs =================================== */
/* =================================== map, board, bbs =================================== */

/* bbs common */
.bbs-area h4 {
    font-weight: 500;
    color: #222;
    font-size: 20px;
    border-bottom: 0;
    padding-bottom: 0px;
    font-size: 17px;
}

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

.bbs-area h4::before,
.bbs-area h4::after {
    content: none !important;
}

.bbs-area .title h4 {
    text-align: center;
}

.bbs-area .reply_wrap h4 {
    text-align: left;
}

.board_wrapper .text-center .btn.btn-lg,
.board_wrapper .text-center .btn+.btn {
    min-width: 200px;
}

.btn.btn-primary {
    font-family: 'notokr';
    background-color: #081ea3;
    border: 1px solid #081ea3;
    color: #fff;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background-color: #0e1b66;
    border-color: #0e1b66;
}

/* member */

.member_wrapper {
    max-width: 1140px;
    margin: 0 auto;
}

.member_wrapper h1 {
    margin-top: 0;
}

.member_wrapper .btn {
    transition: all ease 0.3s
}

.member_wrapper .table tbody tr th {
    background-color: rgba(0, 0, 0, 0.03);
}

.member_wrapper .table tbody tr th span {
    color: #5dae57
}

.table_blog2 dd .inner {
    /* border: none; */
}

.table_video dd .inner .bottom .title a:hover,
.table_blog2 dd .inner .title a:focus,
.table_blog2 dd .inner .bottom .title a:hover,
.table_blog2 dd .inner .title a:focus {
    color: #081ea3;
}

.table_video dd .inner:hover,
.table_blog2 dd .inner:hover {
    border-color: #46529d;
}

.table.table_default tbody tr th.num {
    font-weight: normal;
}

.table.table_default tbody .subject a {
    font-size: 17px;
    color: #333;
}

.table.table_default tr th,
.table.table_default tr td {
    font-size: 15px;
    border-bottom: 1px solid #ddd;
}

.table.table_default thead th {
    background: #fff;
    border-bottom: 1px solid #ccc;
    font-weight: 500;
}

.table_default {
    border-top: 1px solid #333;
}


.table.table_default tr td {
    color: #777;
}

.text-muted {
    font-size: 14px !important;
    margin-top: 8px !important;
}

input.form-control {
    font-family: 'notokr', sans-serif;
}

/* wrapper */
.board_wrapper {
    margin-top: 0;
    font-family: 'notokr';
    margin-bottom: 0;
}

.search_wrap {
    margin-bottom: 20px;
}

.board_wrapper .text-center .btn {
    padding: 15px 0 !important;
}

.board_wrapper .table.board_write_table .input-group.input-group-big,
.board_wrapper .table.board_write_table .form-control.form-control-big,
.board_wrapper .table.board_write_table tbody tr td .btn,
.board_wrapper .table.board_write_table tbody tr td .form-control {
    width: 50%;
}

.board_wrapper .table.board_write_table .files .fileInput .file_add {
    padding: 6px 7px 5px;
}

.board_wrapper .table.board_write_table .files+.sumChk {
    padding-bottom: 0;
    margin-bottom: 0;
    border: 0;
}

.board_wrapper .table.board_write_table tbody tr th {
    font-size: 14px;
}

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

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

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

.board_box_blog2 .inner .bottom {
    padding: 12px 10px;
}

.table_video dd .inner .bottom,
.table_blog2 dd .inner .bottom {
    padding: 18px 14px;
}

.board_box_blog2 .inner .bottom .title {
    font-size: 25px;
    letter-spacing: -0.02em;
}

.board_box_blog2 .inner .bottom .title a {
    font-size: 14px;
}

.board_data_view {
    border-top: 1px solid #333;
}

.board_data_view .header_wrap {
    border-bottom: 1px solid #ddd;
    padding: 40px 0;
}

.board_data_view .contents_wrap p {
    font-size: 17px;
}

.board_box_blog2 .inner .bottom .info {
    display: none;
}

.board_box_blog2 .inner .top a .thumb {
    height: 180px;
}


.checkbox label,
.radio label {
    font-size: 15px;
    letter-spacing: -0.06em;
}

.custom_checkbox+span a {
    font-weight: 500;
}

.privacy_body {
    font-size: 16px;
    line-height: 1.6em;
    padding: 0 100px;
}

.badge {
    padding: 6px 6px;
    border-radius: 2px;
    font-weight: 400;
    font-size: 13px;
    margin-right: 3px;
}

/* map */

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

.root_daum_roughmap .map_border {
    display: none !important;
}

/* google */
.sub-map-wrap iframe {
    width: 100%;
    height: 350px;
}

/* =================================== bbs css end =================================== */

/* =================================== mobile =================================== */
/* @media(max-width:767px) {
    .container {
        padding: 0 15px !important;
    }
} */

/* mainpage */
@media(max-width:767px) {

    /* carousel */
    #mainCarousel .carousel-inner .item {
        height: 400px;
    }

    .carousel-caption {
        left: 5%;
        right: 5%;
        top: 50%;
    }

    .carousel-control {
        font-size: 14px;
    }

    .carousel-indicators li,
    .carousel-indicators li.active {
        width: 10px;
        height: 10px;
    }

    .carousel-caption h1 {
        font-size: 40px;
    }

    .carousel-caption p {
        font-size: 16px;
    }

    .mainpage section {
        padding: 75px 0 60px;
    }

    .mainpage h3 {
        font-size: 38px;
        margin-bottom: 35px;
    }

    .main-product-wrap .slick-list {
        height: auto !important;
    }

    .main-product-wrap .slick-dots {
        bottom: -25px;
    }

    .mainpage .board_box_blog2>.row>.col-xs-6 {
        width: 50%;
        margin-bottom: 15px;
    }

    .mainpage .main-bbs-wrap .board_box_blog2 .inner .top a .thumb {
        height: 200px;
    }

    .main-bbs-wrap .board_box_blog2 .inner .bottom {
        padding: 5px 10px;
    }

    .main-bbs-wrap .board_box_blog2 {
        margin-bottom: 20px !important;
    }

    .main-contact-wrap>div+div {
        border-left: 0;
        width: 100%;
        margin-top: 25px;
    }

    .main-contact-wrap p {
        line-height: 1.35;
    }

    .li-contact {
        padding-left: 0px;
        border: 0;
        width: 100%;
        text-align: center;
    }

    .li-contact li {
        font-size: 22px;
    }
    .bbs-area h4{
        padding-left: 0;
        font-size: 22px;
    }
}

/* subpage */
@media(max-width:767px) {
    #about01 .subpage-content section {
        padding-bottom: 75px;
    }

    #about02 .subpage-content section {
        padding-bottom: 75px;
    }

    .subpage-content section {
        padding: 50px 0 75px !important;
    }

    .subpage-content section>.row {
        margin-bottom: 50px;
    }

    .subpage-content h3 {
        font-size: 36px;
        line-height: 1.25;
        margin-top: 50px;
    }

    .subpage-content h3+.en {
        font-size: 20px;
    }

    .call-box {
        position: relative;
        top: 0;
        left: 0;
        margin: 15px 15px 65px;
        height: 170px;
    }

    .snb {
        margin-top: 15px;
        border: 0;
    }

    .snb ul {
        margin: 0;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .snb li {
        margin: 0;
        /* flex: auto; */
        width: calc(50% - 7.5px);
        margin-bottom: 15px;
    }

    .snb li a {
        padding: 0 10px;
        font-size: 14px;
        letter-spacing: -0.035em;
    }

    .sub-header-wrap {
        height: 200px;
    }

    .sub-header-wrap h2 {
        text-align: center;
        margin-bottom: 0;
        margin-top: 15px;
    }

    .subpage-content h4 {
        font-size: 28px;
    }

    .subpage-content h4::before {
        top: -10px;
    }

    .breadcrumb {
        margin: 0;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .sub-greet-wrap p {
        width: auto;
        font-size: 18px;
    }

    .sub-greet-wrap .top {
        font-size: 20px;
    }

    .sub-greet-wrap .top strong {
        display: inline-block;
        font-size: 22px;
        margin-bottom: 20px;
    }

    .sub-greet-wrap .top+img {
        margin-top: 0;
        margin-bottom: 40px;
    }

    .sub-greet-wrap .top::before {
        content: none;
    }

    /* .sub-map-wrap .li-map {
        margin-top: 10px;
    }

    .sub-map-wrap .li-map li:first-child {
        width: 100%;
        text-align: center;
    }

    .sub-map-wrap .li-map li {
        width: 50%;
        height: 55px;
        padding: 0;
        justify-content: center;
    }

    .sub-map-wrap .li-map li span {
        position: static;
        margin-right: 10px;
        transform: translateY(-1px);
    } */
    .sub-map-wrap .location-li li {
        display: flex;
        padding: 15px 7px;
    }

    .sub-map-wrap .location-li strong {
        margin-right: inherit;
        min-width: 100px;
    }

    .sub-map-wrap .location-li span {
        margin-right: 7px;
    }

    .sub-map-wrap .root_daum_roughmap .wrap_map {
        height: 350px !important;
    }

    .subpage-content .info-product {
        font-size: 16px;
        margin-top: 30px;
    }

    .sub-product-wrap .img-product>div {
        width: 50%;
        flex: auto;
        margin-bottom: 15px;
    }

    #product01 .col-sm-4 {
        padding: 0 15px;
        width: 33%;
        float: left;
    }

    #product01 .img-wrap {
        margin-top: 15px;
    }

    .subpage-content h5 small.pull-right {
        display: block;
        float: inherit !important;
    }

    .sub-top-wrap {
        margin: 0 -5px;
    }

    .sub-top-wrap>div {
        margin-top: 10px !important;
        padding: 0 5px;
    }

    .sub-top-wrap .col-sm-3,
    .sub-top-wrap .col-sm-6 {
        width: 50%;
        float: left;
    }

    .sub-top-wrap .col-sm-4 {
        width: 33.3%;
        float: left;
    }

    .ol-num li {
        font-size: 15px;
    }

    .sub-process-wrap {
        overflow-x: scroll;
    }

    .sub-process-wrap .col-sm-2 p.label {
        width: 165px;
    }

    .sub-process-wrap .col-sm-3 p.label {
        width: 237px;
    }

    .sub-process-wrap div::after {
        right: -15px;
    }

    .sub-product-wrap .clearfix {
        display: none;
    }

    .sub-product-wrap > div+div {
        margin-top: 30px;
    }

    .sub-product-wrap .col-sm-3 {
        width: 50%;
        float: left;
        margin-top: 0;
        margin-bottom: 25px;
    }

    #product13 .sub-product-wrap,
    #product12 .sub-product-wrap {
        margin-left: -10px;
        margin-right: -10px;
    }

    #product13 .sub-product-wrap .col-sm-3,
    #product12 .sub-product-wrap .col-sm-3 {
        padding: 0 10px;
    }

    .sub-type-wrap .clearfix {
        display: none;
    }

    .sub-type-wrap>div {
        width: 50%;
        float: left;
    }

    .sub-bbs-wrap .col-xs-6 {
        width: 100%;
    }

    #form01 .board_wrapper .text-center {
        display: flex;
    }

    #form01 .board_wrapper .text-center>* {
        flex: 1;
        min-width: auto;
    }

    .board_wrapper .table.board_write_table .input-group.input-group-big,
    .board_wrapper .table.board_write_table .form-control.form-control-big,
    .board_wrapper .table.board_write_table tbody tr td .btn,
    .board_wrapper .table.board_write_table tbody tr td .form-control {
        width: 100% !important;
    }
}

/* bbs, etc */
@media(max-width:767px) {

    .table_default colgroup,
    .table_default .num,
    .table_default .regdate,
    .table_default .hits,
    .table_default .writer {
        display: none;
    }

    .table_default .subject {
        width: 100%;
    }


    .root_daum_roughmap .wrap_map {
        height: 350px !important;
    }

    .sub-board-wrap .table_blog dd {
        width: 100%;
        padding: 0;
    }

    .member_wrapper #join_form .table .input-group.input-group-big,
    .member_wrapper #join_form .table .form-control.form-control-big {
        width: 100%;
    }

    .board_wrapper .table.board_write_table .input-group.input-group-big,
    .board_wrapper .table.board_write_table .form-control.form-control-big {
        width: auto;
    }

    .search_wrap {
        margin-bottom: 0 !important;
    }

    .privacy_body {
        padding: 0 15px;
    }

    .member_wrapper {
        padding-bottom: 100px;
    }

    .member_wrapper h1 {
        font-size: 30px;
    }

    .bbs-area .board_wrapper .text-center {
        padding-top: 30px;
        display: flex;
        width: 100%;
    }

    .bbs-area .board_wrapper .text-center .btn.btn-lg,
    .bbs-area .board_wrapper .text-center .btn+.btn {
        flex: 1;
        min-width: inherit;
    }

    .form-horizontal .form-group {
        margin-bottom: 20px !important;
    }

    .member_wrapper {
        padding-top: 50px;
    }

    .member_wrapper .login_extra ul {
        width: 100%;
        display: flex;
        justify-content: space-around;
    }

    .member_wrapper .login_extra ul li+li::before {
        content: none;
    }
}