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

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(https://example.com/MaterialIcons-Regular.eot);
    /* For IE6-8 */
    src: local('Material Icons'),
        local('MaterialIcons-Regular'),
        url(https://example.com/MaterialIcons-Regular.woff2) format('woff2'),
        url(https://example.com/MaterialIcons-Regular.woff) format('woff'),
        url(https://example.com/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;

    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;

    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;

    /* Support for IE. */
    font-feature-settings: 'liga';
}

.material-symbols-outlined {
    font-variation-settings: 'FILL'0,
        'wght'600,
        'GRAD'0,
        'opsz'48;
    font-size: 65px;
    position: relative;
    z-index: 1;
}

:root {
    --point-color: #0047bb;
    --point-text-color: #105edc;
    --point-color-hover: #003997;
    --point-text-color-hover: #044dc2;
    --dark-color: #333;
--page-grey-color: #ddd;
}

html {
    overflow-x: hidden;
    overflow-y: scroll;
}

#site {
    background-color: #fff;
    word-break: keep-all !important;
    padding-top: 90px;
    letter-spacing: -0.035em;
    color: #212121;
    font-size: 16px;
}

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

#site,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
button {
    font-family: 'Roboto', '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;}
 */

@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: #fff;
    border-bottom: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}

.navbar-header .navbar-brand {
    display: block;
    padding: 0;
    font-size: 20px;
    margin-left: 0 !important;
    height: auto;
    width: 213px;
    margin-top: 28px;
}

.navbar-header .navbar-brand img {
    margin-top: 0;
    display: inline-block;
}

.nav.navbar-nav>li>a {
    display: block;
    height: 100%;
    padding: 35px 35px;
    font-size: 18px;
    color: #212121;
    font-weight: 500;
    letter-spacing: -0.045em;
}

.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 {
    color: var(--point-text-color);
    background: none;
}

.nav.navbar-nav li .dropdown-menu {
    left: 50%;
    right: auto;
    border-radius: 0;
    border: 0;
    padding: 10px;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
}

.nav.navbar-nav li .dropdown-menu li a {
    padding: 10px 15px;
    text-align: center;
    color: #fff;
}

.nav.navbar-nav li .dropdown-menu li a:hover {
    background: #0048bc;
}
.navbar.navbar-inverse .container{
    position: relative;
}
.lang-wrap{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: calc(((100% - 1170px) / 2) - 145px);
}
.lang-wrap .lang-open{
    border-radius: 50px;
    border: 1px solid #ccc;
    padding: 3px 10px;
    background: #fff;
    display: flex;
    align-items: center;
    font-size: 14px;
}
.lang-wrap .lang-open > span{
    font-size: 18px;
    margin-right: 4px;
}
.lang-wrap .lang-open::after{
    content: '';
    display: block;
    width: 6px;
    height: 4px;
    border-top: 4px solid #000;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    margin-left: 8px;
}
.lang-wrap .lang-drop{
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid #ddd;
    background: #fff;
    padding: 5px 10px;
    border-radius: 10px;
}
.lang-wrap .lang-drop.open{
    display: flex;
}
.lang-wrap .lang-drop .lang{
    border: 0;
    background: none;
    font-size: 13px;
    padding: 6px 0;
    opacity: 0.5;
}
.lang-wrap .lang-drop .lang.active{
    opacity: 0.7;
}
.lang-wrap .lang-drop .lang:hover{
    text-decoration: underline;
}
.lang-wrap .lang-drop .lang.active:hover{
    text-decoration: none;
}
/* //상단 네비게이션 */

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

#mainCarousel .carousel-inner .item .carousel-caption {
    padding: 0;
    top: 23%;
    left: calc((100% - 1140px) / 2);
    right: calc((100% - 1140px) / 2);
    text-shadow: 0 0 25px rgb(0 57 112);
    text-align: left;
}

#mainCarousel .carousel-inner .item h1 {
    font-size: 75px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

#mainCarousel .carousel-inner .item P {
    font-size: 21px;
    font-weight: 400;
    line-height: 1.52;
    letter-spacing: -0.03em;
}

#mainCarousel .carousel-indicators {
    bottom: 25px;
}

#mainCarousel .carousel-indicators>li,
#mainCarousel .carousel-indicators>li.active {
    width: 11px;
    height: 11px;
    margin: 0 1px;
    border: 1px solid #fff;
}

#mainCarousel .carousel-indicators>li.active {}

#mainCarousel .carousel-control {
    display: none;
}


.carousel-link {
    max-width: 1140px;
    width: 100%;
    position: absolute;
    top: 78%;
    left: 50%;
    transform: translateX(-50%);
}

.carousel-link>.row {
    margin: 0 -8px;
}

.carousel-link>.row {}

.carousel-link>.row>div {
    padding: 0 8px;
}

.carousel-link .main-link {
    display: flex;
    text-align: center;
    background-color: rgb(3 10 74 / 65%);
    height: 75px;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
    box-shadow: 0 0 38px rgb(0 0 0 / 10%);
}

.carousel-link .main-link:hover {
    text-decoration: none;
    background: rgb(3 10 74 / 100%);
}

.carousel-link .main-link:hover .inner span {
    color: #fff;
}

