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

@import url("https://fonts.googleapis.com/css2?family=Moul&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ewert&display=swap");

.navbar-brand .moul {
    /* font-family: 'Moul', serif; */
    display: block;
    line-height: 1;
    margin-bottom: 1px;
    color: #000;
}
.navbar-brand .moul .big {
    color: #1f497d;
    font-size: 24px;
    font-family: "Moul", serif;
}
.navbar-brand .moul .big .color-r {
    color: #c00000;
}
.navbar-brand .moul .small {
    color: #222;
    font-weight: 400;
    font-size: 13px;
    font-family: "Moul", serif;
}
.navbar-brand .ewart {
    font-family: "Malgun Gothic", serif;
    color: #000;
    font-size: 12px;
    display: block;
    font-weight: 600;
    line-height: 1.2;
}

* {
    word-break: keep-all;
}

#site {
    padding-top: 90px;
    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;
    font-size: 16px;
}

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

p {
    font-size: 16px;
}

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: "";
    display: inline-block;
    position: absolute;
    top: 8px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    color: #e60013;
    background: #e60013;
}

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

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

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

/* nav 메뉴 속성 */
.navbar-inverse .navbar-nav > li > a {
    position: relative;
    z-index: 10;
    padding: 35px 0px;
    margin: 0 20px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

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

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

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

/* 드롭다운 메뉴 후버 */
.navbar-inverse .navbar-nav .dropdown-menu > li > a:hover {
    background: #e60013;
    color: #fff;
    text-shadow: 0 0 0.5px #fff;
}

@media (min-width: 768px) {
    /* pc nav 드롭다운 */
    .navbar-inverse .navbar-nav .dropdown-menu {
        left: 50%;
        right: auto;
        transform: translate(-50%, 0);
        border-radius: 0.25rem;
        border: 0;
        padding: 0;
        text-align: center;
    }

    /* pc nav 드롭다운 메뉴*/
    .navbar-inverse .navbar-nav .dropdown-menu > li > a {
        font-size: 15px;
        padding: 12px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.21);
    }

    .navbar-inverse .navbar-nav .dropdown-menu > li:last-child > a {
        border-bottom: 0;
    }

    .navbar-inverse .navbar-nav > li > a::after {
        content: "";
        position: absolute;
        display: block;
        width: 0;
        height: 2px;
        left: 0;
        bottom: 30px;
        background: #e60013;
        z-index: 1050;
        opacity: 0;
        transition: all ease 0.3s;
    }

    .navbar-inverse .navbar-nav > li > a:hover::after,
    .navbar-inverse .navbar-nav > li > a:focus::after,
    .navbar-inverse .navbar-nav .dropdown.open .dropdown-toggle::after,
    .navbar-inverse .navbar-nav .dropdown.open:hover .dropdown-toggle::after,
    .navbar-inverse .navbar-nav .dropdown.open:focus .dropdown-toggle::after {
        width: 100%;
        opacity: 1;
    }
}

@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: 150px;
        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 0.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;
        margin: 0;
    }

    .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: #111;
    }
    /* 드롭다운 메뉴 클릭시 */
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:active {
        color: #fff;
        background: #e60013;
    }
}

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

/* 슬라이드 */

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

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

.carousel-caption {
    top: 49%;
}

.carousel-caption h1 {
    position: relative;
    font-size: 80px;
    font-weight: 600;
    margin-bottom: 55px;
    letter-spacing: 0.02em;
}
.carousel-caption h1 small {
    color: #fff;
}
.carousel-caption h1::before {
    content: "";
    display: block;
    position: absolute;
    width: 45px;
    height: 2px;
    background: rgba(255, 255, 255, 0.55);
    top: 100px;
    left: 0;
    letter-spacing: 0.01em;
}

.carousel-caption p {
    font-size: 21px;
    line-height: 1.45;
    font-weight: 300;
    padding-top: 0px;
    letter-spacing: 0.01em;
}

