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

* {
    word-break: keep-all;
}

#site {
    padding-top: 159px;
    font-family: 'Open Sans', 'notokr', sans-serif;
}

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


/*=================================== reset =================================== */

img {
    flex-shrink: 0;
}

ol,
ul,
li,
dl {
    /* margin: 0; */
    padding-left: 0;
    list-style: none;
    list-style-position: inside;
    font-weight: normal;
    position: static;
    overflow: visible;
    line-height: normal;
    border: none;
    width: auto;
    width: auto;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
dt {
    position: relative;
    font-weight: normal;
    position: static;
    overflow: visible;
    line-height: normal;
    border: none;
    width: auto;
    width: auto;
}

a,
a:hover {
    text-decoration: none;
}

button {
    border-radius: 0;
    background: transparent;
    border: 1px solid #444;
}

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

.internet.explorer span[class^="material-icons"] {
    transform: translateY(5px);
}

br {
    visibility: visible;
    opacity: 0;
}

/*=================================== common =================================== */
[class$="-dash"]>*:not(dt) {
    position: relative;
    padding-left: 15px;
}

[class$="-dash"]>*:not(dt)::before {
    position: absolute;
    left: 0;
}

[class$="-dash"]>*:not(dt)::before {
    content: '-';
}

/* =================================== navbar =================================== */

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

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

.navbar-header {
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.navbar>.container {
    width: 100%;
    max-width: none;
    flex-direction: column;
    align-items: center;
    padding: 25px 0 0;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 9px -4px rgb(0 0 0 / 20%);
}


@media (max-width:1610px) {
    .navbar>.container {
        /* padding: 0 15px 0 25px; */
    }
}

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

#gnbauth i {
    display: none;
}

.navbar-inverse {
    transition: .3s;
    width: 100%;
    background: #fff;
    position: fixed;
    left: 0;
    top: 0;
    padding: 0px 0px;
    box-shadow: none;
    margin-bottom: 0;
    border: 0
}

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

/* nav 메뉴 속성 */
.navbar-inverse .navbar-nav>li {
    flex: 1;
    width: calc(100% / 7);
}


.navbar-inverse .navbar-nav>li>a {
    font-weight: 500;
    color: #111;
    letter-spacing: -0.045em;
    font-size: 14.5px;
    border-right: 1px solid #e5e5e5;
    line-height: 1.2;
}

.navbar-inverse .navbar-nav>li>a span {
    display: block;
    width: 100%;
    font-size: 10px;
    letter-spacing: 0;
    color: #999;
    font-weight: 400;
}

/* 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: #d11e2e !important;
    border-color: #e5e5e5
}

/* dropdown-menu 배경 */
.navbar-inverse .navbar-nav .dropdown-menu {
    background: #231f20;
}

/* dropdown-menu 메뉴 기본 */
.navbar-inverse .navbar-nav .dropdown-menu>li>a {
    color: #777;
}

/* dropdown-menu 메뉴 후버 */
.navbar-inverse .navbar-nav .dropdown-menu>li>a:hover {
    color: #d11e2e;
    background: rgba(0, 0, 0, 0);
    font-weight: 600;
}

@media (min-width: 768px) {
    .navbar-brand {
        margin-top: 0;
    }

    .navbar-inverse.before .navbar-nav>li>a {
        color: #fff;
    }

    .navbar-inverse.after .navbar-nav>li>a {
        height: 90px;
    }

    /* .navbar-inverse.after {
        background: rgba(255, 255, 255, 1);
        border-bottom: 1px solid #eee;
    } */

    /* .navbar-inverse.after .navbar-nav .dropdown.open:hover .dropdown-toggle,
    .navbar-inverse.after .navbar-nav .dropdown.open:focus .dropdown-toggle {
        color: #222;
    } */

    .navbar-inverse .navbar-right {
        margin-right: 0px !important;
        display: flex;
        width: 100%;
        max-width: 1140px;
        border-left: 1px solid #e5e5e5;
    }

    .navbar-inverse .navbar-collapse,
    .navbar-inverse .navbar-form {
        width: 100%;
        display: flex !important;
        justify-content: center;
        text-align: center;
        border-top: 1px solid #e5e5e5;
    }

    .navbar-inverse .navbar-nav>li>a {
        transition: color .3s;
        position: relative;
        z-index: 10;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        text-align: left;
        height: 60px;
        padding: 0px 30px;
    }

    /* pc nav 드롭다운 */
    .navbar-inverse .navbar-nav .dropdown-menu {
        transition: .3s;
        left: 50%;
        right: auto;
        transform: translate(-50%, 0);
        border: none;
        border-top: 1px solid #e5e5e5;
        background: #fff;
        padding: 18px 0;
        text-align: center;
        border-radius: 0;
        box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.15);
    }

    .navbar-inverse.before .navbar-nav .dropdown-menu {
        transform: translate(-50%, -15px);
    }

    /* pc nav 드롭다운 메뉴*/
    .navbar-inverse .navbar-nav .dropdown-menu>li>a {
        padding: 11px 25px;
        font-size: 15px;
        line-height: 1;
        letter-spacing: -0.045em;
        font-weight: 500;
        text-align: left;
        font-size: 14px;
        padding: 8px 25px;
    }

    .navbar-inverse .navbar-nav>li>a::after,
    .navbar-inverse .navbar-nav .dropdown.open .dropdown-toggle::after {
        transition: .3s;
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(14px);
        width: 0%;
        opacity: 0;
        height: 2px;
        background: #fff;
    }

    .navbar-inverse .navbar-nav>li>a::after,
    .navbar-inverse .navbar-nav .dropdown.open .dropdown-toggle::after {
        color: #d11e2e;
        background: rgba(0, 0, 0, 0);
    }

    .navbar-inverse .navbar-nav>li>a:hover::after,
    .navbar-inverse .navbar-nav .dropdown.open:hover .dropdown-toggle::after {
        width: calc(100% - 40px);
        opacity: 1;
    }
}

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

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

    .navbar-inverse .navbar-nav>li {
        width: 100%;
        border-bottom: 1px solid #ddd;
    }

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

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

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

    .navbar>.container {
        display: block;
        padding: 0 15px;
    }

    .navbar-brand {
        order: 1;
        width: 80px;
        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: #f4f4f4;
    }

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

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