.carousel-link .main-link .inner {
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.carousel-link .main-link .inner .material-symbols-outlined {
    display: block;
    font-size: 36px;
    margin-bottom: 0;
    font-variation-settings: 'FILL'0, 'wght'300, 'GRAD'0, 'opsz'48;
    color: #a7c6ff;
    color: #fff;
    transition: all .3s ease;
}

.carousel-link .main-link .inner .tit {
    display: block;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.055em;
}
/* //슬라이드 영역 */

/* 메인 중단영역 */

#main_wrapper>section {
    padding: 120px 0;
}

#main_wrapper>#main01 {}

#main_wrapper>#main01 .main01-link {
    display: block;
    background: url(/public/img/main/main01-bg.jpg) no-repeat center / cover;
    height: 340px;
    position: relative;
}

#main_wrapper>#main01 .main01-link:hover {
    text-decoration: none;
}

#main_wrapper>#main01 .main01-link .inner {
    display: block;
    position: absolute;
    left: 50px;
    bottom: 45px;
}

#main_wrapper>#main01 .main01-link .inner .tit {
    display: block;
    color: #fff;
    font-size: 48px;
    line-height: 1;
    font-weight: 500;
    margin: 0 0 13px;
    letter-spacing: 0;
}

#main_wrapper>#main01 .main01-link .inner .tit .more {
    display: inline-block;
    margin-left: 30px;
    font-size: 13px;
    line-height: 1;
    padding: 10px 22px;
    border: 1px solid rgb(255 255 255 / 85%);
    vertical-align: middle;
    margin-top: -7px;
    font-weight: 400;
    transition: all 0.3s;
    letter-spacing: -0.03em;
}

#main_wrapper>#main01 .main01-link:hover .tit .more {
    background: #fff;
    color: #111;
}

#main_wrapper>#main01 .main01-link .inner .des {
    color: #fff;
    display: block;
    font-size: 20px;
    letter-spacing: -0.045em;
    font-weight: 350;
}

#main_wrapper>#main02 {
    padding-top: 20px;
    padding-bottom: 150px;
}

#main02 h3 {
    margin: 0 0 50px;
    text-align: center;
    font-size: 48px;
    font-weight: 500;
}

/* 
#main02 h3::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #333;
    display: block;
    margin: 20px auto 60px;
} */
#main_wrapper>#main02 .main02-link {
    display: block;
    text-align: center;
    padding: 65px 0 60px;
    border: 1px solid #f5f5f5;
    border-top: 1px solid #212121;
    background: #f5f5f5;
    transition: all 0.3s;
}

#main_wrapper>#main02 .main02-link:hover {
    text-decoration: none;
    border: 1px solid #212121;
}

#main_wrapper>#main02 .main02-link .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

#main02 .main02-link .material-symbols-outlined {
    display: block;
    width: 125px;
    height: 125px;
    line-height: 125px;
    background: #094ab5;
    border-radius: 50%;
    font-size: 65px;
    color: #fff;
    margin-bottom: 15px;
    font-variation-settings: 'FILL'0, 'wght'400, 'GRAD'0, 'opsz'48;
}

#main02 .main02-link .material-symbols-outlined::after {
    content: '';
    width: calc(100% + 24px);
    height: calc(100% + 24px);
    border: 2px dotted #aaa;
    position: absolute;
    left: -12px;
    top: -12px;
    border-radius: 50%;
}

#main02 .row>div:nth-child(2) .material-symbols-outlined {
    background: #555c66;
}

#main_wrapper>#main02 .main02-link .tit {
    font-size: 22px;
    font-weight: 500;
    color: #222;
    letter-spacing: -0.045em;
}

@media (min-width: 768px) and (max-width: 991px) {
    #main_wrapper>#main01 .main01-link {
        height: 240px;
    }
}

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

/* 서브페이지 */

.subHeader {
    height: 210px;
    background-image: url(/public/img/sub/sub_title.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.subHeader .container {
    height: 100%;
    position: relative;
}

.subHeader .container h2 {
    text-align: center;
    color: #fff;
    font-size: 46px;
    margin: 11px 0 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 500;
}

.subHeader .container .breadcrumb {
    padding: 0;
    margin: 0;
    background: none;
    position: absolute;
    top: 15px;
    right: 20px;
}

.subHeader .container .breadcrumb>li,
.subHeader .container .breadcrumb>li>a,
.subHeader .container .breadcrumb>li.active {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.2px;
    line-height: 1;
}

.breadcrumb>li+li:before {
    content: '\e5e1';
    font-family: 'Material Symbols Outlined';
    font-size: 11px;
    padding: 0 4px;
    color: rgb(255 255 255 / 80%);
    vertical-align: bottom;
}

.subMenu {
    background: #f3f3f3;
}

.subMenu .nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}
[lang="en"] [id^="rnd"] .subMenu .nav{gap: 30px}
.subMenu .nav>li {
    /* flex: 1; */
    margin: 0;
}

.subMenu .nav>li>a {
    background: none;
    border-radius: 0;
    font-size: 17px;
    color: #212121;
    font-weight: 400;
    text-align: center;
    padding: 19px 0;
    min-width: 170px;
    letter-spacing: -0.045em;
}

.subMenu .nav>li.active>a,
.subMenu .nav>li.active>a:hover {
    font-weight: 700;
    color: #0047bb;
    text-decoration: underline;
    text-underline-position: under;
    text-decoration-thickness: 1px;
    background: rgba(0, 0, 0, 0);
}

.subMenu .nav>li>a:hover {
    opacity: 1;
    color: #0047bb;
}

.subContent {
    padding-bottom: 60px;
}

.subContent_title {
    padding: 90px 0 20px;
}

.subContent_title h3 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    color: #212121;
    letter-spacing: -0.055em;
    text-align: center;
}