.carousel-control {
    display: flex;
    align-items: center;
    opacity: 1;
    width: 4%;
}

.carousel-control.right,
.carousel-control.left {
    background: transparent;
}

.carousel-control.right {
    justify-content: flex-end;
}

.carousel-control.right span {
    margin-right: 0;
}

.carousel-control.left {
    justify-content: flex-start;
}

.carousel-control.left span {
    margin-left: 0;
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 100px;
    font-size: 28px;
    left: auto;
    right: auto;
    top: auto;
    position: relative;
    background: #333;
}

.glyphicon.glyphicon-chevron-right::before,
.glyphicon.glyphicon-chevron-left::before {
    color: #fff;
}

.glyphicon.glyphicon-chevron-right::before {
    content: "\e5e1";
    font-family: "Material Icons";
}

.glyphicon.glyphicon-chevron-left::before {
    content: "\e2ea";
    font-family: "Material Icons";
}

.carousel-indicators {
    bottom: 80px;
}

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

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

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

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

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

.mainpage section.se02 {
    background: #f5f5f5;
    padding: 55px 0;
}

.mainpage section.se02 h2 {
    font-size: 22px;
    text-align: left;
    margin-bottom: 10px;
}

.mainpage h2 {
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 30px;
}

.mainpage h3 {
    color: #e60013;
    font-size: 28px;
}

.main-request-wrap {
    margin-top: -55px;
    position: relative;
    /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.3); */
    /* background: rgba(0, 0, 0, 0.75); */
}

.main-request-wrap a {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 55px;
    padding: 0 25px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e60013+0,9c000d+100 */
    background: #e60013;
    /* Old browsers */
    background: -moz-linear-gradient(-45deg, #e60013 0%, #9c000d 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #e60013 0%, #9c000d 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #e60013 0%, #9c000d 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e60013', endColorstr='#9c000d', GradientType=1);
    /* IE6-9 fallback on horizontal gradient */
}

.main-request-wrap h3 {
    font-size: 18px;
    padding-right: 19px;
    margin-right: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
}

.main-request-wrap .row p {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.03em;
    color: #fff;
}

.main-request-wrap .arrow {
    position: absolute;
    top: 13px;
    right: 20px;
    color: #e60013;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    font-size: 20px;
    opacity: 0.5;
}
.main-request-wrap a:hover {
    background: #e60013;
}
.main-request-wrap a:hover .arrow {
    opacity: 1;
}
.main-service-wrap {
    position: absolute;
    width: 100%;
    bottom: 120px;
    display: none;
}

.main-service-wrap .inner {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 60px;
    padding: 0 15px;
    border-radius: 10px;
    color: #111;
    background: #fff;
}

.main-service-wrap .inner:hover {
    background: #e60013;
    color: #fff;
}

.main-service-wrap .inner::after {
    content: "\eaaa";
    display: block;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 15px;
    font-weight: 400;
    font-size: 22px;
    font-family: "Material Icons Outlined";
    color: #888;
}

.main-service-wrap .inner:hover::after {
    font-family: "Material Icons";
    color: #fff;
}

.main-service-wrap .inner span {
    margin-right: 15px;
}

.main-service-wrap .inner h5 {
    font-size: 16px;
}

.main-product-wrap .inner,
.main-product-wrap .inner img,
.main-product-wrap .inner text {
    transition: 0.5s;
}

.main-product-wrap .inner {
    overflow: hidden;
    position: relative;
    display: block;
    border: 3px solid #fff;
}

.main-product-wrap .inner:hover {
    border-color: #e60013;
}

.main-product-wrap .inner .scale {
    position: relative;
    z-index: -1;
}

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

.main-product-wrap .inner + img {
    border: 3px solid #fff;
    margin-top: 15px;
}

.main-product-wrap .inner .text {
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 0 15px 0 20px;
    color: #fff;
    background: rgba(0, 0, 0, 0.75);
}

.main-product-wrap .inner:hover .text {
    background: #e60013;
}

.main-product-wrap .inner .text::after {
    content: "\e145";
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-weight: 900;
    font-size: 18px;
    font-family: "Material Icons";
    color: #000;
    opacity: 0.5;
    width: 25px;
    height: 25px;
    padding-top: 2.5px;
    padding-left: 1px;
    border-radius: 50%;
    background: #fff;
}

.main-product-wrap .inner:hover .text::after {
    opacity: 1;
    color: #e60013;
}

.main-product-wrap h5 {
    font-size: 18px;
}

.main-major-wrap {
    position: relative;
    display: flex !important;
    margin: 0;
}

.main-major-wrap + h2 {
    margin-top: 30px;
}

.main-major-wrap > .slick-list {
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
    background: #fff;
}

.main-major-wrap div[class^="col-"] {
    position: relative;
    padding: 0;
    border: 1px solid #ccc;
    border-left: 0;
}

.main-major-wrap img {
    padding: 10px;
    background: #fff;
    width: 160px;
    margin: 0 auto;
}

.main-major-wrap button {
    position: absolute;
    z-index: 10;
    padding: 0;
    border: 0;
    top: 50%;
    height: 40px;
    transform: translateY(-50%);
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.main-major-wrap button.prev-btn {
    left: -35px;
}

.main-major-wrap button.next-btn {
    right: -35px;
}

.main-major-wrap button span {
    font-size: 20px;
}

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

.breadcrumb {
    position: absolute;
    left: 50%;
    top: 0;
    margin-top: 130px;
    margin-bottom: 0;
    background: none;
    transform: translateX(-50%);
    color: #ddd;
}

#business01 .sub-header-wrap .breadcrumb,
#inquiry01 .sub-header-wrap .breadcrumb {
    margin-top: 160px;
}

.breadcrumb > li:nth-child(2) {
    text-transform: uppercase;
}

.breadcrumb > li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.69);
}

