@charset "utf-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css");

@font-face {
    font-weight: 700;
    font-family: "ROKA";
    src:
        url("/public/font/ROKA/ROKABold.woff") format("woff"),
        url("/public/font/ROKA/ROKABold.ttf") format("truetype");
}
@font-face {
    font-weight: 500;
    font-family: "ROKA";
    src:
        url("/public/font/ROKA/ROKAMedium.woff") format("woff"),
        url("/public/font/ROKA/ROKAMedium.ttf") format("truetype");
}

/* 주요색상 */
:root {
    --page-point-color: #0f64af;
    --page-point-color-on: #183a5c;
    --page-secondary-color: #2f8f8a;
    --page-accent-color: #d7a94b;
    --page-ink-color: #17202b;
    --page-muted-color: #58637b;
    --page-line-color: #e1e4e6;
    --page-soft-color: #f3f6f9;
    --page-text-color-600: #353639;
    --page-text-color-300: #61636b;
}

#site {
    padding-top: 0;
    font-size: 16px;
    font-family: "Pretendard Variable", "notokr", sans-serif;
    letter-spacing: -0.03em;
    color: #222;
}

.btn {
    transition: all ease 0.15s;
    -webkit-transition: all ease 0.15s;
    -moz-transition: all ease 0.15s;
    -ms-transition: all ease 0.15s;
    -o-transition: all ease 0.15s;
}

.btn.btn-lg {
    width: 200px;
    height: 60px;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
}

a[href^="mailto"] {
    color: inherit;
}

p {
    line-height: 1.6em;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
td,
dt,
dd,
figcaption {
    word-break: keep-all;
}

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

/* 상단 메뉴 */
.navbar-inverse {
    background: #fff;
    position: static;
    margin-bottom: 0;
    border: 0;
}

/* Bootstrap navbar.less .navbar-brand 기본 스타일 무력화 + 로고 세로 중앙 정렬 */
.navbar-inverse .navbar-brand {
    display: inline-flex;
    align-items: center; /* 로고를 메뉴 높이에 맞춰 세로 중앙 정렬 */
    float: left; /* 좌측 배치 유지 */
    height: 90px; /* 데스크탑 메뉴 높이(상하 padding 35 + line-height 20)와 동일 */
    padding: 0; /* 기본 padding 15px 제거 */
    line-height: normal;
}
@media (max-width: 991px) {
    .navbar-inverse .navbar-brand {
        height: 50px; /* 992px 미만: 메뉴 기본 높이에 맞춤 */
    }
}

.navbar-inverse .navbar-brand img {
    height: 32px;
}

.navbar-inverse .navbar-nav > li > a {
    font-size: 18px;
    font-weight: 600;
    color: var(--page-ink-color);
    letter-spacing: 0;
}
.navbar-inverse .navbar-nav > li:hover > a,
.navbar-inverse .navbar-nav > li:focus > a,
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    color: var(--page-point-color) !important;
}

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

@media (max-width: 767px) {
    .navbar-inverse .navbar-toggle {
        border: 0;
        padding: 18px 0;
    }
    .navbar-inverse .navbar-toggle .icon-bar {
        background-color: #333;
        transition: ease-in-out 0.15s all;
        opacity: 1;
        position: relative;
    }
    .navbar-inverse .navbar-toggle:hover,
    .navbar-inverse .navbar-toggle:focus {
        background: none;
        border-color: var(--page-point-color);
    }
    .navbar-inverse .navbar-toggle:hover .icon-bar,
    .navbar-inverse .navbar-toggle:focus .icon-bar {
        background-color: var(--page-point-color);
    }
    .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;
    }
}

@media (min-width: 768px) {
    .navbar-inverse .navbar-nav .dropdown-menu {
        left: 50%;
        right: auto;
        transform: translate(-50%, 0);
        border-radius: 0;
        border: 0;
        padding: 8px;
        background: #fff;
        -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.125);
        box-shadow: 0 0px 8px rgba(0, 0, 0, 0.15);
        animation-fill-mode: both;
        animation-duration: 0.4s;
        animation-name: fadeIn;
        overflow: hidden;
        border-radius: 0 0 8px 8px;
        min-width: 150px;
    }
    .navbar-inverse .navbar-nav .dropdown-menu > li > a {
        padding: 11px 15px;
        text-align: center;
        font-size: 15px;
        color: var(--page-text-color-600);
        font-weight: 400;
        border-radius: 4px;
        letter-spacing: -0.015em;
        transition: background 0.1s;
    }
    .navbar-inverse .navbar-nav .dropdown-menu > li:last-child > a {
        border-bottom: 0;
    }
    .navbar-inverse .navbar-nav .dropdown-menu > li > a:hover,
    .navbar-inverse .navbar-nav .dropdown-menu > li > a:focus {
        color: var(--page-point-color);
        background: rgb(15 100 175 / 8%);
        font-weight: 600;
    }

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

@media (min-width: 992px) {
    .navbar-inverse .navbar-nav > li > a {
        padding: 37px 30px;
    }
}

/* 슬라이드 공통 */
.carousel-control {
    text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.125);
    transition: ease-in-out 0.15s all;
    width: 10%;
    background: rgba(0, 0, 0, 0) !important;
}
.carousel-control.left .glyphicon::before {
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.carousel-control.right .glyphicon::before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}
.carousel-indicators li,
.carousel-indicators li.active {
    width: 60px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255,255,255,0.7);
    margin: 0 2px;
    border-radius: 0;
    transition: ease-in-out 0.15s all;
    backdrop-filter: blur(10px);
}
.carousel-indicators li.active {
    background-color: #fff;
}

.carousel-indicators {
    bottom: 25px;
}

.carousel-caption {
    text-shadow: none;
    top: 51.5%;
}

@media (max-width: 767px) {
    .carousel-control {
        font-size: 14px;
    }
    .carousel-indicators li,
    .carousel-indicators li.active {
        width: 9px;
        height: 9px;
    }
}

/* 푸터 */
#site footer {
    margin-top: 0px;
    background-color: #191e22;
    color: #7e8387;
}
#site footer .footer-info {
    padding: 35px 0;
}
#site footer .footer-info .container {
    position: relative;
}
#site footer .footer-info ul {
    position: relative;
    margin: 0;
    padding: 0;
    font-size: 0;
}
#site footer .footer-info ul li {
    list-style: none;
    display: inline-block;
    font-size: 13px;
    margin-right: 15px;
    line-height: 19px;
    letter-spacing: 0;
}
#site footer .footer-info ul li:first-child {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #a4a7a9;
    font-size: 14px;
}
#site footer .footer-info ul li .tit {
    position: relative;
    margin-right: 3px;
    font-weight: 300;
    color: #a5d8ff;
}
#site footer .footer-info ul li .tit:nth-of-type(2) {
    margin-left: 8px;
    padding-left: 10px;
}
#site footer .footer-info ul li .tit:nth-of-type(2)::before {
    content: "";
    top: 3px;
    left: 0;
    width: 1px;
    height: 11px;
    position: absolute;
    background: #777;
}
#site footer .footer-info ul li.copy {
    margin-top: 7px;
    font-size: 12px;
    letter-spacing: 0;
    opacity: 0.7;
}
#site footer .btn-privacy {
    top: 0;
    right: 0;
    position: absolute;
    padding: 0;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    opacity: 0.6;
}
#site footer .btn-privacy:hover {
    text-decoration: underline;
    opacity: 1;
}