.subContent .content,
.bbs-section {
    padding: 60px 0;
}

.bbs-area .board_wrapper {
    margin-top: 0;
}

.subContent .content h4 {
    margin: 0 0 25px;
    font-size: 35px;
    font-weight: 500;
    position: relative;
    color: #212121;
    letter-spacing: -0.04em;
}

.subContent .content h4::before {
    content: '';
    width: 40px;
    height: 3px;
    background: #0047bb;
    display: block;
    margin: 0 0 12px;
}

.subContent .content h4 + h5{
    font-size: 21px;
    font-weight: 700;
}
#about01 .con1 {
    padding: 0;
    margin-top: 30px;
    background: linear-gradient(to bottom, #fff, #f1f1f1);
}

#about01 .subContent {
    padding-bottom: 0;
}

.greeting {}

.greeting .row {
    display: flex;
    align-items: end;
}

.greeting .row>div {}

.greeting .img-area {
    width: 45%;
    padding-left: 120px;
}

.greeting .img-area img {}

.greeting .txt-area {
    width: 60%;
    padding-left: 30px;
}

.greeting .txt-area p {
    font-size: 16px;
    line-height: 1.85;
}

.greeting .txt-area p.intro {
    font-size: 34px;
    margin: 0 0 30px;
    font-weight: 400;
    line-height: 1.45;
    color: #212121;
    letter-spacing: -0.055em;
}

.greeting .txt-area p.intro b {
    color: #0047bb;
    font-weight: 500;
}

.greeting .txt-area p.epil {
    text-align: right;
    margin: 30px 0 70px;
    font-size: 14px;
    font-weight: 400;
    color: #212121;
}

.greeting .txt-area p.epil b {
    font-size: 20px;
    margin-left: 10px;
}


.history dl {
    padding: 30px 0 15px 250px;
    margin-bottom: 50px;
    position: relative;
    border-top: 1px solid #ddd;
}

.history dl.line2 {
    margin-bottom: 110px;
}

.history dl::before {}

.history dl::before,
.history dl::after {
    content: '';
    display: block;
    position: absolute;
}

.history dl::after {
    width: 23px;
    height: 23px;
    background: #fff;
    left: -12px;
    top: -2px;
    border-radius: 50%;
}

.history dl::before {
    width: 230px;
    height: 2px;
    z-index: 1;
    top: -1px;
    left: 0;
    background: var(--point-text-color);
}

.history dl dt {
    position: absolute;
    top: 20px;
    left: 0px;
    font-size: 40px;
    color: #0047bb;
    max-width: 190px;
    line-height: 1.25;
    font-weight: 400;
}

.history dl dd {
    font-size: 18px;
    margin-top: 5px;
    padding-left: 34px;
    position: relative;
}

.history dl dd::before {
    left: 20px !important;
}

.history dl dt+dd {}

.history dl dd::before {
    content: '';
    display: block;
    width: 2px;
    height: 2px;
    background: #333;
    position: absolute;
    top: 10px;
    left: 0;
}

.li-location {
    display: flex;
    align-items: center;
}

.location {
    display: flex;
    justify-content: space-between;
    margin: 25px 0 0;
}

.location p {
    font-size: 20px;
    margin: 0;
}

.location p span {
    background: #0047bb;
    color: #fff;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: sub;
    margin-right: 11px;
}

.li-location>li {
    font-size: 16px;
    line-height: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    margin-left: 35px;
}

.li-location>li>.material-symbols-outlined {
    font-size: 20px;
    margin-right: 11px;
    color: #0152d7;
}

[id^="business0"] .content p.intro {
    position: relative;
    font-size: 18px;
    margin: 35px 0 60px;
    color: #212121;
    font-weight: 400;
    line-height: 1.78;
}

.business-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    border: 1px solid #ddd;
    padding: 55px 55px;
}

.business-wrap .business {
    display: flex;
    gap: 10px;
}

.business-wrap .business:nth-child(1) {
    width: 48%;
}

.business-wrap .business:nth-child(1) img {
    border: none;
    background: #fff;
}

.business-wrap>.business:nth-child(2) {
    width: 53%;
    flex-wrap: wrap;
}

.business-wrap .business .tit {
    width: 100%;
}