.breadcrumb > li.active {
    color: rgba(255, 255, 255, 0.89);
    font-weight: 500;
}

.sub-header-wrap {
    height: 300px;
    position: relative;
    display: flex;
    flex-flow: wrap;
    background: url(/public/img/sub/sub-top01.jpg) no-repeat center / cover;
}

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

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

.sub-header-wrap h2 {
    margin-bottom: 74px;
    font-size: 40px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.03em;
}

#business01 .sub-header-wrap h2,
#inquiry01 .sub-header-wrap h2 {
    margin-top: -20px;
    margin-bottom: 0;
}

/* snb-default */
.snb {
    position: relative;
    margin-top: -66px;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

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

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

.snb li {
    margin: 0 20px;
}

.snb li > a {
    color: #ddd;
    align-items: center;
    width: 100%;
    height: 65px;
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.03em;
}

.snb li.active a {
    position: relative;
    font-weight: 600;
    color: #ff969d;
}

.snb li a:focus {
    text-decoration: none;
}

.snb li.active a::after {
    content: "";
    position: absolute;
    display: block;
    background: #ff969d;
    width: 100%;
    height: 3px;
    top: -1px;
}

/* subpage default */

.subpage-content section > .row {
    margin-bottom: 110px;
}
.subpage-content section > .row .col-sm-12 + .col-sm-12 {
    margin-top: 55px;
}
.subpage-content section .sub-icon-wrap {
    margin-bottom: 35px;
    padding: 0 5px;
    margin-top: 15px;
}

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

.subpage-content section > .row:last-child::after {
    border: 0;
}

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

.subpage-content h3 {
    font-weight: 700;
    font-size: 44px;
    text-align: center;
    color: #222;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: uppercase;
    margin: 90px 0 0px;
    position: relative;
}

.subpage-content h3::before {
    content: "";
    display: block;
    position: absolute;
    border-left: 6px dotted #d6d6d6;
    transform: translateX(-50%);
    height: 34px;
    left: 50%;
    top: 77px;
}

.subpage-content h4 {
    font-weight: 600;
    font-size: 34px;
    text-align: center;
    line-height: 1.5;
    color: #eb1e2d;
    margin-bottom: 32px;
    letter-spacing: 0em;
    /* margin-top: -20px; */
}

.subpage-content h5 {
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    margin-bottom: 25px;
}

.row li,
.row p {
    font-size: 17px;
    line-height: 1.35;
    color: #444;
}

.row p + p {
    margin-top: 20px;
}

.row li + li {
    margin-top: 15px;
}

.row p.caption {
    text-align: center;
    font-size: 15px;
    margin-top: 10px;
    font-weight: 500;
    color: #333;
}

/* =================================== subpage =================================== */

/* 01 */
.sub-greet-wrap .top {
    font-size: 26px;
    color: #888;
    margin-bottom: 40px;
}

.sub-greet-wrap p {
    color: #444;
    margin-bottom: 25px;
    font-weight: 400;
    text-align: center;
    line-height: 1.5em;
    font-size: 17px;
}

.sub-greet-wrap .name {
    margin-bottom: 0;
    font-weight: 600;
}

.sub-greet-wrap .text {
    position: relative;
    z-index: 100;
    background: #fff;
    margin: -150px 100px 0;
    padding: 60px 70px 0;
}
.sub-greet-wrap .img-box {
    position: relative;
}
.sub-greet-wrap .caption-overlay {
    position: absolute;
    right: 20px;
    top: 20px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
}
.sub-greet-wrap .caption-overlay li {
    color: #fff;
    font-size: 14px;
    opacity: .8;
}
.sub-greet-wrap .caption-overlay li + li{
    margin-top: 4px;
}
.sub-major-wrap,
.sub-major-wrap > div,
.sub-major-wrap > div:last-child {
    border-color: #ccc;
    border: 1px solid #ccc;
}

.sub-major-wrap {
    margin: 0;
    border-right: 0;
    border-bottom: 0;
}

.sub-major-wrap > div {
    width: 20%;
    padding: 15px 30px;
    border-top: 0;
    border-left: 0;
}

.sub-major-wrap > div:last-child {
    border-top: 0;
    border-left: 0;
}

#product01 .subpage-content section .sub-icon-wrap .col-sm-3 {
    padding: 0 10px;
}