/* =================================== footer =================================== */

#site footer {
    margin-top: 0px;
    padding: 60px 0;
    background-color: #222525;
}

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

.footer-info {
    color: #aaa;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    letter-spacing: -0.045em;
}

.footer-info li {
    position: relative;
    display: inline;
    margin-right: 20px;
}

.footer-info li+li::after {
    content: '';
    width: 1px;
    height: 10px;
    background: #505050;
    position: absolute;
    left: -12px;
    top: 5px;
}

.footer-info li strong {
    color: #eee;
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin-bottom: -2px;
}

li.copyright {
    display: inline-block;
    margin: 10px 0 0 0;
    opacity: 0.6;
    font-size: 11px;
    letter-spacing: 0.02em;
}

#scrolltop {
    position: fixed;
    z-index: 1000;
    right: 3%;
    bottom: 60px;
    display: none;
    font-size: 18px;
    text-align: center;
    width: 50px;
    height: 50px;
    color: #222;
    border: 1px solid #444;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
    background: #fff;
}

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

/* mobile*/
@media(max-width:767px) {
    #site footer {
        padding: 40px 0 50px;
    }

    .footer-info li:first-child {
        margin-bottom: 20px;
    }

    .footer-info li {
        display: block;
        line-height: 1.35;
        margin-bottom: 5px;
        padding-right: 0;
    }

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

    #scrolltop {
        width: 40px;
        height: 40px;
        right: 15px;
        bottom: 40px;
    }
}

.maintenance {
    background: #f4f4f4;
    padding: 120px 25px;
    text-align: center;
}

.maintenance .icon {
    display: block;
    line-height: 1;
    font-size: 64px;
    margin-bottom: 10px;
}

.maintenance .big-cont {
    display: block;
    line-height: 1;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}

.maintenance .small-cont {
    display: block;
    line-height: 1.5;
    font-size: 14px;
    letter-spacing: -0.03em;
    color: #818181;
    margin-bottom: 20px;
}

/* =================================== mainCarousel =================================== */

/* 슬라이드 */
#mainCarousel .carousel-inner .item {
    height: calc(100vh - 152px);
}

#mainCarousel .carousel-inner .item::before {
    /* content: ''; */
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: #000;
    /* background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.15) 20%); */
    opacity: 0.15;
}

.carousel-caption {
    text-align: left;
    text-shadow: none;
    top: 47.5%;
    /* width: 92%;
    max-width: 1140px;
    top: auto;
    left: 50%;
    right: auto;
    bottom: 5%;
    text-align: left;
    transform: translateX(-50%); */
}

.carousel-caption h1 {
    display: inline-block;
    position: relative;
    margin-bottom: 0;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.025em;
    text-shadow: none;
}

.carousel-caption h1 strong {
    display: block;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 15px;
    padding-left: 3px;
    font-size: 18px;
}

.carousel-caption h1 span {
    font-weight: 300;
    display: block;
    font-size: 18px;
    margin-bottom: 13px;
}