.business-wrap .business .tit h5 {
    margin: 0px 0 30px;
    padding: 0 0 15px;
    font-size: 30px;
    color: #0048bc;
    border-bottom: 2px solid;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.business-wrap .business .tit p {
    font-size: 15px;
    line-height: 1.55;
    color: #333;
    margin-top: -8px;
    margin-bottom: 20px;
}

.business-wrap .business .info {
    width: calc(50% - 5px);
}

.business-wrap .business .info.bottom {
    width: 100%;
}

.business-wrap .business .info h6 {
    margin: 0 0 15px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.07em;
    color: #111;
}

.business-wrap .business .info h6>span {
    color: #fff;
    background: #0048bc;
    display: inline-block;
    padding: 7px 15px;
    border-radius: 40px;
    margin-right: 10px;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0;
}

.business-wrap .business img {
    border: 1px solid #eaeaea;
}

.business-wrap .business .info .li-med {
    margin-top: 20px;
}

.business-wrap .business .info .li-med>li {
    font-size: 14px;
    margin-top: 4px;
    padding-left: 8px;
    position: relative;
    letter-spacing: -0.045em;
}

.business-wrap .business .info .li-med>li::before {
    content: '';
    display: block;
    width: 2px;
    height: 2px;
    background: #212121;
    position: absolute;
    top: 8px;
    left: 0;
}

.business-wrap .business .info h6 .dot {
    width: 8px;
    height: 8px;
    padding: 0;
    margin-top: -5px;
    vertical-align: middle;
    margin-right: 8px;
}

.business-wrap .business .info h6 .icon {
    height: 40px;
    width: 40px;
    vertical-align: middle;
    margin-top: -5px;
}

.business-wrap .business .info h6 .icon.i_size {
    background: #0048bc url(/public/img/sub/i_size.png) no-repeat center / 50%;
}

.business-wrap .business .info h6 .icon.i_temp {
    background: #0048bc url(/public/img/sub/i_temp.png) no-repeat center / 71%;
}

.biz02-image-wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 20px;
}
.biz02-image-wrap .box{
}
.biz02-image-wrap .box h5{
    margin: 0;
    padding: 15px;
    background: #0944a5;
    color: #fff;
    font-size: 19px;
    text-align: center;
    letter-spacing: -0.04em;
}
.biz02-image-wrap .box .item{
    position: relative;
}
.biz02-image-wrap .box .item img{}
.biz02-image-wrap .box .item .caption{
    text-align: center;
    padding: 14px 0;
    margin: 0;
    line-height: 1;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.45);
    color: #fff;
    backdrop-filter: blur(10px);
}
.biz02-image-wrap .box.grid-2-wrap{
    grid-column: 2 span;
}
.biz02-image-wrap .box.grid-2-wrap .grid-2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.biz02-image-wrap .box.grid-4-wrap{
    grid-column: 3 span;
}
.biz02-image-wrap .box.grid-4-wrap .grid-4{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.wellness-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 12px;
}

.wellness-wrap .wellness {
    border: 1px solid #eee;
}

.wellness-wrap .wellness img {
    width: auto;
    max-width: 100%;
    height: 100%;
}

.fire-fight-wrap {}

.fire-fight {
    margin: 0 0 30px;
    border: 1px solid #ddd;
}

.fire-fight h5 {
    font-size: 28px;
    font-weight: 400;
    margin: 0;
    padding: 40px 45px 0;
    letter-spacing: -0.055em;
    color: #111;
}

.fire-fight img {
    padding: 60px 50px;
}

.rnd_top {
    float: none;
    max-width: 850px;
    margin: 0 auto 75px;
}

.rnd_top p {
    text-align: center;
    color: #fff;
    font-size: 20px;
    letter-spacing: -0.055em;
    padding: 15px;
    font-weight: 500;
}

.rnd_top .top {
    background: #0047bb;
    max-width: 270px;
    margin: 0 auto 50px;
    padding: 25px;
    font-size: 24px;
    font-weight: 500;
}

.rnd_top .middle {
    background: #222f6e;
    margin: 0 auto 30px;
}

.rnd_top .row {
    margin: 0 -10px;
}

.rnd_top .row>div {
    padding: 0 10px;
}

.rnd_top dl dt {
    padding: 17px 0 0;
    text-align: center;
    color: #fff;
    background: #757575;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 10px;
    min-height: 58px;
}

.rnd_bottom h5 {
    font-size: 30px;
    font-weight: 400;
    margin: 0 0 30px;
    letter-spacing: -0.055em;
    color: #111;
}

.rnd_bottom .row {
    margin: 0 -10px;
}

.rnd_bottom .row>div {
    padding: 0 10px;
}

#rnd01 .rnd_top dl dd {
    font-size: 15px;
    text-align: center;
    border: 1px solid #d7d7d7;
    padding: 16px;
    margin: 0 0 4px;
    line-height: 1;
    /* letter-spacing: -0.045em; */
}

#rnd01 .rnd_top dl dd:before {
    top: 17px;
}

#rnd01 .rnd_bottom dl dt {
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
    padding: 0;
    font-weight: 500;
    letter-spacing: -0.055em;
    color: #0047bb;
    border: 1px solid #3173df;
    padding: 18px 0;
    background: #fff;
}

#rnd01 .rnd_bottom dl dd {
    font-size: 15px;
    text-align: center;
    border: 1px solid #d7d7d7;
    background: #f9f9f9;
    padding: 16px;
    margin: 0 0 4px;
    line-height: 1;
    letter-spacing: -0.045em;
}

#rnd01 .rnd_bottom dl dd:before {
    top: 6px;
}

#rnd02 h5 {
    position: relative;
    margin: 0 0 45px;
    font-size: 22px;
    font-weight: 600;
    color: #0047bb;
    letter-spacing: -0.055em;
    text-align: center;
}
#rnd02 h5::before,
#rnd02 h5::after {
    content: '';
    top: 11px;
    width: 43%;
    height: 1px;
    position: absolute;
    background: #ccc;
}
#rnd02 h5::before {
    right: 10px;
}
#rnd02 h5::after {
    left: 10px;
}

.cert {
    padding: 0 10px;
}