#product02 .subpage-content section .sub-icon-wrap .col-sm-4,
#product03 .subpage-content section .sub-icon-wrap .col-sm-4 {
    padding: 0 10px;
}

/* 02 */
.sub-cert-wrap {
    display: flex;
    margin: 0 -10px;
}

.sub-cert-wrap > div[class^="col-"] {
    padding: 0 10px;
}

.sub-cert-wrap img {
    padding: 5px;
    border: 1px solid #ccc;
}

/* 03 */

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

.sub-img-wrap div[class^="col-"] {
    padding: 0 10px 20px;
}
.sub-img-wrap div[class^="col-"] img {
    width: 100%;
}
#business01 .sub-img-wrap div[class^="col-"] img {
    width: auto;
}
#product03 .subpage-content section > .row .col-sm-6 {
    padding: 0 10px;
}

#product03 .col-sm-6.last-col-6 {
    margin-top: 20px;
}
.sub-img-wrap.center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.sub-img-wrap div.clearfix {
    margin-bottom: 20px;
}

.sub-img-wrap .thumb-top {
    margin-bottom: 20px;
}

.sub-img-wrap img + img {
    margin-top: 30px;
}
.sub-img-wrap ul {
    margin-top: 20px;
}
.sub-img-wrap li {
    font-size: 15px;
}
.sub-img-wrap li + li {
    margin-top: 5px;
}
.sub-img-wrap .img-caption {
    position: absolute;
    left: 10px;
    bottom: 20px;
    display: inline-block;
    background: rgba(0, 0, 0, 0.63);
    color: #fff;
    font-weight: 600;
    height: 35px;
    font-size: 14px;
    padding: 10px 16px;
}
.sub-img-wrap .img-caption + .img-caption {
    bottom: 35px;
}
.sub-img-wrap .img {
    position: relative;
}
.sub-img-wrap .img .img-caption {
    left: 0;
}
.sub-icon-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.sub-icon-wrap .clearfix {
    width: 100%;
    margin-bottom: 20px;
}

