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

html {overflow-x: hidden;overflow-y: scroll;}
body {
  font-size: 1.5rem;
}
#site {background-color: #fff;word-break: keep-all !important;padding-top: 0;position: relative;}
#site > .container{width: 100%;padding: 0;}

/* 폰트 설정 */
#site, h1, h2, h3, h4, h5, h6, input, textarea, button {font-family: 'Pretendard Variable', 'notokr', sans-serif;}

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

/* 닷홈 빌더 설정
.navbar .caret,
.navbar .divider-vertical,
.navbar ~ br,
.footer-social-layout,
.footer_copy .text-center > br,
.topmarginLay_a {display: none;}
 */

:root {
    /* font-family */
    --font-ns:
    'Nunito Sans', 'Pretendard', 'notokr', sans-serif;
    /* page color */
    --page-point-color: #0378CB;
    --page-point-color-hover: #0063aa;
    --page-color: #003c75;
    --page-color2: #F1F3F4;
    /* google-material-symbols */
    --gms:
    "Material Symbols Outlined";
    --gms-grad-low:
    "GRAD" -25;
    --gms-grad-zero:
    "GRAD" 0;
    --gms-grad-high:
    "GRAD" 200;
    --gms-opsz:
    "opsz" 48;
    /* fill icon */
    --gms-100-fill:
    "FILL" 1, "wght" 100, var(--gms-opsz);
    --gms-200-fill:
    "FILL" 1, "wght" 200, var(--gms-opsz);
    --gms-300-fill:
    "FILL" 1, "wght" 300, var(--gms-opsz);
    --gms-400-fill:
    "FILL" 1, "wght" 400, var(--gms-opsz);
    --gms-500-fill:
    "FILL" 1, "wght" 500, var(--gms-opsz);
    --gms-600-fill:
    "FILL" 1, "wght" 600, var(--gms-opsz);
    --gms-700-fill:
    "FILL" 1, "wght" 700, var(--gms-opsz);
    /* outlined icon */
    --gms-100-out:
    "FILL" 0, "wght" 100, var(--gms-opsz);
    --gms-200-out:
    "FILL" 0, "wght" 200, var(--gms-opsz);
    --gms-300-out:
    "FILL" 0, "wght" 300, var(--gms-opsz);
    --gms-400-out:
    "FILL" 0, "wght" 400, var(--gms-opsz);
    --gms-500-out:
    "FILL" 0, "wght" 500, var(--gms-opsz);
    --gms-600-out:
    "FILL" 0, "wght" 600, var(--gms-opsz);
    --gms-700-out:
    "FILL" 0, "wght" 700, var(--gms-opsz);
}

@media (min-width: 1280px){
    .container{
        width: 1230px;
    }
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 200,
  'GRAD' 0,
  'opsz' 24
}

@media (min-width: 768px){
    .col-sm-20{width: 20%;}
    .col-sm-40{width: 40%;}
    .col-sm-60{width: 60%;}
    .col-sm-80{width: 80%;}
}
@media (min-width: 992px){
    .col-md-20{width: 20%;}
    .col-md-40{width: 40%;}
    .col-md-60{width: 60%;}
    .col-md-80{width: 80%;}
}
@media (min-width: 1200px){
    .col-lg-20{width: 20%;}
    .col-lg-40{width: 40%;}
    .col-lg-60{width: 60%;}
    .col-lg-80{width: 80%;}
}

/* 상단 네비게이션 */

.navbar.navbar-inverse{background-color: transparent;border-bottom: 1px solid rgba(255,255,255,0.15);position: absolute;top: 0;left: 0;right: 0;}
.navbar.navbar-inverse .container{width: 100%; padding: 0 8rem;}
.navbar-header .navbar-brand{display: block;padding: 0;font-size: 2.0rem;margin-top: 2.9rem;margin-left: 0 !important;height: auto;}
.navbar-header .navbar-brand img{margin-top: 0;display: inline-block;}