.cert img {
    border: 1px solid #ddd;
    padding: 50px 55px;
    margin-bottom: 20px;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.05);
}

.cert .caption {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    margin: 0px;
}

#support03 .board_wrapper {
    border-top: 1px solid #212121;
    padding: 60px 100px;
    background: #f5f5f5;
}

#support03 .table.board_write_table {
    border-top: none;
    border-bottom: none;
}

#support03 .board_wrapper .table.board_write_table tbody tr th {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.045em;
    background: rgba(0, 0, 0, 0);
    padding: 0 28px 0px;
}

#support03 .board_wrapper .table.board_write_table tbody tr th>span.required_text {
    left: 27px;
    font-size: 20px;
    color: var(--point-text-color);
}

#support03 .board_wrapper .table.board_write_table tbody tr th,
#support03 .board_wrapper .table.board_write_table tbody tr td {
    display: block;
    width: 100%;
}

#support03 .board_wrapper .table.board_write_table>tbody>tr>td {
    width: 100%;
    padding-bottom: 40px;
}

#support03 .board_wrapper .text-muted {
    margin-top: 10px !important;
    font-size: 15px;
}

#support03 .board_wrapper .table.board_write_table>tbody>tr>td .form-control {
    width: 100% !important;
    height: 50px;
    font-size: 15px;
    padding: 14px;
}

#item_agree .checkbox {
    font-size: 15px;
    margin-top: 0;
}

#item_agree .checkbox a {
    color: var(--point-text-color);
    text-decoration: underline;
}

#support03 .board_wrapper .table.board_write_table>tbody>tr>td,
#support03 .board_wrapper .table.board_write_table>tbody>tr>th,
#support03 .board_wrapper .table.board_write_table>tfoot>tr>td,
#support03 .board_wrapper .table.board_write_table>tfoot>tr>th,
#support03 .board_wrapper .table.board_write_table>thead>tr>td,
#support03 .board_wrapper .table.board_write_table>thead>tr>th {
    border-top: none;
    border-bottom: none;
}

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

.table.table_default thead th {
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
    font-size: 16px !important;
    font-weight: 500;
}

.table.table_default tr th,
.table.table_default tr td {
    font-size: 14px;
}

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

.table.table_default tbody .subject {
    font-size: 16px;
    color: #212121;
}

.notice .badge {
    border-radius: 1px;
    background: var(--point-text-color);
    font-weight: 500;
    padding: 4px 6px;
    margin-right: 6px;
}

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

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

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

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

.board_wrapper .table.board_write_table{
    border-top: 1px solid #212121;
}
.board_wrapper .table.board_write_table>:where(tbody,tfoot,thead)>tr>:where(th,td) {
    border-top: none;
    border-bottom: 1px solid var(--page-grey-color);
}
.board_wrapper .table.board_write_table tbody tr th{
    font-weight: 500;
    font-size: 16px;
}

.checkbox label, .radio label {
    font-size: 15px;
}
.btn.btn-primary {
    background: var(--point-color);
    border-color: var(--point-color);
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background: var(--point-color-hover);
    border-color: var(--point-color-hover);
}

/* //서브페이지 */

/* 푸터 */

footer {
    text-align: left;
    padding: 55px 0 55px;
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    letter-spacing: 0;
}

footer .row {
    display: flex;
    align-items: start;
}

footer .footer-logo {}

footer .footer-logo h1 {
    margin: 0;
}

footer .footer-logo h1>a {
    display: block;
}

footer .footer-logo h1>a>img {
    display: block;
    opacity: 0.75;
}

footer .footer-text {
    padding-left: 50px;
}

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: 15px;
    line-height: 1.5;
}

footer .footer-text ul li address {
    margin-bottom: 0;
    line-height: 1.4;
}

footer .footer-text .copyrights {
    display: block;
    font-size: 12px;
    margin-top: 20px;
    letter-spacing: 1px;
    opacity: 0.65;
}

/* //푸터 */


.maintenance {
    margin-top: 5px;
    border: 7px solid #E5E5E5;
    padding: 50px 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;
}

.member_wrapper {
    max-width: 1170px;
}





@media (min-width: 768px) {
    .navbar-right {
        margin-right: -35px;
    }
}