/* 메인 페이지 */
/* 전환 시 흰 배경 노출 방지: 컨테이너 배경을 어둡게 */
/* #mainCarousel,
#mainCarousel .carousel-inner,
#mainCarousel .carousel-inner .item {
  background-color: #0b1622;
} */
#mainCarousel .carousel-inner .item {
    /* position: relative 를 주지 않음!
     ID 우선순위로 부트스트랩이 전환 중 .next/.prev에 거는 position:absolute 를
     덮어쓰면 다음 슬라이드가 아래로 쌓여 흰 공백이 생김.
     .item 은 부트스트랩 기본값으로 이미 position:relative 라 오버레이 기준점은 유지됨. */
    height: calc(100vh - 230px);
    /* 인라인 background-image가 영역을 꽉 채우도록 (흰 여백 방지) */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* 캡션 가독성용 어두운 오버레이 한 겹 */
#mainCarousel .carousel-inner .item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    pointer-events: none;
    z-index: 1;
    opacity: 0.2;
}
#mainCarousel .carousel-caption {
    z-index: 2;
}
#mainCarousel .carousel-caption h1 {
    position: relative;
    display: inline-block;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}
#mainCarousel .carousel-caption h1::before {
    /* content: ''; */
    top: 18px;
    left: 0;
    width: 105px;
    height: 105px;
    display: inline-block;
    position: relative;
    margin-right: 10px;
    background: url(/public/img/favicon/favicon_white.png) no-repeat center / cover;
}
#mainCarousel .carousel-caption h1 span {
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    display: block;
    font-size: 22px;
    color: #fff;
}

#mainCarousel .carousel-caption h1 img {
    width: 440px;
    filter: brightness(0) invert(1);
}
#mainCarousel .carousel-caption p {
    font-size: 28px;
    font-weight: 500;
}

@media (max-width: 767px) {
    #mainCarousel .carousel-inner .item {
        height: calc(100vh - 361px);
    }
    #mainCarousel .carousel-caption {
        right: 5%;
        left: 5%;
    }
    #mainCarousel .carousel-caption h1 span {
        margin-bottom: 15px;
        font-size: 17px;
    }
    #mainCarousel .carousel-caption h1 img {
        width: 200px;
    }
    #mainCarousel .carousel-control {
        display: none;
    }
}

#section_a684ec {
    padding: 20px 0;
}

#section_b53b3a {
    min-height: 400px;
}

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

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

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

@media (min-width: 767px) {
    #section_a684ec div[class^="board_box_"] {
        width: 50%;
    }
}

.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 {
    margin-bottom: 0;
}

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

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

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

/* 메인 추가 스타일 */
#section1 {
    position: relative;
    background: linear-gradient(90deg, #006eb7, #082467);
    overflow: hidden;
}
#section1 .container {
}
.box-main-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    color: #fff;
    position: relative;
    z-index: 100;
}
.box-main-banner > .item a {
    width: 100%;
    height: 140px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgb(255 255 255 / 12%);
}
/*
.box-main-banner > .item:nth-child(4) a::before {
    content: '';
    bottom: 0;
    right: 5px;
    width: 16px;
    height: 85%;
    position: absolute;
    background: #000;
    transform: skew(19deg);
    opacity: 0.15;
    z-index: 110;
} */
.box-main-banner > .item:nth-child(4) a::before {
    /* content: ""; */
    bottom: 0;
    right: -10px;
    width: 56px;
    height: 100%;
    position: absolute;
    background: rgb(8 23 38);
    transform: skew(19deg);
    z-index: 110;
    box-shadow: 30px 0 30px -2px rgb(0 0 0 / 45%);
}
.box-main-banner > .item:nth-child(4) a::after {
    /* content: ""; */
    top: 50%;
    right: 0;
    height: 100%;
    position: absolute;
    border-bottom: 145px solid transparent;
    border-right: 50px solid #081726;
    border-radius: 0 5px 0 0;
    transform: translateY(-50%);
    z-index: 100;
}

.box-main-banner .inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    line-height: 1em;
}
.box-main-banner > .item:nth-child(4) .inner {
    /* padding-right: 40px; */
}

.box-main-banner > .item:nth-child(4) a {
    border-right: 1px solid rgb(255 255 255 / 12%);
}
.box-main-banner .inner::before {
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    position: absolute;
    background: rgb(0 0 0 / 50%);
    transition: all cubic-bezier(0.27, 0.51, 0.38, 1.01) 0.35s;
    opacity: 0.55;
}
.box-main-banner a:hover .inner::before {
    width: 100%;
}
.box-main-banner .inner .icon,
.box-main-banner .inner .text {
    position: relative;
}

.box-main-banner .inner .icon {
    margin-left: -13px;
}
.box-main-banner .inner .icon > * {
    font-size: 40px;
    --wght: 300;
    color: #58bbff;
}
.box-main-banner a:hover .inner .icon > * {
    /* color: #fff; */
}
.box-main-banner .inner .text > .tit {
    margin: 0;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0;
}

/*************** 서브 시작 ***************/
/* 공통 스타일 */
#site > .container {
    width: 100%;
    padding: 0;
}
.subPage > .pageTop {
    height: 240px;
    position: relative;
    color: #fff;
    /* background:
    radial-gradient(circle at 80% 20%, rgba(47, 143, 138, 0.24), transparent 34%),
    linear-gradient(135deg, #071321 0%, var(--page-point-color) 55%, #102b45 100%); */
    /* z-index: -1; */
    background: #333 url(/public/img/sub/bg_subTop.jpg) no-repeat center / cover;
    overflow: hidden;
}
.subPage > .pageTop::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    opacity: 1;
    /* background: linear-gradient(90deg, rgba(4, 12, 22, 0.62), rgba(13, 33, 56, 0.14)), repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 18px); */
}
.subPage > .pageTop .container {
    height: 100%;
    position: relative;
}
.subPage > .pageTop .inner {
    top: 55%;
    left: 50%;
    width: 100%;
    position: absolute;
    padding: 0 15px;
    transform: translate(-50%, -50%);
    /* text-align: center; */
}
.subPage > .pageTop h1,
.subPage > .pageTop h2 {
    margin: 0;
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}
.subPage > .pageTop h1 {
    margin-top: 40px;
}

/* Breadcrumb */
.subPage .breadcrumb {
    margin: 22px 0 0;
    padding: 0;
    font-size: 13px;
    letter-spacing: 0;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.6);
}
.subPage .breadcrumb .current {
    font-weight: 500;
    color: #fff;
}
.breadcrumb > li + li:before {
    content: "\f054";
    top: -1px;
    left: -1px;
    position: relative;
    padding: 0 7px;
    font-size: 8px;
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
    color: rgba(255, 255, 255, 0.5);
}

/* Link */
.subPage .link {
    margin-top: 30px;
}

.subPage .link + .contents > section:first-child {
    /* padding-top: 60px; */
}
.subPage .link ul {
    display: flex;
    justify-content: center;
    /* background: #f0f4f7; */
    /* border-radius: 50px; */
    padding: 0;
    width: fit-content;
    /* margin: 0 auto; */
}
.subPage .link ul::before,
.subPage .link ul::after {
    display: none;
}
.subPage .link ul > li {
    text-align: center;
    padding: 0;
    flex: 1;
}