.sub-icon-wrap .inner {
    height: 100%;
    padding: 40px 35px;
    border: 1px solid #edabb0;
    /* border-top: 2px solid #e60013; */
    color: #555;
    min-height: 190px;
    position: relative;
    background: #fffdfd;
}

.sub-icon-wrap .inner h5 {
    display: block;
    text-transform: uppercase;
    color: #eb1e2d;
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.36;
    font-weight: 600;
    padding-right: 40px;
    text-align: left;
}

#product01 .sub-icon-wrap .inner {
    min-height: 170px;
}

.sub-icon-wrap .inner p {
    color: #555;
    font-size: 14px;
}

.sub-icon-wrap .inner i {
    color: #fcedee;
    /* margin-bottom: 25px; */
    font-size: 56px;
    /* float: right; */
    /* margin-top: 10px; */
    position: absolute;
    right: 32px;
    top: 32px;
}

#product01 .sub-icon-wrap .inner i {
    font-size: 48px;
}

#product03 .col-sm-6 img {
    border: 1px solid #ddd;
}

/* 04 */

/* 05 */

/* REQUEST A QUOTE */
.sub-inquiry-wrap {
    position: relative;
    padding: 80px;
    text-align: center;
    background: url(/public/img/sub/inquiry-wrap-bg.jpg) no-repeat 50% 50% / cover;
}
.sub-inquiry-wrap::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    background: #fff;
    opacity: 0.3;
}
.sub-inquiry-wrap .text {
    position: relative;
    padding: 75px 60px;
    background: rgba(255, 255, 255, 0.85);
}
.sub-inquiry-wrap p {
    color: #444;
    font-weight: 500;
    line-height: 1.5em;
    font-size: 20px;
}
.sub-inquiry-wrap p.email {
    display: inline-block;
    margin: 30px 0;
    padding: 6px 28px 6px 0;
    background: #fff;
    border: 3px solid #eb1e2d;
}
.sub-inquiry-wrap p.email .tit {
    margin-right: 20px;
    padding: 13px 22px 12px;
    color: #fff;
    font-size: 80%;
    font-weight: 700;
    background: #eb1e2d;
}
.sub-inquiry-wrap p > a[href^="mailto"] {
    display: inline-block;
    
    font-weight: 400;
    color: #eb1e2d;
}
.sub-inquiry-wrap p > a[href^="mailto"] + a[href^="mailto"]{
    margin-left: 20px;
}
/* table */
.sub-table-wrap {
    margin-top: 30px;
}

.sub-table-wrap:first-child {
    margin-top: 0;
}

.sub-table-wrap .table-style {
    border-top: 2px solid #e60013;
    border-bottom: 1px solid #ccc;
    margin-top: 0;
}

.sub-table-wrap .table-style th,
.sub-table-wrap .table-style td {
    border-color: #ddd;
    text-align: center;
    padding: 17px;
    font-size: 15px;
    vertical-align: middle;
}

.sub-table-wrap .table-style thead th {
    border-bottom: 0;
    background: #f3f3f3;
    color: #111;
}

.sub-table-wrap .table-style tbody th {
    background: #efefef;
}

.board_wrapper .table.board_write_table {
    margin-top: 30px;
}

/* bbs-area */

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

.footer-logo img {
    width: 150px;
}

.footer-info {
    text-align: center;
}

.footer-info ul {
    margin: 0 0 4px;
    line-height: 1.5;
    text-align: left;
}

.footer-info ul li {
    font-size: 14px;
    color: #ddd;
    display: inline;
    margin-right: 10px;
}