.carousel-caption p {
    font-size: 20px;
    line-height: 1.65;
    font-weight: 300;
}

.carousel-control {
    display: none;
    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: 3%;
}

.carousel-indicators li,
.carousel-indicators li.active {
    width: 20px;
    height: 4px;
    border-radius: 0;
    border: 0;
    margin: 0 2px;
}

.carousel-indicators li {
    border: 0;
    background-color: rgba(255, 255, 255, .85);
    transition: ease-in-out .15s all;
}

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

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

/* =================================== mainpage common =================================== */
.mainpage section {
    padding: 85px 0 95px;
}

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

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


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

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

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

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

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

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

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

.subpage-header.visual05 {
    background-image: url(/public/img/sub/sub-top05.jpg);
}

.subpage-header::before {
    /*     content: ''; */
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: .5;
}

[id^="port"] .subpage-header .sub-title {
    padding-top: 15px;
}

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

.subpage-header .sub-title h2 {
    font-size: 63px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.subpage-header .sub-title h2 small {
    display: block;
    margin-top: 10px;
    padding-left: 5px;
    font-size: 17px;
    letter-spacing: .5px;
    line-height: 1.35;
    font-weight: 400;
    color: #fff;
}

#port01 .subpage-header .sub-title h2 small {
    letter-spacing: 0.15px;
}

#port02 .subpage-header .sub-title h2 small {
    letter-spacing: 1.2px;
}

#port03 .subpage-header .sub-title h2 small {
    letter-spacing: 0.5px;
}

#port04 .subpage-header .sub-title h2 small {
    letter-spacing: -0.1px;
}

.subpage-header .sub-title h2 span {
    display: none;
}

.breadcrumb {
    padding: 0 3px 0;
    margin: 0 0 20px;
    background: none;
    font-size: 15px;
    letter-spacing: -0.03em;
}

.breadcrumb>li+li:before {
    padding: 0 10px;
    content: "\f105";
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 14px;
    /* width: 2px; */
    /* height: 2px; */
    background: transparent;
    padding: 0;
    margin: 0 7px 0 4px;
    padding-bottom: 3px;
    display: inline-block;
    color: #fff;
    vertical-align: middle;
}

.breadcrumb>li {
    color: #fff;
}

.breadcrumb>li.active {
    color: #fff;
    font-weight: 600;
}

/* =================================== snb =================================== */
.snb {
    position: relative;
    z-index: 10;
    /* background: #eee; */
}

.snb .container {
    position: relative;
}

/* =================================== subpage section, title =================================== */
.subpage {
    padding-bottom: 60px;
}

.subpage-content {
    position: relative;
    z-index: 5;
    /* margin: -250px 100px 0; */
    background: #fff;
}

@media (max-width:1610px) {
    .subpage-content {
        margin-left: 15px;
        margin-right: 15px;
    }
}

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

.subpage-content section>.container .row+h3,
.subpage-content section>.container .row+.row {
    margin-top: 140px;
}

.subpage-content .col-sm-12+.col-sm-12 {
    margin-top: 70px;
}

.subpage-content .container>h3 {
    margin-top: 0;
    margin-bottom: 55px;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: -0.015em;
    text-align: left;
    color: #222;
}

.subpage-content .container>h3::before {
    content: '';
    width: 40px;
    height: 2px;
    background: #da1e2e;
    display: block;
    margin-bottom: 8px;
}

.subpage-content .container>h3 small {
    font-size: 24px;
    color: #222;
    margin-left: 10px;
    font-weight: 600;
    letter-spacing: -0.05em;
}

/* .subpage-content h4 {
    margin-bottom: 45px;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: #444;
}

.subpage-content h5 {
    font-weight: 500;
    font-size: 18px;
} */


/* =================================== subpage content =================================== */
/* 01 */
#com03.subpage {
    padding-bottom: 0;
}
.sub-greet-wrap{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.sub-greet-wrap .top {
    font-size: 26px;
    color: #444;
}

/* .sub-greet-wrap>div {
    float: inherit;
    width: 80%;
    margin: 0 auto;
} */

.sub-greet-wrap .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 5px;
}

.sub-greet-wrap img.logo-greet {
    align-self: center;
    margin-bottom: 100px;
}

.sub-greet-wrap h4 {
    margin-bottom: 40px;
    align-self: center;
    font-size: 50px;
    font-weight: 500;
    color: #222;
    line-height: 1.45;
    letter-spacing: -0.025em;
}

.sub-greet-wrap h4 strong {
    color: #d11e2e;
    font-weight: inherit;
}