.subPage .link ul > li + li::before {
    content: "";
    width: 1px;
    height: 100%;
    background: var(--page-line-color);
    display: inline-block;
    position: absolute;
    left: 0;
}
.subPage .link ul > li > a {
    transition: all 0.3s;
    color: var(--page-ink-color);
    font-weight: 650;
    font-size: 16px;
    padding: 14px 30px;
    letter-spacing: 0;
    border-radius: 4px;
}
.subPage .link ul > li > a:hover,
.subPage .link ul > li > a:focus {
    background: transparent;
}
.subPage .link ul > li.active > a {
    color: #fff !important;
    background: var(--page-ink-color);
}
.subPage .link ul > li > a::after {
    /* content: ''; */
    left: 50%;
    top: 0;
    width: 0;
    height: 3px;
    position: absolute;
    background: var(--page-point-color);
    transform: translateX(-50%);
    transition: all 0.4s ease;
}
.subPage .link ul > li > a:hover {
    color: var(--page-point-color);
    /* background: #f0f4f7; */
}
.subPage .link ul > li > a:hover::after,
.subPage .link ul > li.active > a::after {
    width: 100%;
}

.subPage > .contents section {
    padding: 90px 0 130px;
}
.subPage > .contents .row:not(.page-title) + .row {
    margin-top: 120px;
}

.page-title {
    margin-bottom: 80px;
    text-align: center;
}
.page-title .desc {
    margin: 25px 0 0;
    font-weight: 600;
    color: var(--page-point-color);
    line-height: 1em;
    font-size: 18px;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #fff, #ddeefb, #fff);
    display: inline-block;
    padding: 15px 100px;
    border-radius: 150px;
}

#solution01 .page-title .desc,
#solution03 .page-title .desc {
    background: linear-gradient(to right, #fff, #ddeefb, #fff);
    font-size: 22px;
    margin-top: 40px;
    border-radius: 0;
    padding: 20px 110px;
    letter-spacing: -0.035em;
    color: var(--page-point-color);
}

#solution01 .page-title h1 {
}
.title-lv-1 {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    color: var(--page-ink-color);
    letter-spacing: -0.035em;
    line-height: 1;
}

.page-title img {
    display: inline-block;
    max-height: 120px;
}
.title-lv-2 {
    position: relative;
    margin: 0 0 30px;
    padding-left: 18px;
    font-size: 28px;
    font-weight: 600;
    color: var(--page-ink-color);
    letter-spacing: -0.04em;
    line-height: 1;
}
.title-lv-2::before {
    content: "";
    top: 1px;
    left: 0;
    width: 6px;
    height: 26px;
    position: absolute;
    background: var(--page-point-color);
    border-radius: 0;
}

.list-default {
    margin: 0;
    padding-left: 0;
    list-style-type: none;
}
.list-default > li {
    position: relative;
}

/* 회사소개 (페이지) */
.wrap-intro > .image {
    width: 30%;
    display: none;
}
.wrap-intro > .text {
    /* width: 92%; */
    /* padding-left: 60px; */
}
.list-intro {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* gap: 15px; */
    box-shadow: 12px 15px 40px rgb(15 34 58 / 8%);
    border-radius: 20px;
    overflow: hidden;
}

.list-intro .logo {
    background: var(--page-point-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.list-intro .logo .inner {
}

.list-intro .logo img {
    filter: grayscale(1) brightness(100);
    max-width: 140px;
}
.list-intro > li:last-child {
    /* grid-column: span 2; */
}
.list-intro > li:not(.logo) .inner {
    /* display: flex; */
    /* align-items: center; */
    /* gap: 15px; */
    padding: 38px 30px 0 30px;
}

.list-intro > li {
    min-height: 210px;
    border-right: 1px solid #eceff1;
    border-bottom: 1px solid #eceff1;
}
.list-intro > li:nth-child(5n) {
    border-right: none;
}
.list-intro > li:nth-child(n + 6) {
    border-bottom: none;
}
.list-intro > li .tit,
.list-intro > li .txt {
}
.list-intro > li .tit {
    margin: 0 0 11px;
    font-weight: 600;
    font-size: 15px;
    color: #5f7fa7;
    letter-spacing: -0.025em;
}

.list-intro > li .material-symbols-outlined {
    position: absolute;
    right: 25px;
    bottom: 33px;
    font-weight: 300;
    font-size: 50px;
    color: #a3b6c9;
    opacity: 0.8;
    --wght: 200;
}
.list-intro > li .tit::before {
    content: "";
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    position: absolute;
    /* background: var(--page-point-color); */
}
.list-intro > li .txt {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -0.03em;
    display: inline-block;
    color: var(--page-ink-color);
}

.list-intro > li:last-child .txt {
    font-size: 14px;
}

/* 회사소개 (페이지) */
.wrap-history {
    /* margin-left: 14vw; */
    position: relative;
    display: flex;
    gap: 80px;
}

.wrap-history img {
    border-radius: 16px;
}

.wrap-history > div {
    flex: 1;
}

.wrap-history .history {
    border-top: 2px solid #333;
}

.wrap-history .history .desc {
    margin-top: 30px;
    color: var(--page-text-color-300);
    letter-spacing: -0.02em;
}
/* .wrap-history::before {
  content: '';
  top: 0;
  left: 28%;
  width: 6px;
  height: 98%;
  position: absolute;
  margin-left: -6px;
  background: #eee;
  border-top: 19px solid #fff;
} */
.wrap-history .block {
    display: flex;
    border-bottom: 1px solid var(--page-line-color);
    padding: 35px 10px;
}
.wrap-history .block + .block {
}
.wrap-history .left {
    flex-basis: 38%;
    position: relative;
}
.wrap-history .left::after {
    content: "";
    top: 23px;
    right: 0;
    width: 25%;
    height: 1px;
    position: absolute;
    /* border-top: 2px dotted #ccc; */
}
.wrap-history .left .year {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    color: var(--page-point-color);
    line-height: 1.2;
    letter-spacing: -0.03em;
}
.wrap-history .right {
    flex-basis: 60%;
    position: relative;
    padding-top: 8px;
}
/* .wrap-history .right::before {
  content: '';
  top: 17px;
  left: -10px;
  width: 13px;
  position: absolute;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 50%;
  border: 2px solid var(--page-point-color);
} */
.wrap-history .right ul > li {
    display: grid;
    grid-template-columns: 55px auto;
    margin-bottom: 0px;
    color: var(--page-text-color-600);
}
.wrap-history .right ul > li:last-child {
    margin-bottom: 0;
}
.wrap-history .right .month {
    font-weight: 700;
}

/* 오시는길 (페이지) */
.box-location .info ul {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 35px;
    padding: 36px 0;
}
.box-location .info ul > li {
    display: flex;
    padding-top: 5px;
    padding-left: 30px;
    letter-spacing: 0;
    line-height: 1em;
}
.box-location .info ul > li .tit {
    margin-right: 10px;
    font-size: 15px;
    font-weight: 700;
}
.box-location .info ul > li .tit-sub {
    margin: 0 8px;
    font-size: 92%;
    font-weight: 600;
    color: #888;
}
.box-location .info ul > li.addr {
    flex-basis: 100%;
    padding-top: 0;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.3em;
}
.box-location .info ul > li::before {
    content: "";
    top: 2px;
    left: 0;
    width: 22px;
    height: 22px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-family: "Material Symbols Outlined";
    font-variation-settings: "FILL" 1;
    color: #fff;
    text-align: center;
    background: #333;
    border-radius: 30px;
}
.box-location .info ul > li.addr::before {
    content: "\e0c8";
    font-size: 30px;
    color: var(--page-point-color);
    background: transparent;
}
.box-location .info ul > li.tel::before {
    content: "\e0b0";
}
.box-location .info ul > li.fax::before {
    content: "\e873";
}
.box-location .info ul > li.email::before {
    content: "\e0e6";
}

/* 주요사업 (페이지) */
.box-biz {
    text-align: center;
}
.box-biz .tit {
    position: relative;
    margin: 0 0 40px;
    font-weight: 600;
    letter-spacing: -0.05em;
    font-size: 32px;
    display: inline-block;
    line-height: 1.5;
}
.box-biz .tit::after {
    width: 70px;
    height: 1px;
    content: "";
    background: var(--page-ink-color);
    display: block;
    margin: 20px auto 0;
    opacity: 0.6;
}
.box-biz ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0;
    /* background: #005faa; */
    /* padding: 50px; */
}
.box-biz ul li {
    padding: 40px 10px;
    font-size: 18px;
    font-weight: 500;
    background: var(--page-soft-color);
    border-radius: 10px;
    letter-spacing: -0.025em;
}

.box-biz ul > li::before {
}
.box-biz ul li .icon {
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box-biz ul li .icon > * {
    font-size: 57px;
    --wght: 300;
    color: var(--page-point-color);
    position: relative;
    z-index: 1;
}

/* 솔루션 공통 스타일 */
.wrap-solution .sol-top {
    margin-bottom: 90px;
    text-align: center;
}
.wrap-solution .sol-top .tit {
    margin: 0 0 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
    font-size: 32px;
    display: inline-block;
    line-height: 1.5;
    color: var(--page-ink-color);
}
.wrap-solution .sol-top .tit-sub {
    margin: 0 0 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
    font-size: 32px;
    display: inline-block;
    color: var(--page-ink-color);
}
.wrap-solution .sol-top p {
    font-size: 18px;
    padding: 0 90px;
    line-height: 1.6;
    color: var(--page-text-color-600);
}

.wrap-solution .sol-top p + p {
    margin-top: 25px;
}
.wrap-solution .sol-top strong {
    color: var(--page-point-color);
}

/* EZ GUARD (페이지) */
#solution01 .wrap-solution .top,
#solution03 .wrap-solution .top {
    margin-bottom: 50px;
    text-align: center;
}

.wrap-solution .box-ezguard .top {
    margin-bottom: 50px;
}
#solution01 .wrap-solution .top .tit,
#solution03 .wrap-solution .top .tit {
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.034em;
    font-size: 32px;
    display: inline-block;
    line-height: 1.5;
    color: var(--page-ink-color);
}
#solution03 .wrap-solution.intro .image img {
    padding: 20px;
    background: #f7f8fa;
}
#solution03 .wrap-solution .bottom .tit {
    margin: 20px 0 25px;
    color: var(--page-ink-color);
    font-size: 22px;
    font-weight: 700;
}
#solution01 .wrap-solution .top .tit strong {
    color: var(--page-point-color);
}
#solution01 .wrap-solution .bottom > .row {
    display: flex;
    align-items: center;
}
.wrap-solution.intro .image img {
    background: #fff;
    box-shadow: 0 20px 45px rgb(10 40 75 / 8%);
    padding: 50px 50px;
    border-radius: 10px;
}
.wrap-solution.intro .detail {
    padding-left: 35px;
}
.wrap-solution .list-num > li + li {
    margin-top: 18px;
}
.wrap-solution .list-num > li {
    padding-left: 45px;
    font-size: 16px;
    color: var(--page-text-color-600);
    line-height: 1.6;
}
.wrap-solution .list-num > li .no {
    top: 0px;
    left: 0;
    position: absolute;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: var(--page-point-color);
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 4px;
    /* box-shadow: 0 8px 18px rgba(13, 33, 56, 0.18); */
}
/* .wrap-solution .list-num > li .no::after {
  content: '.';
} */
.wrap-solution.intro {
    margin-bottom: 100px;
    /* padding-bottom: 100px; */
    /* border-bottom: 1px dotted #ccc; */
}