footer .copyright {
    font-size: 14px;
    color: #888;
    margin: 0;
    text-align: left;
}

/* mobile*/
@media (max-width: 767px) {
    #site footer {
        padding: 20px 0 95px;
    }
    .footer-info {
        margin-top: 15px;
    }
    .footer-info ul {
        text-align: center;
    }

    .footer-info li {
        display: block !important;
        line-height: 1.25;
        margin-bottom: 5px;
    }

    .footer-info li + li {
        border: 0;
        margin-top: 0;
        margin-left: 0;
        padding-left: 0;
    }
    footer .copyright {
        text-align: center;
        font-size: 13px;
    }
}

#scrolltop {
    position: fixed;
    z-index: 1000;
    right: 0px;
    bottom: 50px;
    display: none;
    font-size: 18px;
    text-align: center;
    width: 50px;
    height: 50px;
    color: #fff;
    background: #e60013;
    /* border: 2px solid #222; */
}

html.explorer #scrolltop {
    right: 15px;
}

#scrolltop .inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

#scrolltop .inner i {
    font-size: 30px;
}

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

/* bbs common */
.bbs-area h4 {
    font-weight: 500;
    color: #222;
}

.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: #e60013;
    border: 1px solid #e60013;
    color: #fff;
}

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

.alert-info {
    color: #222;
    background-color: #f5f5f5;
    border-color: #ccc;
}

/* 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.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;
    margin-bottom: 0;
    font-family: "notokr";
}

#form_history_list .board_wrapper {
    margin-top: 70px;
}

.board_wrapper .table.board_write_table tbody tr th > span.required_text {
    color: #e60013;
}

.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: -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 {
    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 =================================== */

/* mainpage */
@media (max-width: 767px) {
    #scrolltop {
        bottom: 40px;
    }
    /* carousel */
    #mainCarousel .carousel-inner .item {
        height: 400px;
    }
    .carousel-indicators {
        bottom: 20px;
    }
    .carousel-caption {
        left: 5%;
        right: 5%;
        top: 50%;
    }

    .carousel-control {
        display: none;
    }

    .carousel-indicators li,
    .carousel-indicators li.active {
        width: 10px;
        height: 10px;
    }
    .carousel-caption {
        text-align: center;
    }
    .carousel-caption h1 {
        font-size: 48px;
    }
    .carousel-caption h1::before {
        top: 75px;
        left: 50%;
        transform: translateX(-50%);
    }
    .carousel-caption p {
        font-size: 18px;
    }
    .mainpage section {
        padding: 75px 0;
    }
    .mainpage h2 {
        font-size: 32px;
    }
    .main-major-wrap button {
        display: none !important;
    }
    .main-request-wrap {
        padding: 0;
        position: relative;
        margin: 0;
    }
    .main-request-wrap .col-sm-12 {
        padding: 0;
    }
    .main-request-wrap a {
        flex-wrap: wrap;
        align-content: center;
        height: 70px;
        padding: 0 20px;
    }
    .main-request-wrap h3 {
        margin-right: 0;
        padding-right: 0;
        border: 0;
        font-size: 17px;
        margin-bottom: 5px;
    }
    .main-request-wrap .row p {
        font-size: 16px;
    }
    .main-request-wrap .arrow {
        top: 50%;
        transform: translateY(-50%);
    }
    .main-product-wrap > div + div {
        margin-top: 50px;
    }
    .mainpage section.se02 h2 {
        text-align: center;
    }
}