.sub-greet-wrap p {
    width: 100%;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: -0.04em;
    margin: 0;
}

.sub-greet-wrap p+p {
    margin-top: 10px;
}

.sub-greet-wrap .name {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 35px 0 15px;
    color: #222;
    font-weight: 500;
    text-align: right;
    font-size: 18px;
    width: 100%;
    letter-spacing: -0.055em;
}
.sub-greet-wrap .left{
    /* padding-left: 50px; */
}
.sub-greet-wrap .name strong {
    margin-left: 10px;
    font-size: 26px;
    letter-spacing: -0.03em;
    color: #222;
    font-weight: 500;
}
.sub-greet-wrap img.greet-ceo{
    margin-left: auto;
    margin-right: 40px;
}
.sub-greet-wrap img.sign {
    /* align-self: flex-end; */
    margin-left: 35px;
}

.sub-slogan-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 85px 0 85px;
    text-align: center;
    /* background: #f4f4f5; */
}

.sub-slogan-wrap>div {
    padding: 0;
}

.sub-slogan-wrap .img-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#com01 .sub-slogan-wrap .right {
    margin-top: 40px;
}

.sub-slogan-wrap .text {}

.sub-slogan-wrap p {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 14px;
    color: #cf1425;
    letter-spacing: -0.01em;
}

.sub-slogan-wrap h4 {
    font-weight: 600;
    font-size: 36px;
    margin: 0;
    color: #3a3a3a;
    letter-spacing: 2px;
}

.sub-slogan-wrap img {
    /* opacity: 0.65; */
}

#com01 .sub-vision-wrap>div+div {
    margin-top: 90px;
}

.sub-vision-wrap>div:nth-child(odd) .text {
    padding-left: 60px;
    /* margin-left: -140px; */
}

.sub-vision-wrap>div:nth-child(even) .text {
    /* padding-left: 200px; */
    /* margin-right: -140px; */
}

.sub-vision-wrap .item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
}

.sub-vision-wrap .item .img-box {
    /* padding-left: 40px; */
}

.img-box img {
    /* height: 480px; */
}

.sub-vision-wrap>div:nth-child(odd) .img-box {
    padding-left: 0;
}

.sub-vision-wrap .text {
    position: relative;
    z-index: 5;
    /*     background: #fff; */
    /* padding-top: 70px; */
    /* padding-bottom: 70px; */
}

.sub-vision-wrap .text::before {
    content: '';
    width: 100px;
    height: 1px;
    /* background:#d11e2e; */
    position: absolute;
    right: -50px;
    top: 60px;
}

.sub-vision-wrap>div:nth-child(odd) .text::before {
    right: auto;
    left: -70px;
}

.sub-vision-wrap .item>div {
    padding: 0;
}

.sub-vision-wrap h4 small {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    color: #d11e2e;
    letter-spacing: -0.055em;
}

.sub-vision-wrap h4 {
    margin-top: 0;
    margin-bottom: 28px;
    font-size: 40px;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.025em;
}

.sub-vision-wrap p {
    font-size: 17px;
    letter-spacing: -0.045em;
    line-height: 1.5;
    color: #666;
}

.sub-motto-wrap .item {
    text-align: center;
    padding: 60px 40px 60px;
    background: #f4f4f5;
}

.sub-motto-wrap .icon {
    background: #fff;
    border: 2px dotted #d5d5d5;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.sub-motto-wrap span[class^="material-icons"] {
    font-size: 55px;
    /* background: #d11e2e; */
    /* width: 120px; */
    /* height: 120px; */
    border-radius: 50%;
    /* line-height: 120px; */
    background: #d11e2e;
    color: #fff;
    width: 110px;
    height: 110px;
    line-height: 110px;
}

.sub-motto-wrap dt {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin: 25px 0 25px;
    letter-spacing: -0.025em;
}

.sub-motto-wrap dt small {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #d11e2e;
    letter-spacing: -0.055em;
}

.sub-motto-wrap dd {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.5;
    color: #6f6f6f;
}


/* map */
/* map-kakao */
.map-kakao .root_daum_roughmap {
    width: 100% !important;
    height: 400px;
    padding: 0 !important;
}

.map-kakao .root_daum_roughmap .map_border {
    display: none !important;
}

/* map-google */
.map-google iframe {
    width: 100%;
    height: 500px;
    margin-bottom: -5px;
}

.sub-map-wrap .map-info>div {
    padding: 0;
}

.sub-map-wrap .map-info {
    background: #f4f4f5;
    padding: 35px 40px 30px;
    margin-bottom: 20px;
}