@media (max-width: 767px) {
    #site {
        padding-top: 53px;
    }
    .lang-wrap{
    position: static;
    top: auto;
    transform: translateY(0);
}
    .lang-wrap .lang-open{display: none;}
    .lang-wrap .lang-drop{display: flex;position: static;flex-direction: row;align-items: center;justify-content: flex-end;border: 0;border-radius: 0;background: #0047bb;padding: 3px 15px;gap: 15px;}
    .lang-wrap .lang-drop .lang{
    color: #fff;
}
    .lang-wrap .lang-drop .lang.active{
    opacity: 1;
    font-weight: 500;
}
    .navbar-header .navbar-brand {
        margin-top: 15px;
        margin-left: 15px !important;
    }

    .navbar-header .navbar-brand img {
        width: 140px;
    }

    .navbar-inverse .navbar-toggle {
        border: 0;
        padding: 10px 0;
        margin: 10px 15px;
    }

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

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

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

    .navbar-nav {
        margin: 0;
        padding: 20px 0;

    }

    .nav.navbar-nav>li>a {
        display: block;
        height: 100%;
        padding: 14px 15px;
        font-size: 17px;
        text-align: center;
    }

    .nav.navbar-nav li .dropdown-menu {
        transform: translateX(0);
        background: #f3f3f3;
        padding: 14px 0;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a{
        color: #666;
        padding: 6px;
        font-size: 14px;
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus, 
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{
        text-decoration: underline;
        text-underline-position: under;
        color: #333
    }
    #mainCarousel .carousel-inner .item {
        height: 500px;
    }

    #mainCarousel .carousel-inner .item::after {
        content: '';
        width: 100%;
        height: 60%;
        background: linear-gradient(to bottom, #000353, transparent);
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0.4;
    }

    #mainCarousel .carousel-inner .item .carousel-caption {
        top: 22%;
        left: 30px;
        right: 30px;
    }

    #mainCarousel .carousel-inner .item h1 {
        font-size: 37px;
    }

    #mainCarousel .carousel-inner .item P {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.45;
    }

    #mainCarousel .carousel-inner .item P br {
        display: none;
    }

    .carousel-link {
        top: 82%;
        width: 85%;
    }

    .carousel-link .main-link {
        height: 58px;
        background: rgb(3 10 74 / 100%);
    }

    .carousel-link .main-link .inner {
        gap: 5px;
    }

    .carousel-link .main-link .inner .tit {
        font-size: 16px;
    }

    .carousel-link .main-link .inner .material-symbols-outlined {
        display: block;
        font-size: 32px;
        transform: translate(0, -2px);
        margin-left: -7px;
    }

    #mainCarousel .carousel-indicators {
        bottom: auto;
        top: 40%;
        text-align: left;
        margin-left: 0;
        left: 30px;
        right: 30px;
    }

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

    #main_wrapper>#main01 {
        padding: 0;
    }

    #main_wrapper>#main01>.container {
        padding: 0;
    }

    #main_wrapper>#main01 .main01-link {
        height: 150px;
    }

    #main_wrapper>#main01 .main01-link .inner {
        display: block;
        position: absolute;
        top: 50%;
        left: 30px;
        bottom: auto;
        right: 20px;
        transform: translateY(-50%);
    }

    #main_wrapper>#main01 .main01-link .inner .tit {
        font-size: 28px;
        margin: 0 0 15px;
    }

    #main_wrapper>#main01 .main01-link .inner .tit .more {
        display: inline-block;
        margin-left: 15px;
        font-size: 12px;
        line-height: 1;
        padding: 5px 11px;
    }

    #main_wrapper>#main02 {
        padding: 50px 15px 50px;
    }

    #main02 h3 {
        font-size: 30px;
        margin: 0 0 29px;
    }

    #main02 .row {
        margin: 0 -5px;
    }

    #main02 .row>div {
        padding: 0 5px;
    }

    #main02 .main02-link .material-symbols-outlined {
        width: 85px;
        height: 85px;
        line-height: 85px;
        background: #094ab5;
        border-radius: 50%;
        font-size: 45px;
    }

    #main02 .main02-link .material-symbols-outlined::after {
        width: calc(100% + 12px);
        height: calc(100% + 12px);
        left: -06px;
        top: -6px;
    }

    #main_wrapper>#main02 .main02-link .tit {
        font-size: 17px;
    }

    #main_wrapper>#main02 .main02-link {
        display: block;
        text-align: center;
        padding: 30px 0 25px;
    }

    #main_wrapper>#main02 .main02-link .inner {
        gap: 4px;
    }

    #main_wrapper>#main01 .main01-link .inner .des {
        font-size: 14px;
        width: 50%;
    }

    .carousel-link>.row>div {
        padding: 0 2px;
    }

    .carousel-link>.row {
        margin: 0;
    }

    .subHeader {
        height: 160px;
    }

    .subHeader .container h2 {
        font-size: 30px;
        margin: 5px 0 0;
    }
    .subHeader .container .breadcrumb{
        top: 8px;
        left: 16px;
    }
    .subHeader .container .breadcrumb>li, .subHeader .container .breadcrumb>li>a, .subHeader .container .breadcrumb>li.active{
        font-size: 11px;
    }