.nav.navbar-nav{display: flex;/* gap: 6rem; */}
.nav.navbar-nav:before,
.nav.navbar-nav:after{display: none;}
.nav.navbar-nav > #gnbauth a {
  padding-right: 1rem;
}
.nav.navbar-nav > li.gr-link a{
  padding-left: 1rem
}
.nav.navbar-nav > li > a{display: block;height: 100%;padding: 0;font-size: 1.8rem;color: #fff;/* margin: 3.945rem 0; */padding: 3.945rem 3rem;font-family: var(--font-ns);position: relative;border-radius: 5px;font-weight: 600;}
.nav.navbar-nav > li > a::before {
    content: '';
    width: 0;
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 3.5rem;
    transform: translateX(-50%);
    background: #fff;
    opacity: 1;
    transition: all 0.3s;
    
}
.nav.navbar-nav > li:hover > a::before,
.nav.navbar-nav > li.open > a::before,
.nav.navbar-nav > li:focus > a::before,
.nav.navbar-nav > li > a:hover::before,
.nav.navbar-nav > li > a:focus::before,
.nav.navbar-nav > li.open > a::before,
.nav.navbar-nav > li.open > a:hover::before,
.nav.navbar-nav > li.open > a:focus::before{
    width: calc(100% - 6rem);
    opacity: 1;
}
.nav.navbar-nav > li > a .caret{display: none;}
.nav.navbar-nav > li:hover > a,
.nav.navbar-nav > li.open > a,
.nav.navbar-nav > li:focus > a,
.nav.navbar-nav > li > a:hover,
.nav.navbar-nav > li > a:focus,
.nav.navbar-nav > li.open > a,
.nav.navbar-nav > li.open > a:hover,
.nav.navbar-nav > li.open > a:focus{background: none;}
.nav.navbar-nav li .dropdown-menu{left: 0;right: auto;border-radius: 0;border: 0;padding: 2rem 0;background: rgb(1 62 131 / 80%);background: #fff;backdrop-filter: blur(10px);animation-fill-mode: both;animation-duration: 0.4s;animation-name: fadeIn;}
.nav.navbar-nav li .dropdown-menu li a{padding: 0.8rem 2.5rem;font-size: 1.4rem;line-height: normal;color: #888;background: none;transition: all 0.3s;font-weight: 500;}
.nav.navbar-nav li .dropdown-menu li a:hover{color: var(--page-point-color);background: var(--page-color2);}

.nav.navbar-nav > li > a i {
  font-size: 1.5rem;
}

.gr-link{}
.gr-link a{}
.gr-link a:hover,
.gr-link a:focus{}
.gr-link a .material-symbols-outlined{
    font-family: var(--gms);
    font-variation-settings: var(--gms-700-fill);
    font-size: 1.7rem;
    line-height: 0.5;
    transform: translateY(3px);
}
.gr-link a .material-symbols-outlined:hover,
.gr-link a .material-symbols-outlined:focus{}

@media (max-width: 767px){
    html{font-size: 2vw;}
    #site{}
    .navbar.navbar-inverse {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(16px);
    }
    .navbar.navbar-inverse .container{
        padding: 0 15px;
    }
    .navbar-header .navbar-brand {
        margin-top: 7px;
        margin-left: 15px !important;
    }

    /*.navbar-inverse .navbar-toggle{border:1px solid #666;}*/
    .navbar-inverse .navbar-toggle {
        border: 0;
        padding: 9px 0;
        margin: 15px 15px;
        margin-left: 0;
    }

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

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

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

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

    .navbar-inverse.open .navbar-toggle>.icon-bar:nth-of-type(1) {
        transform: rotate(45deg);
        top: 6px;
    }

    .navbar-inverse.open .navbar-toggle>.icon-bar:nth-of-type(2) {
        opacity: 0;
    }

    .navbar-inverse.open .navbar-toggle>.icon-bar:nth-of-type(3) {
        transform: rotate(-45deg);
        top: -6px;
    }
    
    .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
        border-color: #e6e6e6;
    }
    .nav.navbar-nav {
        flex-direction: column;
    }
    .nav.navbar-nav > li > a::before,.nav.navbar-nav > li:hover > a::before, .nav.navbar-nav > li.open > a::before, .nav.navbar-nav > li:focus > a::before, .nav.navbar-nav > li > a:hover::before, .nav.navbar-nav > li > a:focus::before, .nav.navbar-nav > li.open > a::before, .nav.navbar-nav > li.open > a:hover::before, .nav.navbar-nav > li.open > a:focus::before{display: none;;}
    .nav.navbar-nav li .dropdown-menu {
        background: rgb(1 62 131 / 54%);
        backdrop-filter: blur(10px);
    }
    .nav.navbar-nav > li > a {
        font-size: 2.2rem;
        padding: 2rem 2rem;
    }
    .navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
        max-height: 560px;
    }
    .nav.navbar-nav li .dropdown-menu li a {
        font-size: 1.6rem;
        color: #fff !important;
    }
    .nav.navbar-nav > li.gr-link a {
        padding-left: 1rem;
        text-align: center;
    }
    .gr-link a .material-symbols-outlined {
        font-size: 2.7rem;
    }
}
@media (min-width: 768px) and  (max-width: 991px){
    #site{}
    .navbar.navbar-inverse .container {
        width: 100%;
        padding: 0 1.5rem;
    }
    .navbar-header .navbar-brand {
        margin-top: 1.9rem;
    }
    .navbar-header .navbar-brand img {
        width: 18rem;
    }
    .nav.navbar-nav > li > a {
        font-size: 1.3rem;
        color: #fff;
        padding: 2.1rem 1.5rem;
    }
}
@media (min-width: 992px) and  (max-width: 1199px){
    #site{}
    .navbar.navbar-inverse .container {
        width: 100%;
        padding: 0 1.5rem;
    }
    .navbar-header .navbar-brand img {
        width: 18rem;
    }
    .nav.navbar-nav > li > a {
        font-size: 1.3rem;
        color: #fff;
        padding: 2.1rem 1.5rem;
    }
    .navbar-header .navbar-brand {
        margin-top: 1.1rem;
    }
}

/* //상단 네비게이션 */

/* 슬라이드 영역 */
#mainCarousel .carousel-inner .item{
    height: 100vh;
}