.sub-map-wrap .address {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.sub-map-wrap .address dt {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.033em;
}

.sub-map-wrap .address dt span[class^="material-icons"] {
    margin-right: 8px;
    transform: translateY(-1px);
    font-size: 28px;
    color: #d11e2e;
}

.sub-map-wrap .address dd {
    color: #666;
    font-size: 18px;
}

.sub-map-wrap .address li+li {
    margin-left: 30px;
}

.sub-map-wrap .address li strong {
    margin-right: 5px;
    font-weight: 600;
    color: #d11e2e;
}

.sub-map-wrap .address ul {
    display: flex;
}

/* 02 */

.sub-busi-wrap {
    margin: 0;
    display: flex;
    align-items: center;
}

.sub-busi-wrap>div {
    padding: 0;
}

.sub-busi-wrap .text {
    position: relative;
}

.sub-busi-wrap .text::before {
    content: '01';
    font-weight: 600;
    font-size: 140px;
    letter-spacing: 0;
    color: #f2f2f2;
    line-height: 0;
    position: absolute;
    top: 45px;
    left: 55px;
    font-family: 'Roboto', 'notokr', sans-serif;
    opacity: 0;
}

.sub-busi-wrap.wrap02 .text::before {
    content: '02';
    left: -10px;
}

.sub-busi-wrap.wrap03 .text::before {
    content: '03';
}

.sub-busi-wrap.wrap04 .text::before {
    content: '04';
    left: -10px;
}

.sub-busi-wrap .col-sm-5+.col-sm-7 .text {
    padding-left: 120px;
}

.sub-busi-wrap h4::before {
    content: '01';
    display: block;
    margin-bottom: 25px;
    margin-top: -7px;
    color: #939598;
    font-weight: 600;
    font-size: 70px;
    letter-spacing: 0;
    opacity: 0.3;
}

.sub-busi-wrap.wrap02 h4::before {
    content: '02';
}

.sub-busi-wrap.wrap03 h4::before {
    content: '03';
}

.sub-busi-wrap.wrap04 h4::before {
    content: '04';
}



.sub-busi-wrap h4 {
    font-size: 40px;
    color: #222;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 40px;
}

.sub-busi-wrap h4 small {
    display: block;
    margin-top: 18px;
    font-size: 20px;
    font-weight: 500;
    color: #d11e2e;
    letter-spacing: -0.055em;
}

.sub-busi-wrap li {
    position: relative;
    font-size: 16px;
    padding-left: 12px;
    letter-spacing: -0.045em;
    line-height: 1.5;
    color: #666;
}

.sub-busi-wrap li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 5px;
    height: 2px;
    background: #888;
}


.sub-busi-wrap li+li {
    margin-top: 5px;
}

.port-btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    margin-top: 55px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    border-bottom: 1px solid;
    letter-spacing: -0.035em;
}

.port-btn::after {
    position: relative;
    pointer-events: none;
    z-index: -1;
    content: '+';
    font-size: 18px;
    margin-left: 20px;
}

.port-btn::before {
    z-index: -1;
    pointer-events: none;
    content: '';
    width: 0;
    height: 2px;
    background: #d11e2e;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    bottom: -1px;
}

.port-btn:hover {
    color: #d11e2e;
}

.port-btn:hover::before {
    width: 100%;
}

@media (hover:hover) {

    .port-btn:hover,
    .port-btn:active,
    .port-btn:focus {
        color: #d11e2e;
    }

    .port-btn:hover::before,
    .port-btn:active::before,
    .port-btn:active::before {
        width: 100%;
    }
}


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

.sub-cert-wrap p {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-top: 10px;
}

.sub-cert-wrap>div {
    margin-bottom: 40px;
}

/* 03 */

/* 04 */

/* 05 */
.sub-step-wrap>div+div .item::after {
    content: '\f1df';
    position: absolute;
    display: block;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    font-weight: 900;
    font-size: 18px;
    font-family: 'Material Icons';
    color: #da1f32;
}

.sub-step-wrap>div:last-child .item {
    border: 1px solid #da1f32;
}

.sub-step-wrap .item {
    position: relative;
    /* background: #f4f4f4; */
    border: 1px solid #ccc;
    border-radius: 50%;
}

.sub-step-wrap .item dt span {
    display: block;
    color: #da1f32;
    margin: 0 0 10px;
    padding: 3px 0;
    font-size: 14px;
    text-align: center;
}

.sub-step-wrap .item dl {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: 55px 35px 25px;
}

.sub-step-wrap .item dt {
    font-size: 24px;
    padding-bottom: 5px;
    margin-bottom: 15px;
    border-bottom: 1px solid #888;
}