.breadcrumb>li+li:before {
    padding: 0 0px;
}
    .subMenu {
        display: none;
    }

    .subContent_title {
        padding: 50px 0 20px;
    }

    .subContent_title h3 {
        margin: 0;
        font-size: 26px;
    }

    .subContent .content,
    .bbs-section {
        padding: 30px 5px;
    }
    .greeting{
        padding: 0 10px;
    }
    .greeting .row {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
    }

    .greeting .row>div,
    .greeting .txt-area {
        width: 100%;
        padding-left: 15px;
    }

    .greeting .txt-area p.intro {
        font-size: 24px;
        margin: 35px 0 20px;
    }

    .greeting .img-area img {
        width: 75%;
    }
    
    .greeting .txt-area p {
        line-height: 1.67;
        font-size: 15px;
    }

    .greeting .txt-area p.intro br {
        display: none;
    }

    .history dl {
        padding: 15px 0 15px 0;
        margin-bottom: 20px;
        position: relative;
        border-top: 1px solid #ddd;
    }

    .history dl.line2 {
        margin-bottom: 20px;
    }

    .history dl::before {
        width: 85px;
    }

    .history dl dt {
        position: relative;
        top: auto;
        left: auto;
        font-size: 20px;
        color: #0047bb;
        max-width: none;
        line-height: 1.25;
        font-weight: 500;
        margin-bottom: 15px;
    }

    .history dl dd {
        font-size: 15px;
        margin-top: 5px;
        padding-left: 13px;
        position: relative;
    }

    .history dl dd::before {
        left: 4px !important;
    }

    .location {
        flex-direction: column;
    }

    .location p {
        font-size: 15px;
        margin: 0;
        display: flex;
        font-weight: 500;
    }

    .location p span {
        background: #0047bb;
        color: #fff;
        border-radius: 50%;
        flex: 0 0 34px;
        width: 34px;
        height: 34px;
        line-height: 34px;
        text-align: center;
    }

    .li-location {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        margin-top: 10px;
    }

    .li-location>li {
        margin: 12px 0 0 7px;
        letter-spacing: 0;
        font-size: 14px;
    }

    .li-location>li>.material-symbols-outlined {
        margin-right: 18px;
    }

    .subContent .content h4 {
        margin: 0 0 15px;
        font-size: 23px;
    }

    [id^="business0"] .content p.intro {
        position: relative;
        font-size: 15px;
        line-height: 1.67;
        margin-top: 15px;
        margin-bottom: 35px;
    }

    .business-wrap {
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        padding: 25px 25px 35px;
    }

    .business-wrap .business {
        flex-direction: column;
    }

    .business-wrap .business:nth-child(1),
    .business-wrap .business:nth-child(2),
    .business-wrap .business:nth-child(3) {
        width: 100%;
    }

    .business-wrap .business .tit h5 {
        margin: 20px 0 5px;
        font-size: 23px;
        border-bottom: none;
        padding: 0;
    }

    .business-wrap .business .tit p {
        margin-top: 15px;
    }

    .business-wrap .business>* {
        width: 100% !important;
    }

    .business-wrap .business .info {
        margin-top: 20px;
    }

    .business-wrap .business .info.bottom {margin-top: 0;}

    .business-wrap .business .info h6 {
        margin: 0 0 15px;
        font-size: 18px;
        font-weight: 500;
    }

    .business-wrap .business .info .li-med>li {
        margin-top: 3px;
    }

    .business-wrap .business .info h6>span {
        padding: 7px 8px 5px;
        margin-right: 6px;
        font-size: 14px;
    }
    .rnd_top{
        margin-bottom: 25px;
    }
    .rnd_top .top{
        width: 100%;
        max-width: 240px;
        font-size: 20px;
        padding: 15px;
        margin-bottom: 30px;
    }
    .rnd_top .middle {
        font-size: 18px;
        max-width: 240px;
        margin: 0 auto 20px;
    }
    #rnd01 .rnd_top dl dd {
        max-width: 240px;
        margin: 0 auto 2px;
        padding: 14px;
        font-size: 14px;
    }
    #rnd01 .rnd_bottom dl dd {
        font-size: 14px;
        padding: 14px;
        max-width: 240px;
        margin: 0 auto 2px;
    }
    #rnd01 .rnd_bottom dl dt {
        font-size: 16px;
        min-height: 48px;
        padding: 13px;
        max-width: 240px;
        margin: 0 auto 3px;
    }
    #rnd02 h5 {
        margin: 0 0 30px;
        font-size: 19px;
    }
    #rnd02 h5::before, #rnd02 h5::after {
        top: 8px;
        width: 36%;
    }
    #rnd02 h5::before {
        right: 0;
    }
    #rnd02 h5::after {
        left: 0;
    }
    .rnd_bottom h5 {
        text-align: center;
        font-size: 20px;
        font-weight: 500;
        margin: 0 0 20px;
    }
    .rnd_top dl dt {
        font-size: 16px;
        min-height: 48px;
        padding: 13px;
        max-width: 240px;
        margin: 0 auto 3px;
    }
    .cert {
        padding: 0;
        margin: 0 0 30px;
        margin-bottom: 25px;
    }
    .cert .caption {
        font-size: 15px;
    }
    #rnd02 .con1 .row > div {
        padding: 0 7px;
    }
    
    #rnd02 .con1 .row {
        margin: 0;
    }

    .cert img {
        padding: 5px 5px;
        margin-bottom: 10px;
    }

    #support03 .board_wrapper {
        padding: 20px 10px 50px;
    }

    #support03 .board_wrapper .table.board_write_table>tbody>tr>td {
        width: 100%;
        padding-bottom: 10px;
        padding-top: 7px;
    }

    #item_agree .checkbox {
        font-size: 14px;
    }

    .board_wrapper .text-center {
        margin-top: 30px;
    }

    #support03 .board_wrapper .text-muted {
        font-size: 12px;
    }

    .table.table_default thead th{
        font-size: 14px !important;
        padding: 12px;
    }

    .table.table_default thead th.subject {
        width: 100%;
    /* 등록된 게시글 없을 때 */
    }

    .table.table_default tbody .subject {
        font-size: 15px;
    }

    .table.table_default tbody .subject a:hover, .table.table_default tbody .subject a:focus {
        text-decoration: underline;
    }  
    .table.table_default tr td {
        padding: 12px;
    }
    .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%;
    }
    .board_data_view .header_wrap .title{
        font-size: 20px;
        padding: 18px 15px;
        border-bottom: 1px solid #eee;
    }

    .board_data_view .header_wrap {
        padding: 0;
    }

    .board_data_view .header_wrap .info {margin: 0;padding: 6px;}

    .board_data_view .header_wrap .info span {
        font-size: 12px;
    }
        #support03 .board_wrapper .table.board_write_table tbody tr th{
            font-size: 15px;
            padding: 10px 28px 0px !important;
        }

    #support03 .board_wrapper .table.board_write_table tbody tr th>span.required_text {
        font-size: 15px;
    }

    #support03 .board_wrapper .table.board_write_table>tbody>tr>td .form-control {
        height: 40px;
        font-size: 14px;
    }

    #list_btn {
        display: none;
    }

    #write_btn:not(.btn-outline-dark) {
        margin: 0;
        height: 50px;
        padding: 14px;
        font-size: 15px;
    }
    .search_wrap{
        margin-bottom: 30px;
    }
    .board_wrapper .table.board_write_table tbody tr th{
        font-size: 14px;
        padding: 10px 15px!important;
    }
    footer{
        padding: 30px 10px;
    }
    footer .row {
        display: flex;
        align-items: start;
        flex-direction: column;
    }