#mainCarousel .carousel-inner .item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.1;
}
#mainCarousel .carousel-inner .item .carousel-caption{padding: 0;top: auto;left: calc((100% - 120.0rem) / 2);right: calc((100% - 120.0rem) / 2);bottom: 14rem;text-align: left;text-shadow: none;transform: translateY(0);}
#mainCarousel .carousel-inner .item h1{
    line-height: 1.1;
    font-size: 6.6rem;
    font-weight: 800;
    letter-spacing: -0.7px;
    margin: 0 0 4.7rem;
    font-family: var(--font-ns);
}
#mainCarousel .carousel-inner .item h1 small{
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.1;
    opacity: 0.6;
    margin: 0 0 2.6rem;
    color: #fff;
    letter-spacing: 0;
}
#mainCarousel .carousel-inner .item p{
    font-size: 3rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.5px;
}

.carousel-control{display: none;}
.carousel-indicators{
    display: flex;
    gap: 0.7rem;
    bottom: 7rem;
    right: calc((100% - 120.0rem) / 2);
    left: auto;
    width: auto;
    margin: 0;
}
.carousel-indicators li,
.carousel-indicators li.active{
    border-radius: 0;
    width: 5rem;
    height: 0.5rem;
    margin: 0;
    border: 0;
    background: #fff;
    opacity: 0.4;
    transition: all 0.3s;
}
.carousel-indicators li.active{opacity: 1}


@media (max-width: 767px){
    #mainCarousel .carousel-inner .item .carousel-caption{}
    #mainCarousel .carousel-inner .item .carousel-caption {
        top: 50%;
        left: 15px;
        right: 15px;
        bottom: auto;
        transform: translateY(-50%);
    }
    #mainCarousel .carousel-inner .item h1 {
        line-height: 1.1;
        font-size: 3.5rem;
    }
    #mainCarousel .carousel-inner .item p {
        font-size: 2rem;
    }
    .carousel-indicators {
        display: flex;
        gap: 0.7rem;
        bottom: 7rem;
        right: auto;
        left: auto;
        width: auto;
        margin: 0;
        justify-content: center;
        width: 100%;
    }
}
@media (min-width: 768px) and  (max-width: 991px){
    #mainCarousel .carousel-inner .item .carousel-caption{left: calc((100% - 75.0rem) / 2);right: calc((100% - 75.0rem) / 2);}
    .carousel-indicators {
        display: flex;
        gap: 0.7rem;
        bottom: 7rem;
        right: auto;
        left: auto;
        width: auto;
        margin: 0;
        justify-content: center;
        width: 100%;
    }
}
@media (min-width: 992px) and  (max-width: 1199px){
    #mainCarousel .carousel-inner .item .carousel-caption{left: calc((100% - 97.0rem) / 2);right: calc((100% - 97.0rem) / 2);}
    .carousel-indicators {
        display: flex;
        gap: 0.7rem;
        bottom: 7rem;
        right: auto;
        left: auto;
        width: auto;
        margin: 0;
        justify-content: center;
        width: 100%;
    }
}
/* //슬라이드 영역 */