.wrap-solution.intro .bottom {
    background: var(--page-soft-color);
    margin-inline: 0;
    border-radius: 16px;
    padding: 40px;
}
.box-ezguard .top .lg {
    font-size: 32px;
    font-weight: 600;
    /* line-height: 1em; */
    /* padding: 30px; */
    /* max-width: 610px; */
    margin: 0 auto 30px;
    letter-spacing: -0.05em;
    position: relative;
    /* border: 1px solid rgba(13, 33, 56, 0.18); */
    /* box-shadow: 0 18px 35px rgba(13, 33, 56, 0.1); */
    color: var(--page-ink-color);
    /* background: linear-gradient(135deg, #fff, #f3f7fa); */
    /* border-radius: 6px; */
}

.box-ezguard .top .lg::after {
    width: 70px;
    height: 1px;
    content: "";
    background: var(--page-ink-color);
    display: block;
    margin: 20px auto 0;
    opacity: 0.6;
}

.box-ezguard .top .md {
    font-size: 20px;
    font-weight: 400;
    color: var(--page-text-color-600);
}
.box-ezguard .top p strong {
    color: var(--page-point-color);
}
#solution03 .box-ezguard .screen {
    display: grid;
    gap: 30px 30px;
    grid-template-columns: repeat(2, 1fr);
}

#solution03 .box-ezguard .screen .box {
    border: 1px solid var(--page-line-color);
    background: #f7f8f9;
    overflow: hidden;
    border-radius: 10px;
}
#solution03 .box-ezguard .screen img {
    margin: 0 auto;
}
#solution03 .box-ezguard .screen h3 {
    text-align: center;
    padding: 24px 0;
    font-weight: 700;
    color: var(--page-ink-color);
    background: #fff;
    margin: 0 0 10px;
    font-size: 22px;
    box-shadow: 0 5px 5px rgb(196 201 207 / 24%);
}
.box-ezguard .screen {
    display: grid;
    gap: 30px 30px;
    grid-template-columns: 1fr 1fr;
}
.box-ezguard .screen figure > figcaption {
    padding: 14px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    background: var(--page-ink-color);
    margin: -1px -1px 0;
    letter-spacing: 0;
}
.box-ezguard .screen figure {
    flex-basis: 25%;
    overflow: hidden;
    border: 1px solid var(--page-line-color);
    border-radius: 10px;
    overflow: hidden;
}

#solution03 .box-ezguard .screen figure {
    border: none;
}
.box-ezguard .screen figure img {
    padding: 10px;
}
.box-ezguard .screen figure .box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
}
.box-ezguard .screen figure .box img {
    padding: 0;
}
.box-ezguard .screen figure:nth-child(2) {
    /* flex-basis: 31%; */
}
.box-ezguard .feature {
    margin-top: 70px;
    background: var(--page-soft-color);
    padding: 50px 50px 45px;
    border-radius: 16px;
}
.box-ezguard .feature .tit {
    margin: 0 0 40px;
    font-size: 28px;
    font-weight: 700;
    color: var(--page-ink-color);
    letter-spacing: -0.02em;
    text-align: center;
}
.box-ezguard .feature ul {
    column-count: 2;
    column-gap: 12px;
}
#solution03 .box-ezguard .feature ul {
    display: flex;
    flex-direction: column;
}
#solution03 .box-ezguard .feature ul > li .no {
    width: 190px;
    height: 80px;
    margin-right: 22px;
    letter-spacing: 0;
}
#solution03 .box-ezguard .feature ul > li {
}
.box-ezguard .feature ul > li {
    background: #fff;
    font-size: 17px;
    padding: 6px;
    /* font-weight: 500; */
    color: var(--page-text-color-600);
    box-shadow: 0 8px 22px rgba(13, 33, 56, 0.055);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    letter-spacing: -0.034em;
    line-height: 1.5;
}
.box-ezguard .feature ul > li + li {
    margin-top: 10px;
}
.box-ezguard .feature ul > li .no {
    top: 0;
    left: 0;
    /* position: absolute; */
    font-size: 120%;
    font-weight: 600;
    background: var(--page-point-color);
    line-height: 1em;
    margin-right: 20px;
    color: #fff;
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 10px;
}