.sub-step-wrap .item dd {
    width: 100%;
    font-size: 15px;
    letter-spacing: -0.025em;
    text-align: center;
}

.sub-step-wrap .item::before {
    content: '';
    display: block;
    padding-bottom: 100%;
}

.sub-career-wrap {
    text-align: center;
}

.sub-career-wrap h4 {
    font-size: 42px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 40px;
    color: #000;
}

.sub-career-wrap h4+p {
    font-size: 22px;
    margin-bottom: 20px;
    color: #444;
}

.sub-career-wrap h4+p::after {
    content: '';
    display: block;
    width: 1px;
    height: 100px;
    margin: 50px auto;
    background: #ccc;
}

.sub-career-wrap h4 strong {
    color: #d11e2e;
}

.sub-career-wrap h5 {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 40px;
    font-weight: 700;
    color: #000;
}

.career-wrap {
    margin: 0;
    padding: 60px 50px 30px;
    background: #f4f4f5;
    border-radius: 70px;
}

.career-wrap .item {
    position: relative;
    background: #fff;
    border: 2px dotted #d5d5d5;
    margin-bottom: 30px;
    border-radius: 50%;
}

.career-wrap .item i {
    display: block;
    color: #d11e2e;
    font-size: 48px;
    margin-bottom: 15px;
}

.career-wrap .item dl {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 50px;
}

.career-wrap .item dt {
    font-weight: 600;
    color: #333;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #888;
    letter-spacing: -0.025em;
    font-size: 24px;
}

.career-wrap .item dd {
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1.5;
    color: #6f6f6f;
}

.career-wrap .item::before {
    content: '';
    display: block;
    padding-bottom: 100%;
}

/* table */
.sub-table-wrap {
    margin-top: 30px;
}

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

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

.sub-table-wrap .table-style thead th {
    border-bottom: 0;
}

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

/* blog2 bbs main + sub */
.page-header {
    margin: 0 0 50px;
    border: 0;
}

.page-header h4 {
    display: inline-block;
    font-size: 46px;
    font-weight: 700;
    color: #000;
}

.board_box_blog2 {
    margin-bottom: 0px !important;
}

.table_blog2,
.board_box_blog2 .row {
    /* margin: 0 -20px; */
}

.table_blog2>[class^="col-"],
.board_box_blog2 .row>div[class^="col-"] {
    /* padding: 0 20px; */
}

.table_blog2 dd {
    margin-bottom: 0;
}

.table_blog2 dd .inner,
.board_box_blog2 .inner {
    margin-top: 0;
    margin-bottom: 60px;
    border: 0;
}

.table_blog2 dd:nth-child(n+4) .inner,
.board_box_blog2 div:nth-child(n+4) .inner {
    margin-bottom: 40px;
}

.table_blog2 dd .inner .bottom,
.board_box_blog2 .inner .bottom {
    padding: 0;
}

.table_blog2 dd .inner .bottom .title,
.board_box_blog2 .inner .bottom .title {
    padding: 0;
    margin-top: 25px;
    margin-bottom: 10px;
}

.table_blog2 dd .inner .bottom .title a,
.board_box_blog2 .inner .bottom .title a {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.045em;
    color: #222;
}

.table_blog2 dd .inner:hover .bottom .title a,
.board_box_blog2 .inner:hover .bottom .title a {
    color: #d11e2e;
}

.table_video dd .inner .top a,
.table_blog2 dd .inner .top a {
    transition: all 0.4s
}

.table_blog2 dd .inner:hover .top a,
.board_box_blog2 .inner:hover .top a {
    background: rgba(0, 0, 0, .2);
}

.table_blog2 dd .inner .top a .thumb,
.board_box_blog2 .inner .top a .thumb {
    position: relative;
    z-index: -1;
    transition: 0.4s;
    padding-top: calc(450 / 350 * 100%);
    /* calc (이미지 높이 ÷ 이미지 가로 × 100 %) */
}

.table_blog2 dd .inner:hover .top a .thumb,
.board_box_blog2 .inner:hover .top a .thumb {
    transform: scale(1.08);
}

.table_blog2 dd .inner .bottom .info {
    margin: 0 -5px;
}

.table_blog2 dd .inner .bottom .info span {
    font-size: 13px;
    letter-spacing: -0.025em;
}

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

:is(.board_wrapper, .pagination_wrap, .search_wrap) {
    content-visibility: hidden;
}