/* subpage */
@media (max-width: 767px) {
    .snb {
        margin-top: 15px;
        border: 0;
    }

    .snb ul {
        flex-wrap: wrap;
    }

    .snb li {
        margin: 0;
        flex: auto;
        width: 100%;
    }
    .snb li + li {
        margin-top: 3px;
    }
    .snb li > a {
        color: #666;
        background: #eee;
        height: 50px;
        text-align: center;
        justify-content: center;
    }
    .snb li.active a {
        color: #fff;
        background: #e60013;
    }
    .snb li.active a::after {
        content: none;
    }
    .sub-title {
        flex-wrap: wrap;
        align-content: center;
    }
    .sub-header-wrap {
        height: 200px;
    }
    .sub-header-wrap h2 {
        margin-bottom: 0;
        margin-top: 15px;
        font-size: 30px;
    }
    .breadcrumb {
        position: relative;
        left: inherit;
        transform: translateX(0);
        margin: 0;
        width: 100%;
        text-align: center;
    }

    #business01 .sub-header-wrap h2,
    #inquiry01 .sub-header-wrap h2 {
        margin-top: 15px;
    }
    #business01 .sub-header-wrap .breadcrumb,
    #inquiry01 .sub-header-wrap .breadcrumb {
        margin-top: 0;
    }
    .subpage-content section .sub-icon-wrap .col-sm-4,
    .subpage-content section .sub-icon-wrap .col-sm-3 {
        width: 100%;
        margin-bottom: 15px;
    }
    .sub-icon-wrap .inner {
        min-height: auto !important;
        width: 100%;
        padding: 20px 30px;
    }
    .sub-icon-wrap .inner h5 {
        padding-right: 0;
        text-align: left;
    }
    .subpage-content section {
        padding: 50px 0 75px;
    }
    .subpage-content h3 {
        font-size: 36px;
        margin-top: 60px;
    }
    .subpage-content h4 {
        font-size: 26px;
    }
    .subpage-content h3::before {
        display: none;
    }
    .subpage-content section > .row:last-child {
        margin-bottom: 0;
    }
    .subpage-content section > .row {
        margin-bottom: 50px;
    }
    .sub-greet-wrap .text {
        margin: 30px 0 0;
        padding: 0;
    }

    .sub-map-wrap .li-map {
        margin-top: 10px;
    }
    .sub-major-wrap > div {
        width: 50%;
        float: left;
        padding: 15px 15px;
    }
    .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-cert-wrap {
        flex-wrap: wrap;
    }
    .sub-cert-wrap > div[class^="col-"] {
        width: 50%;
        float: left;
        margin-bottom: 25px;
    }
    .sub-img-wrap {
        margin: 0 -5px;
    }
    .sub-img-wrap div[class^="col-"] {
        width: 100%;
        padding: 0 5px !important;
        margin-bottom: 10px;
        float: left;
    }
    .sub-img-wrap div.col-sm-6 {
        width: 50%;
    }
    .sub-img-wrap div.col-sm-3 {
        width: 33%;
    }
    #business01 .sub-img-wrap div.col-sm-3 {
        width: 100%;
    }
    .sub-img-wrap ul {
        margin-bottom: 30px;
    }
    .sub-img-wrap div[class^="col-"] img {
        width: 100%;
    }
    .sub-img-wrap .img-caption {
        left: 5px;
    }
    .sub-inquiry-wrap {
        padding: 20px;
    }
    .sub-inquiry-wrap .text {
        padding: 30px 20px;
    }
    .sub-inquiry-wrap p {
        line-height: 1.35em;
        font-size: 18px;
    }
    .sub-inquiry-wrap p.email {
        margin: 16px 0;
        padding: 0 0 10px;
    }
    .sub-inquiry-wrap p.email .tit {
        display: block;
        width: 100%;
        margin: 0 0 10px;
        padding: 5px;
    }
    .sub-inquiry-wrap p > a[href^="mailto"] {
        padding: 0 10px;
    }
        .sub-inquiry-wrap p > a[href^="mailto"] + a[href^="mailto"]{
margin-left: 0;}
}

/* bbs, etc */
@media (max-width: 767px) {
    .board_wrapper .table.board_write_table {
        margin-top: 0;
    }
    .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%;
    }
    .board_wrapper .table.board_write_table .input-group.input-group-big,
    .board_wrapper .table.board_write_table .form-control.form-control-big {
        width: 100%;
    }
    .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%;
    }

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