/* 메인 중단영역 */

#main_wrapper > section{padding: 12.0rem 0;}

@media (max-width: 767px){}
@media (min-width: 768px) and  (max-width: 991px){}
@media (min-width: 992px) and  (max-width: 1199px){}

/* //메인 중단영역 */

/* 서브페이지 */

.subHeader {position: relative;height: 48rem;background-image: url(/public/img/sub/sub_title.jpg);background-size: cover;background-repeat: no-repeat;background-position: center;display: flex;padding-bottom: 16.6rem;align-items: flex-end;padding-bottom: 13.9rem;}

.subHeader::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0.4;
}
.subHeader .container{
    position: relative;
    z-index: 1;
}
.subHeader .container h2{color: #fff;font-size: 7.8rem;margin: 0;font-family: "Nunito Sans", sans-serif;font-weight: 700;line-height: 1.15;letter-spacing: -0.85px;font-size: 6.8rem;}
.subHeader .container .breadcrumb{padding: 0; margin: 0; background: none; position: absolute; bottom: 1.0rem; right: 1.5rem;}
.subHeader .container .breadcrumb > li > a,
.subHeader .container .breadcrumb > li.active{color:#fff; opacity: 0.7;}

.subMenu{padding: 0 6rem;margin-top: -6.5rem;position: relative;}
.subMenu .container{width: 100%;padding: 0 30.1rem;border-radius: 2rem 2rem 0 0;background: rgba(0, 85, 180, 0.60);backdrop-filter: blur(10px);}
.subMenu .subBreadCrumb{
    display: flex;
}
.subMenu .subBreadCrumb::before,
.subMenu .subBreadCrumb::after{}
.subMenu .subBreadCrumb > li{
    position: relative;
}

.subMenu .subBreadCrumb > li:last-child button {
    background: #1575cd;
    box-shadow: 5px 0px 15px 0px rgba(0, 0, 0, 0.14);
}
.subMenu .subBreadCrumb > li > .btn-bc{
    line-height: 7rem;
    line-height: 6.5rem;
    padding: 0 2rem;
    background: none;
    border: 0;
    color: #fff;
    min-width: 24rem;
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Nunito Sans',sans-serif;
    letter-spacing: 0;
}
.subMenu .subBreadCrumb > li > .btn-bc::after{
    content: '\e313';
    font-family: 'Material Symbols Outlined';
    font-size: 2rem;
    font-weight: 400;
}
.subMenu .subBreadCrumb > li > .btn-bc:hover,
.subMenu .subBreadCrumb > li > .btn-bc:focus{}
.subMenu .subBreadCrumb > li.lv-1 > .btn-bc{
    font-size: 1.7rem;
    border-left: 1px solid rgba(255,255,255,0.14);
}
#business .subMenu .subBreadCrumb > li.lv-2 > .btn-bc{min-width: 46rem;}
.subMenu .subBreadCrumb > li > .btn-bc.drdwn{}
.subMenu .subBreadCrumb > li > .btn-bc.drdwn.on{
    background: #1575cd;
}

.subMenu .subBreadCrumb > li > .dropdown-menu{
    margin: 0;
    border-radius: 0;
    border: 0;
    background: #FFF;
    box-shadow: 5px 0px 15px 0px rgba(0, 0, 0, 0.14);
    padding: 2rem 0;
    right: 0;
    z-index: 111;
}
.subMenu .subBreadCrumb > li > .btn-bc.drdwn.on + .dropdown-menu{
    display: block;
}
.subMenu .subBreadCrumb > li > .dropdown-menu > li{}
.subMenu .subBreadCrumb > li > .dropdown-menu > li > a{
    color: #666;
    font-size: 1.5rem;
    padding: 0.6rem 2rem;
}
.subMenu .subBreadCrumb > li > .dropdown-menu > li > a:hover,
.subMenu .subBreadCrumb > li > .dropdown-menu > li > a:focus{
    color: var(--page-point-color);
    background: none;
    text-decoration: underline;
}

.subContent{padding-top: 13rem;}
.subContent_title{
    padding: 0 0 10rem;
}
.subContent_title h3{
    margin: 0;
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -2.1px;
    font-family: var(--font-ns);
    color: #222;
}
.subContent .content, .bbs-section{padding-bottom: 12rem;}
.bbs-area .board_wrapper{margin-top: 0;}
.subContent .content h4{
    font-size: 3rem;
    color: #333;
    line-height: 1.45;
    font-weight: 500;
    margin: 0 0 5rem;
    letter-spacing: -0.6px;
}
.subContent .content h4::before{content: '';}


.history{
    display: flex;
    gap: 11.4rem;
}
.history .image{
    width: 32rem;
    aspect-ratio: 1/1.4;
    overflow: hidden;
}

.history .image img {
    /* width: 100%; */
    /* object-fit: cover; */
    /* aspect-ratio: 1/1.4; */
}
.history .text{
    border-left: 1px solid #E8E8E8;
    flex: 1;
    margin-top: 1rem;
}
.history .text .timeline{
    position: relative;
    display: flex;
    padding-left: 5.4rem;
    gap: 5rem;
    margin-bottom: 3.5rem;
    align-items: start;
}

.history .text .timeline:first-child {
    margin-top: -5px;
}
.history .text .timeline:last-child {
    margin-bottom: -5px;
}
.history .text .timeline::before{content: '';display: block;width: 24px;height: 24px;border: 8px solid #dfeefa;background: #329ae3;border-radius: 50%;position: absolute;left: -1.2rem;}
.history .text .timeline .year{
    margin: 0;
    font-size: 2.4rem;
    color: #58abe8;
    font-weight: 800;
    line-height: normal;
    font-family: var(--font-ns);
}
.history .text .timeline .issue{
    padding-top: 3px;
}
.history .text .timeline .issue > li{
    font-size: 1.6rem;
    line-height: 1.5625;
    letter-spacing: -0.16px;
    display: flex;
    gap: 1.5rem;
}
.history .text .timeline .issue > li ~ li{margin-top: 1rem}
.history .text .timeline .issue > li .month{
    font-weight: 700;
    color: #0a4781;
}
.history .text .timeline .issue > li .txt{}

#company .subContent .content.con2{
    padding-top: 12rem;
    background: #F1F3F4;
}
.overview{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}
.overview .box{
    background: #fff;
    padding: 3rem;
    position: relative;
    padding-right: 35%;
    grid-column: span 2;
}
.overview .box .icon{}
.overview .box .icon .material-symbols-outlined{
    font-size: 6rem;
    color: #c5dff3;
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.overview .box .text .tit{
    font-size: 2.6rem;
    color: #0278cb;
    line-height: 1.2;
    letter-spacing: -0.26px;
    margin: 0 0 3.5rem;
}
.overview .box .text .des{font-size: 1.6rem;line-height: 25px;letter-spacing: -0.16px;color: #333;margin: 0;}
.overview .box .text .des b{
    font-weight: 600;
}
.overview .box.bottom{grid-column: span 3;}
.overview .box.bottom .text{}
.overview .box.bottom .text .li-overview{}
.overview .box.bottom .text .li-overview li{
    font-size: 1.6rem;
    line-height: 24px;
    letter-spacing: -0.32px;
    position: relative;
    padding-left: 2.7rem;
    margin-top: 1.2rem;
}
.overview .box.bottom .text .li-overview li:first-child{margin-top: 0;}
.overview .box.bottom .text .li-overview li .num{
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.28px;
    display: flex;
    width: 18px;
    height: 18px;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 3px;
    left: 0;
    background: #0278cb;
    border-radius: 50%;
}
.overview .box.bottom .text .dl-overview{
    margin: 1.5rem 0 0;
}
.overview .box.bottom .text .dl-overview dt{
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: -0.14px;
    margin: 0 0 0.5rem;
}
.overview .box.bottom .text .dl-overview dd{
    font-size: 1.5rem;
    line-height: 1.45;
    letter-spacing: -0.15px;
}

.biz-intro{}
.biz-intro .text{
    margin: 0 0 6rem;
}
.biz-intro .text p{
    color: #333;
}
.biz-intro .text p.ko{
    font-size: 3rem;
    line-height: 1.45;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0 0 2.8rem;
}
.biz-intro .text p.en{
    font-size: 1.8rem;
    font-weight: 450;
    line-height: 1.5;
    letter-spacing: 0;
    margin: 0;
    width: 65%;
    color: #777;
}

.biz-intro .text p.en br {
    display: none;
}
.biz-intro .image{}

.biz-wrap{
    margin: 0 0 7rem;
}

.biz-wrap p.ko {
    color: #222;
    font-size: 18px;
    font-style: normal;
    font-weight: 550;
    line-height: 1.6;
    letter-spacing: -0.18px;
    margin: 0 0 1.5rem;
    margin-top: 3rem;
}
.biz-wrap p.en {
    color: #666;
    font-size: 16px;
    font-weight: 380;
    line-height: 1.6; 
    letter-spacing: -0.16px;
}
.biz-wrap h5{
    color: #0378cb;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 2.5rem;
}
.biz-wrap .li-dash{}
.biz-wrap .li-dash li{
    font-size: 1.6rem;
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
    display: flex;
    gap: 1rem;
    margin-top: 0.8rem;
}
.biz-wrap .li-dash li:first-child{margin-top: 0;}
.biz-wrap .li-dash li::before{
    content: '';
    display: block;
    width: 6px;
    height: 2px;
    background: #b5b5b5;
    position: absolute;
    top: 11px;
    left: 0;
}
.biz-wrap .li-dash li b{
    font-weight: 600;
}

/* Tank Master (busienss02) */
#business.biz02 .subHeader{display: none;}
#business.biz02 .subMenu{display: none;}
#business.biz02 .subContent{
    padding: 0;
}
.biz02-wrap{
    height: 80vh;
    background: url(/public/img/sub/biz02-bg.jpg) no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75vh;
}

.biz03 .subContent .content.con0 {
    padding-bottom: 8rem;
}
.biz02-wrap .caption{/* margin-top: 13rem; */}
.biz02-wrap .caption .title{
    display: flex;
    gap: 8rem;
    align-items: center;
    background: rgba(0, 85, 180, 0.6);
    backdrop-filter: blur(15px);
    padding: 6.5rem 9rem 6.6rem;
    border-radius: 20px;
    margin:  0 0 6rem;
}
.biz02-wrap .caption .title h3{
    margin: 0;
    font-family: var(--font-ns);
}
.biz02-wrap .caption .title h3 b{
    color: #fff;
    font-size: 7.4rem;
    font-weight: 800;
    line-height: 1;
}
.biz02-wrap .caption .title h3 small{
    display: block;
    color: #23a4ff;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.28px;
    margin-bottom: 1.5rem;
}
.biz02-wrap .caption .title .li-dot{}
.biz02-wrap .caption .title .li-dot > li{
    position: relative;
    color: #fff;
    font-size: 2rem;
    line-height: 1.5; /* 28.05px */
    letter-spacing: -0.2px;
    padding-left: 2rem;
    margin: 1rem 0;
}
.biz02-wrap .caption .title .li-dot > li::before{
    content: '';
    display: block;
    background: #0095ff;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    top: 13px;
    left: 0;
}

.biz02-wrap .caption .li-check{}
.biz02-wrap .caption .li-check > li{
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.45;
    color: #fff;
    position: relative;
    padding-left: 3.8rem;
    margin-top: 1.2rem;
}
.biz02-wrap .caption .li-check > li:first-child{margin: 0;}
.biz02-wrap .caption .li-check > li::before{
    content: '\e876';
    font-family: 'Material Symbols Outlined';
    color: #3EAFFF;
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2.6rem;
    font-weight: 500;
}

.location {
    display: flex;
    gap: 7.5rem;
    align-items: end;
}

.location .map {flex: 0 0 60rem;}

.location .text {flex-grow: 0;flex-shrink: 1;}

.location .text .addr {
    color: #333;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4; /* 23.8px */
    margin-bottom: 5rem;
}

.location .text .addr .ko {
    display: block;
    margin-top: 1.5rem;
    font-weight: 400;
}

.location .li-loca li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.location .li-loca .des {
    color: #444;
    font-size: 15px;
    font-style: normal;
    line-height: 1.5; /* 22.5px */
}

.location .li-loca .tit{
    display: inline-block;
    width: 7rem;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    margin-right: 1.5rem;
}

.location .li-loca .material-symbols-outlined {
    font-family: var(--gms);
    font-variation-settings: var(--gms-400-fill);
    font-size: 2rem;
    color: #26a4ff;
    margin-right: 1.2rem;
}

/* 게시판, 주문폼 공통 스타일 */
.board_wrapper,
.calendar_wrapper {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}
.search_wrap {
  margin-top: 80px;
  margin-bottom: 0;
}
.board_wrapper .table.table_default {
  border-top: 2px solid #333;
}
.table.table_default tr th,
.table.table_default tr td {
  border-color: #e6e6e6;
  font-size: 16px;
  padding: 1.4rem 1.4rem;
}
.table.table_default tbody tr th.num {
    font-weight: 400;
}
.table.table_default tr td.writer,
.table.table_default tr td.regdate,
.table.table_default tr td.hits {
    font-size: 15px;
    color: #777;
}
.table.table_default tr td.subject {
  /* position: relative; */
  padding: 20px 15px;
  line-height: 1em;
}

.table.table_default tr td.subject a {
    font-size: 1.7rem;
    font-weight: 450;
    letter-spacing: -0.01em;
}
.table.table_default thead th {
  font-weight: 700;
  color: #333;
  background: #fff;
  border-color: #333;
  padding: 16px;
}
.table.table_default tbody .subject .badge {
  top: 17px;
  position: static;
  padding: 5px 6px 2px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3em;
  background: #3c85c7;
  border: none;
  border-radius: 1px;
  font-size: 12px;
  display: inline-block;
  margin-top: -3px;
}
.table.table_default tr td.subject > span {
    display: flex;
}
.table.table_default tbody .subject a:hover {
  text-decoration: underline;
}
.table.table_default tbody .subject span>.badge+a {
  padding-left: 18px;
}

.board_data_view {
    border-top: 2px solid #333;
    border-bottom: 1px solid #ccc;
}
.board_data_view .header_wrap {
    padding: 0;
    border-bottom: 1px solid #e1e1e1;
}
.board_data_view .header_wrap .title {
    padding: 3rem;
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3em;
    border-bottom: 1px solid #eee;
    background: #fff;
}
.board_data_view .header_wrap .info {
    margin: 0;
    padding: 11px 0 11px;
}

#item_captcha #captcha {
    height: 4.5rem;
}
#item_captcha #captcha + br{
    display: none;
}

.board_wrapper .table.board_write_table tbody tr th {
    font-size: 1.6rem;
    font-weight: 600;
    color: #222;
    letter-spacing: -0.01em;
    background: #f8f8f8;
    padding-top: 2.6rem;
    position: static;
}

.board_wrapper .table.board_write_table tbody tr th > span.required_text {
    font-weight: 600;
    margin-left: -0.7em;
    position: static;
}

.board_wrapper .table.board_write_table > :where(tbody, tfoot, thead) > tr > :where(th, td) {
    border-color: #e3e3e3;
}

#form_request .text-muted.form-caption {
    font-size: 1.3rem;
}