/* ORACLE (페이지) */
.wrap-solution .box-feature .top-tit {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 2px solid #17202b;
    padding: 30px 15px 0;
}
.wrap-solution .box-feature .top-tit .tit {
    margin: 0 0 32px;
    font-size: 30px;
    font-weight: 700;
    color: var(--page-ink-color);
    letter-spacing: -0.04em;
}

h3.tit {
}
.wrap-solution .box-feature .top-tit img {
    width: 150px;
    margin-bottom: 35px;
}
.wrap-solution .box-feature ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: var(--page-soft-color);
    padding: 30px;
    border-radius: 16px;
}
.wrap-solution .box-feature ul li {
    padding: 50px 15px 50px;
    text-align: center;
    background: #fff;
    /* border: 1px solid var(--page-line-color); */
    border-radius: 10px;
    box-shadow: 0 20px 45px rgb(10 40 75 / 8%);
}
.wrap-solution .box-feature ul li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--page-point-color);
}
.wrap-solution .box-feature ul li .icon > * {
    font-size: 70px;
    font-weight: 300;
    --wght: 300;
}
.wrap-solution .box-feature ul li .tit-sub {
    margin: 25px 0 20px;
    font-size: 20px;
    font-weight: 600;
    color: var(--page-ink-color);
    letter-spacing: -0.01em;
}
.wrap-solution .box-feature ul li p {
    margin: 0;
    line-height: 1.5em;
    padding: 0 10px;
    color: var(--page-text-color-300);
}
.wrap-solution .box-feature .logo img {
    float: right;
    width: 240px;
    margin-top: 30px;
    padding: 15px;
    border: 1px solid var(--page-line-color);
    border-radius: 6px;
    background: #fff;
}

/* VEEAM (페이지) */
.wrap-solution .box-veeam {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 3px solid var(--page-point-color);
    box-shadow: 0 14px 34px rgba(13, 33, 56, 0.08);
}
.wrap-solution .box-veeam > .item.left .inner {
    height: 100%;
    background: linear-gradient(135deg, #fff, #f4f7fa);
    padding: 50px;
}
.wrap-solution .box-veeam > .item.right {
    background: var(--page-point-color);
}

.wrap-solution .box-veeam > .item.right .inner {
    padding: 50px 60px;
}
.wrap-solution .box-veeam .tit {
    margin: 0 0 25px;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--page-ink-color);
}
.wrap-solution .box-veeam .list-app {
    /* display: flex; */
    /* flex-wrap: wrap; */
    gap: 5px;
}
.wrap-solution .box-veeam .list-app > li {
    flex: 1 1 49%;
    padding: 10px;
    padding-left: 30px;
    font-size: 16px;
    color: #344054;
    border-bottom: 1px dotted #c9d3dd;
}
.wrap-solution .box-veeam .list-app > li::before {
    content: "";
    top: 17px;
    left: 12px;
    width: 5px;
    height: 5px;
    position: absolute;
    background: var(--page-point-color);
}
.wrap-solution .box-veeam img {
    margin-top: 40px;
}
.wrap-solution .box-veeam .list-chk > li {
    position: relative;
    padding: 17px;
    padding-left: 65px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    min-width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.wrap-solution .box-veeam .list-chk > li + li {
    margin-top: 8px;
}
.wrap-solution .box-veeam .list-chk > li::before {
    content: "\e876";
    top: 15px;
    left: 20px;
    width: 30px;
    height: 30px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: CENTER;
    font-size: 29px;
    font-weight: 600;
    font-family: "Material Symbols Outlined";
    color: #79d7cf;
    border-radius: 50%;
}

/* ARK (페이지) */
.box-ark {
    display: flex;
    align-items: flex-end;
    text-align: center;
}
.box-ark > .item.tit {
    width: 20%;
}
.box-ark > .item.tit span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0;
    line-height: 1em;
    min-height: 64px;
    background: #2d3640;
}
.box-ark > .item.tit span + span {
    margin-top: 1px;
}
.box-ark > .item.tit span:last-child {
    /* min-height: 60px; */
}
.box-ark > .item.detail {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* padding-left: 20px; */
}

.box-ark > .item.detail > .block:first-child li {
    border-left: 1px solid #fff;
}
.box-ark > .item.detail img {
    width: 180px;
}
.box-ark > .item.detail ul {
    margin-top: 50px;
    /* border-top: 2px solid var(--page-ink-color); */
    background: #fff;
    box-shadow: 0 10px 26px rgba(13, 33, 56, 0.06);
}
.box-ark > .item.detail ul > li {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.box-ark > .item.detail ul > li + li {
    /* margin-top: 8px; */
    /* padding-top: 8px; */
    border-bottom: 1px solid var(--page-line-color);
    min-height: 65px;
    border-left: 1px solid var(--page-line-color);
    color: var(--page-text-color-600);
}
.box-ark > .item.detail ul > li:last-child {
    /* min-height: 60px; */
    /* padding-bottom: 8px; */
    border-bottom: 1px solid var(--page-line-color);
}
.box-ark > .item.detail ul > li.name {
    font-size: 24px;
    font-weight: 700;
    padding: 20px 0;
    background: var(--page-point-color);
    border-radius: 16px 16px 0 0;
    color: #fff;
    letter-spacing: 0;
    border-right: 1px solid #fff;
}

/* 게시판, 주문폼 공통 스타일 */
.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;
}
.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: #888;
}
.table.table_default tr td.subject {
    position: relative;
    padding: 22px 15px;
    line-height: 1em;
}
.table.table_default thead th {
    font-weight: 600;
    color: #333;
    background: #fff;
    border-color: #ccc;
    padding: 17px;
}
.table.table_default tbody .subject .badge {
    top: 17px;
    position: absolute;
    padding: 5px 6px 2px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3em;
    background: #2b62b5;
    border: none;
    border-radius: 4px;
    font-size: 13px;
}
.table.table_default tbody .subject a:hover {
    text-decoration: underline;
}
.table.table_default tbody .subject span > .badge + a {
    padding-left: 65px;
}

.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;
    text-align: center;
}
.board_data_view .contents_wrap {
    padding: 60px 120px;
}
.board_data_view .header_wrap .title {
    padding: 45px 5px 42px;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3em;
    border-bottom: 1px solid #eee;
    color: #333;
    letter-spacing: -0.02em;
}
.board_data_view .header_wrap .info {
    margin: 0;
    padding: 11px 5px 11px;
}