footer .footer-text ul li {
    font-size: 12px;
    margin-right: 10px;
}

footer .footer-text .copyrights {
    margin-top: 10px;
    font-size: 10px;
}

    footer .footer-logo {
        width: 50%;
        margin-bottom: 20px;
    }

footer .footer-logo h1>a>img {
    width: 125px;
}

footer .footer-logo {
    margin-bottom: 15px;
}

    footer .footer-text {
        padding-left: 15px;
    }
    .business-wrap .business img{max-width: 100%;display: block;}
    .biz02-image-wrap {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px 20px;
    }
    .biz02-image-wrap .box.grid-2-wrap {
        grid-column: 1;
    }
    .biz02-image-wrap .box.grid-4-wrap {
        grid-column: 1;
    }
    .biz02-image-wrap .box.grid-4-wrap .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    #mainCarousel.is_fade .carousel-inner .item:nth-child(2){background-position: 70% 0%;}
}



@media (min-width: 768px) and (max-width: 991px) {
    #site {
        padding-top: 80px;
    }

    .lang-wrap{
    position: static;
    top: auto;
    transform: translateY(0);
}
    .lang-wrap .lang-open{display: none;}
    .lang-wrap .lang-drop{display: flex;position: static;flex-direction: row;align-items: center;justify-content: flex-end;border: 0;border-radius: 0;background: #0047bb;padding: 3px 15px;gap: 15px;}
    .lang-wrap .lang-drop .lang{
    color: #fff;
}
    .lang-wrap .lang-drop .lang.active{
    opacity: 1;
    font-weight: 500;
}
    .navbar-header .navbar-brand {
        width: 174px;
    }
    .nav.navbar-nav>li>a {
        display: block;
        height: 100%;
        padding: 30px 25px;
        font-size: 16px;
    }
    #mainCarousel .carousel-inner .item {
        height: 520px;
    }

    #mainCarousel .carousel-inner .item .carousel-caption {
        top: 36%;
        left: calc((100% - 750px) / 2);
        right: calc((100% - 750px) / 2);
    }

    .carousel-link {
        width: 750px;
        top: 70%;
    }
    #main_wrapper>#main01 .main01-link {
        height: 240px;
    }

    .subHeader .container h2{
        font-size: 42px;
    }

    .subContent_title h3 {
        font-size: 36px;
    }
    .greeting .txt-area p.intro {
        font-size: 25px;
    }

    .greeting .txt-area p br {
        display: none;
    }

    .greeting .img-area {
        padding-left: 30px;
    }

    .history dl dt{
        font-size: 34px;
    }

    .location {
        display: block;
        justify-content: space-between;
        margin: 25px 0 0;
    }

    .li-location {
        margin-top: 15px;
    }

    .li-location>li {
        margin-left: 0;
        margin-right: 20px;
    }

    .business-wrap {
        gap: 30px;
        padding: 30px 30px;
        align-items: start;
    }

    .business-wrap .business .tit h5 {
        margin: 0px 0 20px;
        padding: 0 0 10px;
        font-size: 23px;
    }

    .business-wrap .business .info h6 {
        margin: 0 0 15px;
        font-size: 17px;
        font-weight: 400;
        line-height: 1;
        letter-spacing: -0.07em;
        color: #111;
    }

    .business-wrap .business .info h6>span {
        color: #fff;
        background: #0048bc;
        display: inline-block;
        padding: 6px 11px;
        border-radius: 40px;
        margin-right: 5px;
        font-weight: 500;
        font-size: 11px;
        letter-spacing: 0;
        vertical-align: middle;
    }

    .cert img {
        border: 1px solid #ddd;
        padding: 10px;
    }

    #support03 .board_wrapper {
        border-top: 1px solid #212121;
        padding: 60px 70px;
    }
    
}




@media (min-width: 992px) and (max-width: 1199px) {
    #site {
        padding-top: 84px;
    }
    .lang-wrap{}
    .nav.navbar-nav>li>a {
        padding: 32px 35px;
    }
    #mainCarousel .carousel-inner .item {
        height: 590px;
    }
    #mainCarousel .carousel-inner .item .carousel-caption {
        left: calc((100% - 970px) / 2);
        right: calc((100% - 970px) / 2);
    }
    .location p {
        font-size: 16px;
        margin: 0;
    }
    .carousel-link{width: 970px;}
}