#form_request .text-muted.form-caption i {
    display: none;
}

.board_wrapper .table.board_write_table tbody tr td {
    padding: 1.5rem 1.5rem;
}

#wr_captcha {
    margin-top: 0 !important;
}

.checkbox.privacy_checkbox {
    margin-bottom: 10px !important;
}

.form-control {
    font-size: 1.5rem;
    height: 4.5rem;
    padding: 0.9rem 1.2rem;
}

.btn {
  min-height: 4.5rem;
}

.board_wrapper .table.board_write_table :where(.input-group, .form-control) {
    width: 350px;
}

#newsroom .subContent_title,
#request .subContent_title{
     display: none;    
}
#request #list_btn{display: none;}

.philosophy{}
.philosophy p{
    margin: 0 0 6rem;
    /* text-align: center; */
}
.philosophy p .kr{
    font-size: 3rem;
    line-height: 1.45;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0 0 2.8rem;
    display: block;
    color: var(--page-color);
}
.philosophy p .en{
    display: block;
    font-size: 1.8rem;
    font-weight: 450;
    line-height: 1.5;
    letter-spacing: 0;
    margin: 0;
    color: #777;
}


@media (max-width: 767px){
    .subHeader {
        height: 30rem;
        padding-bottom: 6.4rem;
    }
    .subHeader .container h2 {
        font-size: 5.4rem;
    }



    .subMenu {
        padding: 0;
        margin-top: 0;
        position: relative;
    }
    .subMenu .container {
        width: 100%;
        padding: 0 0rem;
        border-radius: 0;
    }
    .subMenu .subBreadCrumb {
        display: flex;
        flex-direction: column;
    }
    .subMenu .subBreadCrumb > li > .btn-bc.drdwn {
        width: 100%;
    }
    .subContent {
        padding-top: 8rem;
    }
    .subContent_title {
        padding: 0 0 6rem;
    }
    .subContent_title h3 {
        margin: 0;
        font-size: 4.3rem;
    }
    .subContent .content h4 {
        margin: 0 0 3rem;
    }
    .history {
        display: flex;
        gap: 4rem;
        flex-direction: column;
    }
    .history .image {
        width: 100%;
    }
    .history .image img{width: 100%;}

    .overview {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
    .overview .box {
        grid-column: auto;
    }
    .overview .box.bottom {
        grid-column: initial;
    }
    .philosophy p .kr {
        font-size: 2.3rem;
    }
    .philosophy p .en {
        display: block;
        font-size: 1.4rem;
    }
    .biz-intro .text p.ko {
        font-size: 2.3rem;
    }
    .biz-intro .text p.en{
        font-size: 1.4rem;
        width: 100%;
    }
    .biz02-wrap {
        padding: 3rem;
    }
    .biz02-wrap .caption .title {
        display: flex;
        gap: 4rem;
        backdrop-filter: blur(15px);
        padding: 3.5rem 3rem 3.6rem;
        border-radius: 20px;
        margin: 0 0 3rem;
        flex-direction: column;
    }
    .biz02-wrap .caption .title h3 b {
        color: #fff;
        font-size: 5.7rem;
    }
    .biz02-wrap .caption .title h3 small {
        display: block;
        color: #23a4ff;
        font-size: 2.2rem;
    }
    .biz02-wrap .caption .title .li-dot > li {
        position: relative;
        color: #fff;
        font-size: 1.6rem;
    }
    .biz02-wrap .caption .title .li-dot > li::before {
        width: 4px;
        height: 4px;
        top: 9px;
    }
    .biz02-wrap .caption .li-check {
        padding: 0 3rem;
    }
    .biz02-wrap .caption .li-check > li {
        font-size: 1.5rem;
    }
    .biz02-wrap .caption .li-check > li::before {
        top: -9px;
    }

    .location {
        display: flex;
        gap: 3.5rem;
        flex-direction: column;
        align-items: normal;
    }
    .location .map {
        flex: 1;
    }


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

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

    #list_btn{display: none;}
    #write_btn{margin: 0;}
}
@media (min-width: 768px) and  (max-width: 991px){
    .subMenu .container {
        width: 100%;
        padding: 0 3rem;
    }
    .history {
        display: flex;
        gap: 5.4rem;
    }
    .history .image {
        width: 19rem;
    }
    #business .subMenu .subBreadCrumb > li.lv-2 > .btn-bc {
        min-width: 39rem;
    }
    #business.biz03 .subMenu .subBreadCrumb > li > .btn-bc {
        font-size: 1.2rem;}
    .subMenu .subBreadCrumb > li > .dropdown-menu > li > a {
        color: #666;
        font-size: 1.3rem;
    }
}
@media (min-width: 992px) and  (max-width: 1199px){}
/* //서브페이지 */