/* Pagenation */
.pagination_wrap ul li.active a,
.pagination_wrap ul li.active a:hover,
.pagination_wrap ul li.active a:focus {
    color: var(--page-point-color);
}
.pagination_wrap ul li.box a {
    border: none;
}
.pagination_wrap ul li.box:hover a,
.pagination_wrap ul li.box:focus a {
    color: var(--page-point-color);
}

.board_wrapper .text-center {
    margin-bottom: 0;
}

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

/* 게시글 작성 */
.board_wrapper .table.board_write_table tbody tr th,
.board_wrapper .table.board_write_table tbody tr td {
    font-size: 16px;
    border-top: none;
    border-bottom: 1px solid #e6e6e6;
    padding: 16px 20px;
}
.board_wrapper .table.board_write_table {
    border-top: 2px solid #333;
}
.board_wrapper .table.board_write_table tbody tr th {
    width: 230px;
    font-weight: 600;
    background: #fff;
    font-size: 16px;
    padding: 27px 35px;
}
.board_wrapper .table.board_write_table tbody tr th > span.required_text {
    color: #ff0000;
}
.board_wrapper .table.board_write_table .files .fileInput .file_add {
    padding: 6px 8px;
}
.form-control {
    font-size: 15px;
    height: 44px;
    border-radius: 4px;
}
.checkbox {
    margin-top: 10px;
    font-size: 15px;
}
/* 주문폼 */
.board_wrapper .table.board_write_table tbody tr td .form-control {
    width: 350px;
}
.board_wrapper .table.board_write_table tbody tr td .text-muted {
    margin-top: 10px !important;
    font-size: 14px;
}
.board_wrapper .table.board_write_table .checkbox a {
    font-weight: 500;
    color: var(--page-point-color);
    text-decoration: underline;
}
.form-control:not([readonly]):focus {
    border-color: #555;
}
input + #list_btn {
    display: none;
}
.board_wrapper .text-center {
    margin-bottom: 0;
}

/* 문의 (주문폼) */
.box-email {
    display: flex;
    margin-bottom: 40px;
    padding: 40px 150px;
    background: var(--page-soft-color);
    border-radius: 10px;
}
.box-email > .item {
    flex-basis: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    position: relative;
}

.box-email > .item + .item {
    border-left: 2px solid #fff;
}

.box-email > .item .icon {
    /* width: 90px; */
    /* height: 90px; */
    font-size: 50px;
    color: var(--page-point-color);
    display: flex;
    align-items: center;
    justify-content: center;
    --wght: 250;
    border-radius: 50%;
    background: #fff;
    padding: 12px;
    border-radius: 10px;
}

.box-email > .item .tit {
    margin: 0 0 9px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1em;
}
.box-email .item a {
    color: var(--page-point-color);
    font-size: 16px;
    letter-spacing: 0;
    text-decoration: underline;
}
.box-email .item a:hover {
    color: var(--page-point-color);
}

/* 로그인 */
.login_wrapper,
#find_idpw {
    background: #f5f5f5;
}
.member_wrapper {
    padding: 180px 0 120px;
}
html.is_adm .member_wrapper {
    padding: 100px 0 120px;
}
.login_wrapper .member_wrapper,
#find_idpw .member_wrapper {
    max-width: 600px;
    margin: 120px auto;
    padding: 45px;
    background: #fff;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}
.login_wrapper .member_wrapper h1,
#find_idpw .member_wrapper h1 {
    padding-bottom: 0;
    border-bottom: none;
}

/* 개인정보 처리방침 */
.privacy_body h3 {
    position: relative;
    margin: 0;
    padding-left: 15px;
    font-size: 23px;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.04em;
    line-height: 1;
}
.privacy_body h3::before {
    content: "";
    top: 3px;
    left: 0;
    width: 6px;
    height: 6px;
    position: absolute;
    background: var(--page-point-color);
    box-shadow: 0 10px 0 var(--page-secondary-color);
    border-radius: 10px;
}
/**************** 서브 끝 ****************/