.bbs-area :is(.board_wrapper, .pagination_wrap, .search_wrap) {
    content-visibility: auto;
}
/* .bbs-area h4 {
    font-weight: 500;
    font-size: 20px;
    padding: 0;
    color: #222;
}

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

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

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

.bbs-area .search_wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.bbs-area .search_wrap>*+* {
    margin-left: 5px;
}

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

.btn.btn-primary {
    background-color: #d11e2e;
    border: 1px solid #d11e2e;
    color: #fff;
}

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

.form-control:not([readonly]):focus {
    border-color: #666;
}

[id^='port'] .board_wrapper {
    display: flex;
    flex-wrap: wrap;
}

[id^='port'] .table_blog2 {
    flex: 1;
}

[id^='port'] .category_wrap {
    width: 25%;
}

.category_wrap {
    margin: 0 -15px;
}

.category_wrap ul {
    padding: 0 15px;
    padding-right: 70px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.category_wrap ul li {
    width: 100%;
}

.category_wrap ul li.on a,
.category_wrap ul li.on a:hover,
.category_wrap ul li.on a:focus {
    color: #d11e2e;
    background: #fff;
    border: 1px solid #d11e2e;
}

.category_wrap ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 0;
    letter-spacing: -0.015em;
    background: #f4f4f5;
    font-size: 15px;
    border-color: transparent;
}

.category_wrap ul li+li {
    margin-left: 0;
    margin-top: 5px;
}

/* 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;
    color: #777;
    font-size: 15px;
}

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

.table.table_default tbody .subject a:hover {
    text-decoration: underline;
}

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

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

.table_default {}


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

.board_wrapper i::after,
.board_wrapper i::before {
    font-family: 'Font Awesome 5 Free';
}

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

.reply_wrap,
.board_wrapper .option_wrap,
.board_data_view {
    width: 100%;
}

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

.board_data_view .header_wrap .title {
    margin: 0;
    font-size: 28px;
    letter-spacing: -0.055em;
}

.board_data_view .header_wrap .info {
    margin-top: 20px;
}

.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 8px;
    margin-top: -1px;
    border-radius: 2px;
    font-weight: 500;
    font-size: 13px;
    margin-right: 8px;
    color: #d11e2e;
    background: #fff;
    border: 1px solid #d11e2e;
}

.main_popup {
    top: 190px;
}

.main_popup_contents {
    padding: 20px;
}

.main_popup_contents img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

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

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

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

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

    .mainpage section {
        padding: 75px 0 90px;
        background: #eee;
    }

    .mainpage h2 {
        font-size: 32px;
    }

}

/* subpage */
@media(max-width:767px) {
    .breadcrumb {
        margin: 0;
        width: 100%;
        text-align: center;
        margin-top: 0px;
        font-size: 12px;
    }

    .subpage-header {
        height: 240px;
        background-position: 40%;
    }

    .subpage-header::before {
        content: '';
        opacity: .35;
    }

    .subpage-header .sub-title {
        align-items: center;
    }

    .subpage-header .sub-title h2 {
        margin-top: 10px !important;
        margin-bottom: 10px;
        text-align: center;
        font-size: 48px;
    }
    .subpage-header .sub-title h2 small{
        font-size: 14px;
    }
    #port01 .subpage-header .sub-title h2 small {
        letter-spacing: -0.25px;
    }

    #port02 .subpage-header .sub-title h2 small {
        letter-spacing: 0.5px;
    }

    #port03 .subpage-header .sub-title h2 small {
        letter-spacing: -0.1px;
    }

    #port04 .subpage-header .sub-title h2 small {
        letter-spacing: -0.5px;
    }

    .subpage-content section {
        padding: 60px 0 80px !important;
    }

    .subpage-content h3 {
        font-size: 32px;
        margin-bottom: 40px;
    }

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

    .sub-slogan-wrap {
        padding: 40px 0;
    }

    #com01 .sub-slogan-wrap>div {
        width: 100%;
    }

    .sub-slogan-wrap .img-box img {
        width: 280px;
        margin: 0 auto;
    }

    .sub-slogan-wrap .text {
        width: 100%;
    }

    .sub-slogan-wrap h4 {
        font-size: 30px;
    }

    .subpage-content section>.container .row+h3,
    .subpage-content section>.container .row+.row {
        margin-top: 70px;
    }

    .sub-vision-wrap {
        margin: 0;
    }

    .sub-vision-wrap>div {
        overflow: hidden;
        padding: 0;
    }

    .sub-vision-wrap>div:nth-child(odd) .text {
        padding-left: 0;
    }

    .sub-vision-wrap>div:nth-child(even) .row.item {
        display: flex;
        flex-direction: column-reverse;
    }

    .sub-vision-wrap h4 {
        font-size: 28px;
    }

    .sub-vision-wrap h4 small {
        font-size: 18px;
    }

    .sub-vision-wrap>div .img-box {
        margin-bottom: 30px;
    }

    #com01 .sub-vision-wrap>div+div {
        margin-top: 60px;
    }

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

    .sub-motto-wrap .item {
        padding: 50px 30px;
    }

    .subpage {
        padding-bottom: 0;
    }

    .sub-greet-wrap .name {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .sub-greet-wrap .left{
        padding-left: 15px;
    }
    .sub-greet-wrap .name img {
        margin: 10px 40px 0;
    }
    .sub-greet-wrap img.greet-ceo{
        width: 300px;
        margin: 30px auto 0;
        height: auto;
    }

    .sub-greet-wrap .left .hidden-xs {
        display: block !important;
    }

    .sub-greet-wrap h4 {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .sub-map-wrap .address dt span[class^="material-icons"] {
        display: block;
        margin-bottom: 10px;
    }

    .sub-map-wrap .map-info {
        padding: 20px;
        text-align: center;
    }

    .sub-map-wrap .address {
        justify-content: center;
    }

    .sub-map-wrap .address dt {
        font-size: 18px;
    }

    .sub-map-wrap .address ul {
        display: block;
        margin-top: 10px;
        font-size: 16px;
    }

    .sub-map-wrap .address ul li+li {
        margin-left: 0;
        margin-top: 10px;
    }

    .sub-busi-wrap {
        flex-wrap: wrap;
    }

    .sub-busi-wrap:nth-child(odd) {
        flex-direction: column-reverse;

    }

    .sub-busi-wrap .col-sm-5+.col-sm-7 .text {
        padding-left: 0;
    }

    .sub-busi-wrap h4 {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .sub-busi-wrap h4::before {
        margin-top: 20px;
        margin-bottom: 10px;
        font-size: 50px;
    }

    .port-btn {
        margin-top: 30px;
    }

    .port-btn::before {
        transition: none;
    }

    .sub-cert-wrap img {
        margin: 0 auto;
    }

    [id^='port'] .board_wrapper {
        display: block;
    }

    [id^='port'] .category_wrap {
        width: 100%;
        margin: 0;
        margin-bottom: 40px;
    }

    .category_wrap ul {
        padding: 0;
        flex-direction: row;
        flex-wrap: wrap;
        margin: 0 -5px;
    }

    .category_wrap ul li {
        width: 50%;
        padding: 0 5px;
        margin: 0 0 10px !important;
    }

    .table_blog2>[class^="col-"],
    .board_box_blog2 .row>div[class^="col-"] {
        width: 100%;
    }

    .bbs-area .board_wrapper div.text-center {
        justify-content: center;
    }

    .category_wrap ul li a {
        font-size: 15px;
        height: 45px;
    }

    .career-wrap {
        padding: 25px 10px;
        border-radius: 20px;
    }

    .sub-career-wrap h4 {
        font-size: 36px;
        line-height: 1.35;
    }

    .sub-career-wrap h4+p {
        font-size: 20px;
    }

    .sub-career-wrap h4+p::after {
        height: 70px;
    }

    .sub-career-wrap h5 {
        font-size: 30px;
    }

    .career-wrap .item {
        margin-bottom: 20px;
    }

    .sub-step-wrap {
        padding: 0 30px;
    }

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

    .sub-step-wrap>div+div .item::after {
        content: '\f1e3';
        top: -28px;
        left: 50%;
        transform: translateX(-50%);
    }

    .bbs-area .search_wrap>*+* {
        margin-left: 0;
    }

    .sub-step-wrap .item dl {
        padding: 30px 35px 40px;
        justify-content: center;
    }

    .member_wrapper {
        padding: 70px 0;
    }
}

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

    .member_wrapper #join_form .table .input-group.input-group-big,
    .member_wrapper #join_form .table .form-control.form-control-big,
    .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,
    .board_wrapper .table.board_write_table .input-group.input-group-big,
    .board_wrapper .table.board_write_table .form-control.form-control-big {
        width: 100%;
    }

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

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

    .bbs-area .board_wrapper .text-center .btn.btn-lg {
        padding: 0;
        height: 50px;
    }

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

    .table.table_responsive tbody tr th {
        padding: 15px !important;
    }

    .main_popup_contents {
        padding: 10px;
    }
}

/* bbs-reset */
.board_data_view .contents_wrap p {
    font-size: inherit;
}

.board_data_view .contents_wrap li,
.board_data_view .contents_wrap dl {
    margin: inherit;
    padding: inherit;
    list-style-position: inside !important;
}

.board_data_view .contents_wrap ul li {
    list-style-type: disc !important;
}

.board_data_view .contents_wrap ol li {
    list-style-type: decimal !important;
}