/* 푸터 */

footer {text-align: left;padding: 5rem 0;background: #161616;color: #aaa;}
footer .footer-logo{}
footer .footer-logo h1{margin: 0;}
footer .footer-logo h1 > a{display: block;}
footer .footer-logo h1 > a > img{display: block;}
footer .footer-text{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
footer .footer-text p{}
footer .footer-text ul{padding-left: 0;margin-bottom: 0;}
footer .footer-text ul:after{content: '';clear: both;display: table;}
footer .footer-text ul li{float: left;margin-right: 1.7rem;line-height: 1.8;font-size: 1.4rem;letter-spacing: -0.14px;color: #aaa;}
footer .footer-text ul li strong{color: #eee;}
footer .footer-text ul li b{
    margin-right: 1.2rem;
}
footer .footer-text .copyrights{font-size: 1.3rem;line-height: 1.76923;letter-spacing: -0.13px;color: #5B5B5B;}

@media (max-width: 767px){}
@media (min-width: 768px) and  (max-width: 991px){}
@media (min-width: 992px) and  (max-width: 1199px){}
/* //푸터 */


.maintenance {padding: 7rem 2.5rem;text-align: center;background: var(--page-color2);}
.maintenance .icon {display: block;line-height: 1;font-size: 7rem;margin-bottom: 2rem;color: #bbd3df;}
.maintenance .big-cont {display: block;line-height: 1;font-size: 2.3rem;font-weight: bold;letter-spacing: -0.05em;margin-bottom: 1.8rem;opacity: 0.8;}
.maintenance .small-cont {display: block;line-height: 1.5;font-size: 1.5rem;letter-spacing: -0.03em;color: #818181;margin-bottom: 0;}
.member_wrapper {max-width: 117.0rem;}