/*********** 모바일 최적화 시작 ***********/
@media (max-width: 767px) {
    /* Small devices (col-xs-*) 모바일 */
    #site {
        padding-top: 66px;
        font-size: 15px;
    }
    p {
        line-height: 1.5em;
    }

    .navbar-inverse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        min-height: 66px;
        z-index: 1030;
        border-bottom: 1px solid #ddd;
    }
    .navbar-inverse .container,
    .navbar-inverse .navbar-header {
        min-height: 65px;
    }
    .navbar-inverse .navbar-brand {
        height: 65px;
        max-width: calc(100% - 66px);
        padding: 0;
        margin-left: 0;
    }
    .navbar-inverse .navbar-brand img {
        display: block;
        width: auto;
        max-width: 100%;
        height: 40px;
        margin-top: 0;
    }
    .navbar-inverse .navbar-toggle {
        float: right;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 65px;
        margin: 0;
        padding: 0;
    }
    .navbar-inverse .navbar-toggle .icon-bar + .icon-bar {
        margin-top: 5px;
    }
    .navbar-inverse.open .navbar-toggle > .icon-bar:nth-of-type(1) {
        top: 7px;
    }
    .navbar-inverse.open .navbar-toggle > .icon-bar:nth-of-type(3) {
        top: -7px;
    }
    .navbar-inverse .navbar-nav {
        display: block;
        margin: 0 -15px !important;
    }
    .navbar-inverse .navbar-nav > .open {
        background-color: #f6f6f6;
    }
    .navbar-inverse .navbar-nav > li {
        float: left;
        width: 100%;
    }
    .navbar-inverse .navbar-nav > li > a {
        padding: 12px 15px;
        font-size: 16px;
        border-top: 1px solid #eee;
        border-right: 1px solid #eee;
    }
    .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 {
        padding: 15px;
        color: #fff !important;
        background: var(--page-point-color);
        border: var(--page-point-color);
        transition: padding ease 0.3s;
    }
    .navbar-inverse .navbar-nav .dropdown.open .dropdown-toggle .caret,
    .navbar-inverse .navbar-nav .dropdown.open:hover .dropdown-toggle .caret,
    .navbar-inverse .navbar-nav .dropdown.open:focus .dropdown-toggle .caret {
        border-top-color: #fff;
    }
    .navbar-inverse .navbar-nav > .open .dropdown-menu {
        padding: 10px 0;
    }
    .navbar-inverse .navbar-nav > .open .dropdown-menu > li > a {
        padding: 5px 25px;
        font-size: 15px;
        color: #111;
    }
    .navbar-inverse .navbar-nav > .open .dropdown-menu > li > a:hover,
    .navbar-inverse .navbar-nav > .open .dropdown-menu > li > a:focus {
        font-weight: 600;
        color: #111;
    }
    .navbar .caret {
        display: block;
        border: none;
    }
    .navbar .caret::after {
        content: "\f105";
        top: 13px;
        right: 20px;
        position: absolute;
        font-size: 14px;
        font-family: "Fontawesome";
        transition: transform ease 0.3s;
    }
    .navbar-inverse .navbar-nav .dropdown.open .caret::after {
        font-weight: 300;
        transform: rotate(90deg);
    }

    #section1::after,
    .box-main-banner .inner::before,
    .box-main-banner > .item:nth-child(4) a::after,
    .box-main-banner > .item:nth-child(4) a::before {
        display: none;
    }
    #section1 .container {
        padding: 0;
    }
    .box-main-banner {
        grid-template-columns: repeat(2, 1fr);
    }
    .box-main-banner > .item a {
        height: auto;
        min-height: 68px;
        padding: 17px 20px;
        border-left: none;
    }
    .box-main-banner > .item:nth-child(even) a {
        border-left: 1px solid rgb(255 255 255 / 15%);
    }
    .box-main-banner > .item:nth-child(n + 3) a {
        border-top: 1px solid rgb(255 255 255 / 15%);
    }
    .box-main-banner > .item a:hover {
        background: #1d88f7;
        border-color: #1d88f7;
    }
    .box-main-banner .inner {
        justify-content: flex-start;
        gap: 10px;
    }
    .box-main-banner .inner .icon {
        margin-left: 0;
    }
    .box-main-banner .inner .icon > * {
        font-size: 28px;
    }
    .box-main-banner .inner .text > .tit {
        font-size: 16px;
    }

    #site footer .footer-info {
        padding: 25px 0;
    }
    #site footer .footer-info ul li {
        font-size: 11px;
        margin-right: 10px;
        line-height: 17px;
    }
    #site footer .footer-info ul li:first-child {
        margin-bottom: 3px;
        font-size: 12px;
    }
    #site footer .footer-info ul li.copy {
        margin-top: 5px;
        font-size: 10px;
    }
    #site footer .btn-privacy {
        position: relative;
        display: inline-block;
        margin-top: 10px;
        font-size: 11px;
    }

    .subPage > .pageTop {
        height: 160px;
    }
    .subPage > .pageTop h1,
    .subPage > .pageTop h2 {
        font-size: 34px;
    }
    .subPage .breadcrumb {
        margin: 12px 0 0;
        font-size: 11px;
    }
    .subPage .link {
        margin-top: 15px;
    }
    .subPage .link ul {
        flex-wrap: wrap;
        /* margin: -2px; */
        width: auto;
        background: transparent;
    }
    .subPage .link ul > li {
        flex: 1 1 50%;
        padding: 2px;
    }
    .subPage .link ul > li + li::before {
        display: none;
    }
    .subPage .link ul > li > a {
        width: 100%;
        display: inline-block;
        padding: 8px;
        font-size: 15px;
        border: 1px solid #ddd;
    }
    .subPage .link ul > li.active > a {
        color: #fff;
        background: var(--page-point-color);
        border-color: var(--page-point-color);
        border-top: none;
    }
    .subPage > .contents section {
        padding: 60px 0 80px;
    }
    .page-title {
        margin-bottom: 55px;
    }
    .page-title .desc {
        font-size: 16px;
        padding: 15px;
        width: 100%;
    }
    .title-lv-1 {
        font-size: 34px;
    }
    .title-lv-2 {
        margin: 0 0 20px;
        padding-left: 14px;
        font-size: 24px;
    }
    .title-lv-2::before {
        width: 7px;
        height: 24px;
    }

    .list-intro {
        grid-template-columns: 1fr;
        /* gap: 8px; */
    }
    .list-intro > li {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid var(--page-line-color) !important;
    }
    .list-intro .logo {
        min-height: 80px;
        border-bottom: none !important;
    }
    .list-intro > li:not(.logo) .inner {
        padding: 25px;
    }
    .list-intro > li .tit {
        margin: 0 0 7px;
        font-size: 14px;
    }
    .list-intro > li .txt {
        font-size: 16px;
    }
    .list-intro > li .material-symbols-outlined {
        font-size: 42px;
        bottom: 28px;
    }
    .wrap-history {
        flex-direction: column;
        gap: 40px;
    }
    .wrap-history .block {
        padding: 25px 0;
    }
    .wrap-history .left {
        flex-basis: 30%;
    }
    .wrap-history .right {
        flex-basis: 70%;
    }
    .wrap-history .left .year {
        font-size: 30px;
    }
    .wrap-history .right ul > li {
        grid-template-columns: 35px auto;
    }
    .box-location .map > * {
        height: 300px;
    }
    .box-location .info ul {
        flex-direction: column;
        gap: 10px;
        padding: 20px 0 0;
    }
    .box-location .info ul > li {
        flex-wrap: wrap;
    }
    .box-location .info ul > li.addr {
        font-size: 18px;
    }
    .box-location .info ul > li.email .inner:last-child {
        padding-top: 5px;
        padding-left: 55px;
    }
    .box-biz .tit {
        margin: 0 0 40px;
        font-size: 26px;
    }
    .box-biz ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
    }
    .box-biz ul li {
        padding: 18px 5px;
        font-size: 14px;
    }
    .box-biz ul li .icon {
        margin: 0 auto 12px;
    }
    .box-biz ul li .icon > * {
        font-size: 47px;
    }
    #solution01 .page-title .desc {
        margin-top: 25px;
        padding: 30px 15px;
        font-size: 19px;
        line-height: 1.3em;
    }
    #solution01 .wrap-solution + .wrap-solution {
        margin-top: 50px;
        padding-top: 50px;
    }
    #solution01 .wrap-solution .top {
        margin-bottom: 40px;
    }
    #solution01 .wrap-solution .top .tit {
        font-size: 24px;
        line-height: 1.25;
    }
    #solution01 .wrap-solution .bottom > .row {
        flex-direction: column;
    }
    #solution01 .wrap-solution .image img {
        padding: 30px;
    }
    #solution01 .wrap-solution .detail {
        margin-top: 30px;
        padding-left: 15px;
    }
    .wrap-solution .list-num > li {
        padding-left: 32px;
        font-size: 15px;
    }
    .wrap-solution .list-num > li + li {
        margin-top: 13px;
    }
    .wrap-solution .list-num > li .no {
        top: -1px;
        left: 0;
        width: 24px;
        height: 24px;
        font-size: 14px;
        line-height: 24px;
    }
    .box-ezguard .top .lg {
        font-size: 21px;
        padding: 25px 15px;
        margin: 0 auto 25px;
    }
    .box-ezguard .top .md {
        font-size: 18px;
    }
    .box-ezguard .screen {
        grid-template-columns: 1fr;
    }
    .box-ezguard .screen figure > figcaption {
        margin-bottom: 7px;
        font-size: 16px;
    }
    .box-ezguard .feature {
        margin-top: 40px;
        padding: 30px 15px;
    }
    .box-ezguard .feature .tit {
        margin: 0 0 25px;
        font-size: 22px;
    }
    .box-ezguard .feature ul {
        column-count: 1;
    }
    .box-ezguard .feature ul > li {
        font-size: 14px;
        padding: 12px 15px 12px 60px;
    }
    .box-ezguard .feature ul > li + li {
        margin-top: 7px;
    }
    .box-ezguard .feature ul > li .no {
        width: 44px;
        margin-right: 15px;
        font-size: 110%;
    }
    .wrap-solution .sol-top {
        margin-bottom: 50px;
    }
    .wrap-solution .sol-top .tit {
        margin: 0 0 20px;
        font-size: 24px;
    }
    .wrap-solution .sol-top .tit-sub {
        margin: 0 0 20px;
        font-size: 26px;
        line-height: 1.2em;
    }
    .wrap-solution .sol-top p {
        font-size: 15px;
        padding: 0;
        line-height: 1.54;
    }
    .wrap-solution .sol-top p + p {
        margin-top: 18px;
    }
    .wrap-solution .box-feature .top-tit {
        align-items: center;
        margin-bottom: 30px;
        padding: 20px 4px 0;
    }
    .wrap-solution .box-feature .top-tit .tit {
        margin: 0;
        font-size: 26px;
    }
    .wrap-solution .box-feature .top-tit img {
        width: 120px;
        margin-bottom: 0;
    }
    .wrap-solution .box-feature ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .wrap-solution .box-feature ul li {
        padding: 25px 15px;
    }
    .wrap-solution .box-feature ul li .icon > * {
        font-size: 55px;
    }
    .wrap-solution .box-feature ul li .tit-sub {
        margin: 15px 0 12px;
        font-size: 18px;
    }
    .wrap-solution .box-feature ul li p {
        padding: 0;
    }
    .wrap-solution .box-veeam {
        grid-template-columns: 1fr;
    }
    .wrap-solution .box-veeam > .item.left .inner {
        padding: 25px 15px;
    }
    .wrap-solution .box-veeam .tit {
        margin: 0 0 18px;
        font-size: 22px;
    }
    .wrap-solution .box-veeam .list-app > li {
        padding: 7px 7px 7px 20px;
        font-size: 15px;
    }
    .wrap-solution .box-veeam .list-app > li::before {
        top: 15px;
        left: 6px;
        width: 4px;
        height: 4px;
    }
    .wrap-solution .box-veeam img {
        margin-top: 30px;
    }
    .wrap-solution .box-veeam > .item.right .inner {
        padding: 15px;
    }
    .wrap-solution .box-veeam .list-chk > li {
        min-width: auto;
        padding: 14px 14px 14px 45px;
        font-size: 15px;
    }
    .wrap-solution .box-veeam .list-chk > li + li {
        margin-top: 5px;
    }
    .wrap-solution .box-veeam .list-chk > li::before {
        top: 10px;
        left: 10px;
        font-size: 22px;
    }
    .box-ark {
        flex-direction: column;
    }
    .box-ark > .item.detail {
        width: 100%;
        grid-template-columns: 1fr;
        padding-left: 0;
        gap: 30px;
    }
    .box-ark > .item.detail img {
        width: 120px;
    }
    .box-ark > .item.detail ul {
        margin-top: 30px;
    }
    .box-ark > .item.detail ul > li {
        font-size: 15px;
        flex-direction: column;
    }
    .box-ark > .item.detail ul > li + li {
        min-height: auto;
        padding: 12px 0;
        border-left: none;
    }
    .box-ark > .item.detail ul > li.name {
        font-size: 20px;
        padding: 15px 0;
        border-left: none;
    }
    .box-ark > .item.detail ul > li .tit {
        margin-bottom: 3px;
        font-weight: 600;
        color: var(--page-point-color);
    }
    .box-email {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
        padding: 30px 15px;
    }
    .box-email > .item + .item {
        border-left: none;
    }
    .box-email > .item .icon {
        font-size: 47px;
    }
    .box-email > .item .tit {
        margin: 0 0 6px;
        font-size: 18px;
    }

    .board_wrapper .table colgroup,
    .board_wrapper .table tr .num,
    .board_wrapper .table tr .hits {
        display: none;
    }
    .board_wrapper .table .subject {
        width: 55%;
    }
    .board_wrapper .table .writer {
        width: 20%;
    }
    .board_wrapper .table .regdate {
        width: 25%;
    }
    .board_wrapper .table.table_default tr th,
    .board_wrapper .table.table_default tr td {
        padding: 10px;
        font-size: 12px;
    }
    .table.table_default tbody .subject .badge {
        top: 9px;
        font-size: 10px;
    }
    .table.table_default tr td.subject a {
        font-size: 13px;
    }
    .table.table_default tbody .subject span > .badge + a {
        padding-left: 54px;
    }
    .board_data_view .header_wrap {
        padding: 0;
    }
    .board_data_view .header_wrap .title {
        padding: 25px 5px 23px;
        font-size: 20px;
    }
    .board_data_view .header_wrap .info {
        padding: 8px 0;
    }
    .board_data_view .header_wrap .info span {
        font-size: 11px;
    }
    .board_data_view .contents_wrap {
        padding: 40px 15px;
    }
    .board_wrapper .table.board_write_table tbody tr td,
    .board_wrapper .table.board_write_table tbody tr th {
        padding: 15px;
    }
    .board_wrapper .table.board_write_table tbody tr td .form-control,
    .board_wrapper .table.board_write_table .form-control.form-control-big,
    .member_wrapper #join_form .table .form-control,
    .member_wrapper #join_form .table .form-control.form-control-big {
        width: 100%;
    }
    .board_wrapper .table.board_write_table .files .fileInput input {
        width: 100%;
    }
    .board_wrapper .table.board_write_table .files .fileInput .file_add {
        width: 100%;
        margin: 0 0 15px;
        padding: 6px 12px;
    }
    .member_wrapper .text-center .btn.btn-lg,
    .board_wrapper .text-center .btn.btn-lg {
        width: 100%;
        margin: 0;
        padding: 9px;
    }
    .board_wrapper .text-center .btn#write_btn,
    .member_wrapper .text-center .btn#join_btn,
    .board_wrapper .text-center .btn#list_btn {
        margin-top: 20px;
    }
    .member_wrapper {
        padding-top: 60px;
        padding-bottom: 100px;
    }
    #find_idpw .member_wrapper,
    .login_wrapper .member_wrapper {
        margin: 15px auto;
        padding: 30px 20px;
    }
    #find_idpw .member_wrapper h1,
    .login_wrapper .member_wrapper h1 {
        margin: 10px 0 15px;
        font-size: 32px;
    }

    .privacy_body {
        padding: 0 15px;
    }
    .privacy_body h3 {
        padding-left: 12px;
        font-size: 20px;
    }
    .privacy_body h3::before {
        width: 5px;
        height: 5px;
    }
}
@media (max-width: 420px) {
    .navbar-inverse .navbar-brand img {
        height: 34px;
    }
    #mainCarousel .carousel-inner .item {
        min-height: 306px;
    }
    #mainCarousel .carousel-caption h1 span {
        font-size: 16px;
    }
    #mainCarousel .carousel-caption h1 img {
        width: min(200px, 68vw);
    }
    .box-main-banner > .item a {
        padding: 16px 14px;
    }
    .box-main-banner .inner .icon > * {
        font-size: 25px;
    }
    .box-main-banner .inner .text > .tit {
        font-size: 15px;
    }
    #site footer .footer-info ul li {
        display: block;
        margin-right: 0;
    }
    #site footer .footer-info ul li .tit:nth-of-type(2) {
        margin-left: 0;
        padding-left: 0;
    }
    #site footer .footer-info ul li .tit:nth-of-type(2)::before {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 1199px) {
    /* Medium·Large devices */
    #section1 .container {
        width: 100%;
        padding: 0 60px 0 0;
    }
}
@media (max-width: 576px) {
    #solution03 .wrap-solution .top .tit {
        font-size: 18px;
    }
    #solution03 .wrap-solution .bottom .tit {
    }
    #solution03 .box-ezguard .screen {
        grid-template-columns: 1fr;
    }
    #solution03 .box-ezguard .screen h3 {
        font-size: 20px;
    }
    #solution03 .box-ezguard .feature ul > li .no {
        width: 70px;
    }
    #solution03 .box-ezguard .feature ul > li {
        padding-left: 80px;
    }
    #solution03 .page-title .desc {
        font-size: 16px;
        padding: 20px 30px;
    }
    #solution03 .wrap-solution .bottom .tit {
        margin: 0px 0 20px;
        margin-top: 20px;
        font-size: 18px;
    }
}
/************ 모바일 최적화 끝 ************/
