@charset "utf-8";
@import url('https://webfontworld.github.io/pretendard/Pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

/* 주요색상 */
:root {
  --page-point-color: #387cd9;
  --page-point-color-hover: #1b68d1;
  --page-point-color-light: #8bbcff;
}

#site {
  padding-top: 0;
  font-size: 16px;
  font-family: 'Poppins', 'pretendard', 'notokr', sans-serif;
  letter-spacing: 0;
}

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

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

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

p {
  line-height: 1.6em;
}

strong {
  font-weight: 600;
}

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

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

.board_data_view a {
  word-break: break-all;
}

/* 언어 변환 버튼(다국어) */
.menu-top .container {
  position: relative;
}
.box-lang {
  top: 30px;
  right: 15px;
  position: absolute;
  z-index: 999;
}
.box-lang > .curr_lang {
  width: 78px;
  height: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px 30px 0 23px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  border: 1px solid #ddd;
  border-radius: 60px;
}
.box-lang > .curr_lang::before {
  content: "\eb5a";
  top: 8px;
  left: 7px;
  position: absolute;
  font-size: 13px;
  font-family: "Phosphor-light";
  line-height: 1em;
}
.box-lang > .curr_lang::after {
  content: "\e9fd";
  top: 7px;
  right: 8px;
  position: absolute;
  font-size: 10px;
  font-family: "Phosphor-Fill";
  transition: all 0.3s;
}
.box-lang .inner {
  top: 29px;
  left: 0;
  width: 100%;
  position: absolute;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.19);
  display: none;
  padding: 4px;
  background: #fff;
  border-radius: 10px;
}
.box-lang .lang button {
  width: 100%;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 400;
  color: #222;
  letter-spacing: 0.15px;
  line-height: 1;
  text-align: left;
  background: #fff;
  border: none;
}
.box-lang .lang button.active {
  font-weight: 700;
  color: var(--page-point-color);
}
.box-lang > .curr_lang:hover {
  color: #fff;
  background: var(--page-point-color);
  border-color: var(--page-point-color);
  cursor: pointer;
}
.box-lang > .curr_lang:hover::after {
  transform: rotate(180deg);
}
.box-lang > .curr_lang:hover .inner {
  display: block;
}
.navbar.bg-colored .box-lang:hover > .curr_lang {
  color: #fff;
  border-color: var(--page-point-color);
}

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

/* 상단 메뉴 */
.navbar.navbar-inverse {
    position: fixed;
    background-color: transparent;
    border: none;
    transition: background-color ease-in-out .15s;
}

.navbar.bg-colored {
    background-color: #151515;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    box-shadow: none;
}

.navbar-inverse .navbar-brand img{width:60px}

.navbar-inverse .navbar-nav > li > a{font-size: 18px;color:#fff;letter-spacing:0;transition:all 0.3s;}
.navbar-inverse .navbar-nav > li > a:hover,.navbar-inverse .navbar-nav > li > a:focus{color: #fff;}

/* .navbar.bg-colored .navbar-nav > li > a{color: #000;} */

.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:#fff;}
.navbar.bg-colored .navbar-nav > li > a:hover,
.navbar.bg-colored .navbar-nav > li > a:focus,
.navbar.bg-colored .navbar-nav .dropdown.open .dropdown-toggle,
.navbar.bg-colored .navbar-nav .dropdown.open:hover .dropdown-toggle,
.navbar.bg-colored .navbar-nav .dropdown.open:focus .dropdown-toggle{color:var(--page-point-color-light);}
@media (max-width: 767px) {
 .navbar-inverse .navbar-toggle{border:0;padding:27px 0 27px;}
 .box-lang{
    top: 27px; 
    right: 69px;
 }
.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff;transition:ease-in-out .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.bg-colored .navbar-toggle .icon-bar,
 .navbar.open .navbar-toggle .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: 0;
        background: rgba(0, 0, 0, 0.8);
        -webkit-box-shadow:0 4px 8px rgba(0,0,0,.125);
        box-shadow:0 4px 8px rgba(0,0,0,.125);
        animation-fill-mode:both;
        animation-duration:0.4s;
        animation-name:fadeIn;
    }
    .navbar-inverse .navbar-nav .dropdown-menu>li>a{padding:12px 15px;text-align:center;color:#fff;border-bottom:1px solid rgba(255,255,255,0.11);font-size: 15px;}
    .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 {
        font-weight: 400;
        color: #fff;
        background: var(--page-point-color);
    }
}
  
.navbar-right {margin-right:108px;}
.navbar-inverse .navbar-nav > li > a{padding:35px 30px;}
/* html.logined .navbar-inverse .navbar-nav > li > a{padding-right:20px;padding-left:20px;} */

/* 슬라이드 공통 */
.carousel-control{text-shadow:0px 2px 6px rgba(0, 0, 0, .125);transition:ease-in-out .15s all;}
.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{width:70px;height:7px;background-color:rgba(255,255,255,.1);border:1px solid #fff;margin:0 4px;border-radius:0;transition:ease-in-out .15s all;}
.carousel-indicators li.active{width:70px;height:7px;background-color:#fff;margin:0 4px;box-shadow:0px 2px 6px rgba(0, 0, 0, .125);}

.carousel-caption {text-shadow:0px 0px 10px rgba(0, 0, 0, .75);top: 53%;}

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

/* 푸터 */
#site footer{width:100%;margin-top:0px;background-color:#222;color:#a0a0a0;}
#site footer .footer-info{padding: 40px 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: 14px;margin-right:15px;line-height: 22px;letter-spacing:0;}
#site footer .footer-info .logo img {
    opacity: 0.7;
}
#site footer .footer-info ul li:first-child {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #eee;
}
#site footer .footer-info ul li.copy {
    margin-top: 5px;
    font-size: 13px;
    color: #666;
    letter-spacing: 1px;
}
.box-login {
    top: 0;
    right: 15px;
    position: absolute;
}
.box-login a {
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 14px;
    padding-left: 32px;
    font-size: 12px;
    font-weight: 500;
    color: #858585;
    line-height: 1em;
    text-align: center;
    text-decoration: none;
    border: 1px solid;
}
.box-login a::before {
    top: 8px;
    left: 13px;
    position: absolute;
    font-size: 128%;
    font-weight: 400;
    font-family: "Phosphor";
    line-height: 1em;
}
.box-login a.login::before {
    content: "\ece9";
}
.box-login a.logout::before {
    content: '\ecea';
}
.box-login a:hover {
    color: #fff;
    background: var(--page-secondary-color);
    border-color: var(--page-secondary-color);
}
html.logined .box-login a.login,
html.logined .box-login a.join {display: none;}
html:not(.logined) .box-login a.logout {display: none;}

/* 메인 페이지 */
#mainCarousel .carousel-inner .item{height:100vh}
#mainCarousel .carousel-caption h1 {
  position: relative;
  margin: 0 0 50px;
  font-size: 72px;
  font-weight: 700;
}
#mainCarousel .carousel-caption h1::before {
  content: '첨단제조 전문가 그룹';
  top: -50px;
  left: 50%;
  position: absolute;
  font-size: 24%;
  color: #fff;
  letter-spacing: 5px;
  transform: translateX(-50%);
}
:lang(en) #mainCarousel .carousel-caption h1::before{content: 'AM Expert Group';}
#mainCarousel .carousel-inner .item:nth-child(4) .carousel-caption h1::before{content: none;}
#mainCarousel .carousel-caption p {
  font-size: 23px;
  letter-spacing: -0.01em;
  font-weight: 300;
}
#mainCarousel .scroll-down {
  bottom: 9%;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 999;
}
#mainCarousel .scroll-down a {
  display: inline-block;
  color: #fff;
  text-align: center;
  text-decoration: none;
  opacity: 0.9;
}
#mainCarousel .scroll-down a:hover {
  opacity: 1;
}
#mainCarousel .scroll-down i {
  display: block;
  transition: all ease .15s;
}
#mainCarousel .scroll-down i:nth-of-type(1) {
  font-size: 32px;
}
#mainCarousel .scroll-down i:nth-of-type(2) {
  font-size: 22px;
}
#mainCarousel .scroll-down a:hover i:nth-of-type(2) {
  transform: translateY(5px);
}
#mainCarousel .scroll-down a:hover i:nth-of-type(2)::before {
  content: "\e9f9";
}

@media (max-width: 767px) {
 #mainCarousel .carousel-inner .item{height:430px}
 #mainCarousel .carousel-caption h1{
  font-size:24px;
  margin: 0 0 20px;
}
#mainCarousel .carousel-caption h1::before{
  font-size: 40%;
}
 #mainCarousel .carousel-caption p{font-size:12px;}
}
}

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

/* 메인 추가 스타일 */
.mainPage, .subPage {
    color: #fff;
    background: #1e1c1c;
}
.mainPage h2 {
    margin: 0 0 70px;
    font-size: 44px;
    font-weight: 700;
    line-height: 1em;
    text-align: center;
}
.mainPage h2 .en {
    display: block;
    margin-top: 10px;
    font-size: 50%;
    font-weight: 300;
    color: #ccc;
}
.mainPage #section1 {
    padding: 140px 0 160px;
}
.mainPage .box-biz {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}
.mainPage .box-biz > .item {
  position: relative;
  grid-column: span 2;
  padding: 30px;
  font-size: 17px;
  border: 1px solid #ddd;
  background: #302e2e;
}
:lang(en) .mainPage .box-biz > .item::before {z-index: 0;}
.mainPage .box-biz > .item::before {
  content:'01';
  display:block;
  position:absolute;
  font-size: 55px;
  font-weight:700;
  color: #383838;
  bottom: 15px;
  right: 30px;
  z-index: 1;
}
.mainPage .box-biz > .item:nth-child(2)::before {
  content:'02';
}
.mainPage .box-biz > .item:nth-child(3)::before {
  content:'03';
}
.mainPage .box-biz > .item:nth-child(4)::before {
  content:'04';
}
.mainPage .box-biz > .item:nth-child(5)::before {
  content:'05';
}
.mainPage .box-biz > .item:nth-child(1),
.mainPage .box-biz > .item:nth-child(2) {
    grid-column: span 3;
}
.mainPage .box-biz .tit {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0px 0 25px;
  font-weight: 700;
}
.mainPage .box-biz .icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 50px;
}
.mainPage .box-biz .icon > * {
  color: var(--page-point-color);
}
:lang(en) .mainPage .box-biz ul > li {font-size: 17px;}
.mainPage .box-biz ul > li {
    padding-left: 13px;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
}
.mainPage .box-biz ul > li::before {
    content: '';
    top: 11px;
    left: 0;
    width: 4px;
    height: 4px;
    position: absolute;
    background: #fff;
    border-radius: 50%;
}
.mainPage .box-biz > .item .sm {
    margin-top: 10px;
    font-size: 83%;
    font-weight: 400;
    color: #ddd;
    letter-spacing: 0;
      z-index: 2;
    position: relative;
}
.mainPage #section2 {
    padding: 140px 140px;
    background: #111;
    background-image: url(/public/img/main/main-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.mainPage #section2 h3 {
    margin: 0 0 50px;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.5em;
}
.mainPage #section2 p {
    margin: 0 0 25px;
    font-size: 17px;
    line-height: 1.7em;
    color: #eee;
}
.mainPage #section2 p strong {
    font-weight: 500;
    color: #fff;
}
.mainPage .btn-get-started {
    position: relative;
    margin-top: 50px;
    padding: 12px 20px;
    padding-right: 45px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    border: 1px solid;
}
.mainPage .btn-get-started::before {
    content: "\ea00";
    top: 12px;
    right: 20px;
    position: absolute;
    font-family: "Phosphor-Bold";
    transition: all ease .15s;
}
.mainPage .btn-get-started:hover {
    color: #fff;
    background: var(--page-point-color);
    border-color: var(--page-point-color);
}
.mainPage .btn-get-started:hover::before {
    right: 15px;
}
#introduction{
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
}

/*************** 서브 시작 ***************/
/* 공통 스타일 */
#site > .container {
    width: 100%;
    padding: 0;
}
.subPage > .pageTop {
    height: 390px;
    position: relative;
    background: #333 url('/public/img/sub/bg_subTop_02.jpg') no-repeat center / cover;
}
.subPage > .pageTop::before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    background: #000;
    opacity: 0.5;
}
.subPage > .pageTop .container {
    height: 100%;
    position: relative;
}
.subPage > .pageTop .inner {
    top: 56%;
    left: 50%;
    width: 100%;
    position: absolute;
    text-align: left;
    transform: translate(-50%,-50%);
}
.subPage > .pageTop h1,
.subPage > .pageTop h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1;
    text-align: center;
}

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

.title-lv-1 {
  margin: 0 0 120px;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
#recruit .title-lv-1 {
    margin: 0 0 30px;
}
#business04 .title-lv-1,
#business03 .title-lv-1 {
    margin: 0 0 30px;
}
.page-title p {
  display: block;
  margin: -30px 0 70px;
  font-size: 138%;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4em;
  text-align: center;
}
#business04 .page-title p,
#business03 .page-title p {
    margin: 0px 0 120px;
}
.title-lv-2 {
  position: relative;
  margin: 0 0 25px;
  padding: 9px 0 0 10px;
  font-size: 28px;
}
.title-lv-2::before {
  content: '';
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  position: absolute;
  border: 4px solid #949494;
}
.title-lv-2 > span {
  position: relative;
  display: block;
  padding: 0 5px;
  font-weight: 600;
  background: #1e1c1c;
  font-size: 26px;
}

.list-default {
  margin: 0;
  padding-left: 0;
  list-style-type: none;
}
.list-default > li {
  position: relative;
}
.list-default > li+li {
  margin-top: 5px;
}
.list-style-1 > li {
  padding-left: 12px;
  font-weight: 300;
  font-size: 16px;
  color: #eee;
}
.list-style-1 > li+li {
  margin-top: 3px;
}
.list-style-1 > li::before {
  content: '';
  top: 8px;
  left: 0;
  width: 4px;
  height: 4px;
  position: absolute;
  background: currentColor;
  border-radius: 50%;
}
.list-dash > li {
  padding-left: 12px;
  color: #eee;
}
.list-dash > li+li {
  margin-top: 3px;
}
.list-dash > li::before {
  content: '';
  top: 10px;
  left: 0;
  width: 6px;
  height: 1px;
  position: absolute;
  background: currentColor;
}
.list-num {
  counter-reset: list-number;
}
.list-num > li {
  counter-increment: list-number;
  padding-left: 18px;
}
.list-num > li+li {
  margin-top: 12px;
}
.list-num > li::before {
  content: counter(list-number)")";
  top: 0;
  left: 0;
  position: absolute;
}

table.tb-default {
  margin-bottom: 0;
  border-color: rgba(255, 255, 255, 0.44);
  border-top: 2px solid #fff;
}
table.tb-default>thead>tr>th,
table.tb-default>tbody>tr>th,
table.tb-default>tbody>tr>td {
  padding: 16px;
  border-color: rgb(255 255 255 / 27%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.27);
  vertical-align: middle;
}
table.tb-default>thead>tr>th {
  text-align: center;
}

table.tb-style-1>thead>tr>th,
table.tb-style-1>tbody>tr>th,
table.tb-style-1>tbody>tr>td {
  padding: 10px;
  font-size: 15px;
}
table.tb-style-1>tbody>tr>th {
  font-weight: 500;
  text-align: center;
}

table.tb-style-2>thead>tr>th,
table.tb-style-2>tbody>tr>th,
table.tb-style-2>tbody>tr>td {
  padding: 18px;
  font-size: 15px;
}
table.tb-style-2>thead>tr>th {
  padding: 12px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.034em;
  background: #333;
}
table.tb-style-2>tbody>tr>th {
  font-weight: 600;
  text-align: center;
}
table.tb-style-2>tbody>tr>th .sm {
  font-size: 90%;
  font-weight: 500;
  color: #ddd;
}
table.tb-style-2>tbody>tr>td ol {
  margin-top: 10px;
  padding-left: 10px;
  list-style-type: decimal;
}
table.tb-style-2>tbody>tr>td ol > li+li {
  margin-top: 15px;
}
table.tb-style-2>tbody>tr>td ol ul {
  margin: 6px 0 0 0;
}

/* 인사말 (페이지) */
.wrap-greet {
  display: flex;
}
.wrap-greet .image {
  min-height: 300px;
}
.wrap-greet .image .w_img {
  top: 50%;
  left: 50%;
  width: calc(100% - 30px);
  height: 100%;
  position: absolute;
  transform: translate(-50%,-50%);
}
.wrap-greet .image .w_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wrap-greet .text {
  padding: 10px 60px 30px 15px;
}
.wrap-greet .text h3 {
  margin: 0 0 40px;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  padding-left: 60px;
  position: relative;
}
.wrap-greet .text h3::before {
    content: '';
    display: block;
    position: absolute;
    width: 40px;
    height: 2px;
    background: #fff;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.wrap-greet .text p {
  margin: 0 0 25px;
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 0;
  color: #eee;
}
.wrap-greet .text p:last-child {
  margin-bottom: 0;
}

/* 연혁 (페이지) */
.box-history {
    border-top: 2px solid #fff;
}
.box-history > .item {
    display: grid;
    grid-template-columns: 240px auto;
    padding: 45px 0;
    border-bottom: 1px solid rgb(255 255 255 / 30%);
}
.box-history .year h3 {
    margin: 0;
    font-size: 60px;
    line-height: 1em;
    font-weight: 700;
    color: #444;
}
.box-history .detail {
    display: flex;
    flex-wrap: wrap;
}
.box-history .detail .image,
.box-history .detail .text {
    flex-basis: 25%;
}
.box-history .detail .list {
    flex-basis: 75%;
    padding-left: 45px;
}
.box-history .detail .image:not(:first-child),
.box-history .detail .image:not(:first-child)+.list {
    margin-top: 30px;
}
.box-history .detail .text p {
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    background: #333;
}
.box-history .detail ul li+li {
    margin-top: 6px;
    color: #ddd;
}
.box-history .detail ul li.main {
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 500;
}
.box-history .detail ul li:not(.main):not(.no-period) {
    display: flex;
    gap: 10px;
    padding-left: 15px;
}
.box-history .detail ul li:not(.main) .period {
    top: 0;
    left: 0;
    min-width: 62px;
}
.box-history .detail ul li+li:not(.main):not(.no-period)::before {
    content: '';
    top: 10px;
    left: 2px;
    width: 1px;
    height: 29px;
    background: #fff;
    position: absolute;
}
:lang(en) .box-history .detail ul li+li:not(.main):not(.no-period)::before{height: 49px;}
:lang(en) .box-history .item4 .detail ul li+li:not(.main):not(.no-period):last-child{gap:39px;}
.box-history .detail ul li:last-child:not(.main):not(.no-period)::before {
    display: none;
}
.box-history .detail ul li:not(.main):not(.no-period)::after {
    content: '';
    top: 8px;
    left: 0;
    width: 5px;
    height: 5px;
    position: absolute;
    background: #fff;
    border-radius: 50%;
}

/* 설비 (페이지) */
.box-equip {
  display: grid;
  grid-template-columns: 250px auto;
  gap: 0 30px;
  position: relative;
}
.box-equip+.box-equip {
  padding-top: 70px;
}
.box-equip .top {
  grid-column: span 2;
}
.box-equip .top .sm {
  font-size: 80%;
  font-weight: 500;
  color: #ddd;
}
.box-equip .image .w_img {
  padding: 30px;
  background: #fff;
}
.box-equip .detail {
  display: flex;
}
.box-equip .detail > .table-responsive {
  flex-basis: 70%;
}
.box-equip .detail > .right {
  flex-basis: 30%;
}
.box-equip .detail > .right.image {
  padding-left: 60px;
}
.box-equip.both .detail > .right.image {
  top: 90%;
}
.box-equip.both .detail > .right {
  top: calc(100% + 30px);
  position: relative;
  z-index: 100;
}
.box-equip .detail > .right p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  color: #ddd;
  line-height: 1.4em;
  padding-left: 80px;
}
.box-equip:first-child .detail > .right p {
  margin: -5px 0 0;
}
.box-equip:nth-child(4) .detail > .right p {
  padding-left:30px;
}
 .box-equip:nth-child(6) .detail > .right p {
   padding-left:30px;
 }
.box-equip .detail > .right img {
  width: 150px;
  margin-bottom: 15px;
}
.box-equip table>tbody>tr:first-child>th,
.box-equip table>tbody>tr:first-child>td {
  border-top: 3px solid #ffffff;
}
.box-equip table>tbody>tr.shadow {
  font-weight: 500;
  background: #333;
}
.box-equip .line {
  top: 0;
  right: 19%;
  width: 1px;
  height: 100%;
  position: absolute;
  background: #999;
}
.box-equip:first-child .line {
  top: 70px;
}
.box-equip .line::after {
  content: '';
  top: 130px;
  left: -12px;
  width: 25px;
  height: 25px;
  position: absolute;
  background: #fff;
  border: 7px solid #707070;
  border-radius: 50%;
  z-index: 100;
}
.box-equip:first-child .line::after {
  top: -5px;
}
.box-equip:last-child .line {
  height: 94%;
}
.box-equip .line.no::after {
  display: none;
}
.box-equip.both .line::after {
  top: calc(100% + 30px);
}

/* 오시는 길 (페이지) */
.box-location .info {
    margin: 30px 5px 0;
}
.box-location .info ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
}
.box-location .info ul > li.addr {
    padding-left: 40px;
}
.box-location .info ul > li.addr::before {
    content: "\ebe0";
    top: 0px;
    left: 0;
    width: 28px;
    height: 28px;
    position: absolute;
    font-family: "Phosphor";
    color: #fff;
    text-align: center;
    background: var(--page-point-color);
    border-radius: 50%;
    font-size: 18px;
        padding: 2px 0 0 1px;
}
.box-location .info ul > li.tel {
    letter-spacing: 0;
}
.box-location .info ul > li.tel span {
    padding-right: 13px;
    font-size: 85%;
    font-weight: 600;
    color: #999;
} 

/* 파트너 (페이지) */
.box-partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 57px;
}
.box-partners > .item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  background: #fff;
  border-bottom: 5px solid #387cd9;
}
.box-partners > .item:nth-child(3){
  grid-column: span 2;
  margin-top: 57px;
}
.box-partners .top {
  top: -57px;
  left: 0;
  width: 100%;
  position: absolute;
  padding: 16px 14px;
  text-align: center;
  border-radius: 7px 7px 0px 0px;
  background: var(--page-point-color);
}
.box-partners .top .tit {
  margin: 0;
  font-size: 24px;
  letter-spacing: 0;
}
.box-partners .detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px 40px;
}
.box-partners .detail .w_logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-partners .detail .w_logo img {
  max-width: 190px;
  max-height: 45px;
}
.box-partners .detail .w_logo img.box_img{max-height: 60px;}

/* 주요사업 공통 스타일 */
.subPage .box-biz {
  display: flex;
  border: 1px solid #555;
}
.subPage .box-biz+.box-biz {
  margin-top: 30px;
}
.subPage .box-biz > .image {
  flex-basis: 50%;
}
.subPage .box-biz > .text {
  flex-basis: 50%;
  padding: 45px;
  background: #333;
  position: relative;
  overflow: hidden;
}
.subPage .box-biz > .text::before {
    content: 'Layerwise';
    display: block;
    position: absolute;
    font-size: 66px;
    bottom: 25px;
    right: 35px;
    font-weight: 600;
    opacity: .1;
    color: #999;
}
.subPage .box-biz .text > ul {
  font-size: 20px;
}
.subPage .box-biz .text > ul > li {
  padding-left: 33px;
  font-size: 19px;
  font-weight: 500;
}
.subPage .box-biz .text > ul > li+li {
  margin-top: 15px;
}
.subPage .box-biz .text > ul > li .no {
  top: 3px;
  left: 0;
  width: 23px;
  height: 23px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 79%;
  font-weight: 500;
  background: var(--page-point-color);
  border-radius: 50%;
}
.subPage .box-biz .text > ul ul {
  margin-top: 6px;
}
.subPage .box-biz .text > ul ul li {
  font-size: 80%;
  color: #ddd;
  font-weight: 400;
}
.subPage .box-biz-2 {
  display: flex;
  gap: 30px;
}
.subPage .box-biz-2+.box-biz-2 {
  margin-top: 50px;
}
.subPage .box-biz-2 .tit {
  flex-basis: 350px;
  position: relative;
  margin: 0 0 30px;
  padding-top: 30px;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.35em;
}
.subPage .box-biz-2 .tit::before {
  content: '';
  top: 0;
  left: 0;
  width: 26px;
  height: 7px;
  position: absolute;
  background: var(--page-point-color);
}
.subPage .box-biz-2 .detail {
  flex-basis: calc(100% - 350px);
  padding: 40px;
  background: #333;
}
#business04 .box-biz-2 .detail p {
    color: #ddd;
}
.subPage .box-biz-2 .wrap-list {
  display: flex;
  gap: 40px;
}
.subPage .box-biz-2 *+.wrap-list {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px dashed #666;
}
.subPage .box-biz-2 .wrap-list .inner {
  flex-basis: 50%;
}
.subPage .box-biz-2 .wrap-list .tit-list {
  position: relative;
  margin: 0 0 20px;
  padding-left: 0;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0;
}

/* 컨설팅 */
#business01 .box-biz.biz02 > .image{
  display: flex;
  gap: 20px;
  padding: 20px;
  justify-content: center;
}
#business01 .box-biz.step_list > .image{ gap: 50px;}
#business01 .box-biz.biz02 > .size_img .img_box:nth-child(1){flex: 29%;}
#business01 .box-biz.biz02 > .size_img .img_box:nth-child(2){flex: 20%;}
#business01 .box-biz.biz02 p{
    font-weight: 600;
    font-size: 22px;
}
#business01 .box-biz > .image .step{position: relative;}
#business01 .box-biz > .image .step::before{
  position: absolute;
  right: -32px;
  top: 50px;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/* 적층제조 */
#business02  .box-biz > .image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
  /* display: flex;
  align-items: center;
  justify-content: center; */
}

/* Addiblast, 파우더 분리 시스템 (페이지) */
#business03 .box-biz > .text {
  flex-basis: 70%;
}
#business03 .box-biz > .text p {
    color: #ddd;
}
#business03 .box-biz > .image {
  flex-basis: 30%;
  padding: 40px;
}
#business03 .box-biz .title-lv-2 {
  font-size: 24px;
}
#business03 .box-biz .title-lv-2 > span {
  background: #333;
}

/* 필터 교체 서비스 */
#business05 .box-biz.biz02 > .image{
  display: flex;
  gap: 20px;
  flex-direction: column;
  padding: 20px;
}
#business05 .img_area{
  display: flex;
  gap: 20px;
}

/* 인사 & 보상제도 (페이지) */
.box-reward {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.box-reward > .item {
  padding: 0px 15px 40px;
  text-align: center;
  border: 1px solid #5f5e5e;
  border-top: 5px solid var(--page-point-color);
}
.box-reward .icon {
  width: 105px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  padding: 10px;
  background: var(--page-point-color);
  border-radius: 50%;
  margin-top: -54px;
  color: #fff;
  border: 6px solid #1e1c1c;
}
.box-reward .icon > * {
  font-size: 52px;
}
.box-reward .detail {
  min-height: 72px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.box-reward p {
  margin: 0;
  font-weight: 500;
  font-size: 17px;
  color: #eee;
}

/* 채용정보 (페이지) */
.box-recruit .intro {
  margin-bottom: 60px;
}
.box-recruit .intro .subject {
  margin: 0 0 120px;
  font-weight: 500;
  font-size: 25px;
  text-align: center;
}
.box-recruit .intro .inner {
  position: relative;
  padding: 60px;
  font-size: 18px;
  background: url('/public/img/sub/recruit_bg.jpg') no-repeat center / cover;
}
.box-recruit .intro .inner::before {
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  background: #000;
  opacity: 0.7;
}
.box-recruit .intro .inner .text {
  position: relative;
}
.box-recruit .intro p {
  margin: 0 0 25px;
  font-size: 18px;
  color: #f5f5f5;
  text-align: center;
  font-weight: 300;
  line-height: 1.65em;
}
.box-recruit .intro p strong {
    color: #fff;
}
.box-recruit .intro p:last-child {
  margin-bottom: 0;
}
.box-recruit .detail .block {
  display: flex;
}
.box-recruit .detail .block:nth-child(7) li {
  color: var(--page-point-color-light);
}
.box-recruit .detail .block+.block {
  margin-top: 60px;
}
.box-recruit .detail .block .tit {
  flex-basis: 340px;
  position: relative;
  margin: 0;
  padding-top: 10px;
  font-size: 24px;
  font-weight: 700;
}
/* .box-recruit .detail .block .tit::before {
  content: '';
  top: 0;
  left: 0;
  width: calc(100% - 70px);
  position: absolute;
  border-top: 1px solid #fff;
} */
.box-recruit .detail .block .inner {
  flex-basis: calc(100% - 300px);
}
.box-recruit .detail .block:not(:first-child) .inner,
.box-recruit .detail .prefer {
  padding: 35px;
  background: #333;
  border-top: 2px solid #fff;
}
.box-recruit .detail .prefer {
  margin-top: 30px;
}
.box-recruit .detail .color-red {
  color: var(--page-point-color-light);
  display: inline-block;
  margin-top: 3px;
  font-size: 15px;
}
.box-recruit .list-article > li {
  padding-left: 0;
}
.box-recruit .list-article > li+li {
  margin-top: 6px;
}
.box-recruit .list-article > li a {
  position: relative;
  text-decoration: underline;
}
.box-recruit .list-article > li a::after {
  content: "\ebc2";
  top: 0;
  right: -20px;
  position: absolute;
  font-family: "Phosphor-Bold";
}
.box-recruit .list-article > li a:hover {
  color: var(--page-point-color-light);
}

/* 게시판, 주문폼 공통 스타일 */
.board_wrapper,
.calendar_wrapper {
  margin-top: 0;
  margin-bottom: 0;
  
}
.search_wrap {
  margin-bottom: 0;
  margin-top: 50px;
}
.board_wrapper .table.table_default {
  border-top: 1px solid #666;
}
.table.table_default tr th,
.table.table_default tr td {
  border-color: #666;
}
.table.table_default tr td.writer,
.table.table_default tr td.regdate,
.table.table_default tr td.hits {
  color: #999;
}
.table.table_default tr td.subject {
  position: relative;
}
.table.table_default thead th {
  font-weight: 600;
  color: #fff;
  background: #000;
  border-color: #666;
  padding: 20px 15px;
}
.table.table_default tbody .subject .badge {
  top: 15px;
  position: absolute;
  padding: 4px 6px 3px;
  font-weight: 600;
  color: #000;
  line-height: 1.3em;
  background: #ddd;
  border: none;
  border-radius: 0;
}
.table.table_default tbody .subject a {
  font-size: 16px;
}
.table.table_default tbody .subject a:hover {
  text-decoration: underline;
}
.table.table_default tbody .subject span>.badge+a {
  padding-left: 62px;
}

.board_data_view .header_wrap {
  padding: 0;
  border-top: 3px solid #aaa;
  border-bottom: 1px solid #aaa;
}
.board_data_view .header_wrap .title {
  padding: 40px 5px 38px;
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3em;
  letter-spacing: -0.032em;
}
.board_data_view .header_wrap .info {
  margin: 0;
  padding: 11px 0;
  border-top: 1px solid #555;
}
.board_data_view .header_wrap .info span {
  font-size: 13px;
  color: #909090;
}
.board_data_view p {
  font-size: 17px;
}
.btn.btn-outline-dark {
    border: 1px solid #939393;
    color: #aaa;
}
.board_data_view .marker {
  margin: 10px 0 3px;
  display: inline-block;
  padding: 1px 5px;
  font-weight: 500;
  color: #000;
  background: rgb(255 255 255 / 90%);
}
.board_data_view .download_wrap table td ul li a {
  color: #eee;
}
.board_data_view .download_wrap table td ul li a:is(:hover, :focus) {
  color: #fff;
}

/* 카테고리 */
.category_wrap {
  margin-bottom: 60px;
}
.category_wrap ul {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.category_wrap li a {
  font-weight: 500;
  letter-spacing: 0;
  transition: none;
}
.category_wrap li a:where(:hover,:focus) {
  color: #999;
}
.category_wrap li.on :where(a, a:hover, a:focus) {
  color: #fff;
}

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

.btn.btn-lg {
  padding: 14px 0;
  font-size: 15px;
}
/* 게시글 작성 */
.board_wrapper .table.board_write_table tbody tr th,
.board_wrapper .table.board_write_table tbody tr td {
  font-size: 15px;
  border-color: #aaa;
}
.board_wrapper .table.board_write_table {
  border-top: 2px solid #aaa;
}
.board_wrapper .table.board_write_table tbody tr th {
  width: 180px;
  font-weight: 700;
  color: #fff;
  background: transparent;
  padding-left: 10px;
}
.board_wrapper .table.board_write_table tbody tr td textarea {
  color: #333;
}
.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 {
  letter-spacing: -0.03em;
  font-size: 15px;
}

/* 주문폼 */
.board_wrapper .table.board_write_table tbody tr td .form-control {
  width: 350px;
  background: transparent;
  border-color: #999;
}
.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;
}

/* 블로그B 게시판 */
.table_blog2 .inner {
  text-align: center;
  border: none;
}
.table_blog2 .inner :where(.bottom .title a, .title a) {
  font-weight: 500;
  text-decoration: none !important;
  color: #fff;
}
.table_blog2 .inner .top a .thumb {
  height: auto;
  min-height: 260px;
  transition: all ease .15s;
  aspect-ratio: 4 / 3;
}
.table_blog2 .inner:hover .top a .thumb {
  opacity: 0.8;
}
.table_blog2 .inner .bottom {
  padding: 20px 15px 20px;
}
.table_blog2 .badge {
  display: block;
  padding: 0 0 10px;
  font-size: 14px;
  color: #999;
  letter-spacing: 0;
  background: transparent;
}
.table_blog2 .bottom .info {
  display: none;
}

/* Contact us (주문폼) */
#contact_us .board_wrapper .table.board_write_table {
  border: none;
}
#contact_us .board_wrapper .table.board_write_table tbody {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
#contact_us .board_wrapper .table.board_write_table tbody tr {
  grid-column: span 2;
}
#contact_us .board_wrapper .table.board_write_table tbody tr#item_1,
#contact_us .board_wrapper .table.board_write_table tbody tr#item_2 {
  grid-column: span 6;
}
#contact_us .board_wrapper .table.board_write_table tbody tr#item_captcha,
#contact_us .board_wrapper .table.board_write_table tbody tr#item_agree {
  grid-column: span 3;
}
#contact_us .board_wrapper .table.board_write_table tbody tr th,
#contact_us .board_wrapper .table.board_write_table tbody tr td {
  display: block;
  font-size: 16px;
  border: none;
}
#contact_us .board_wrapper .table.board_write_table tbody tr th {
  padding: 10px 15px 10px;
  font-weight: 400;
  color: #fff;
  background: transparent;
}
#contact_us .board_wrapper .table.board_write_table tbody tr td {
  padding: 0 5px 12px;
}
#contact_us .board_wrapper .table.board_write_table tbody tr td .form-control {
  width: 100%;
  color: #fff;
  background: #333;
  border: none;
}
#contact_us .board_wrapper .table.board_write_table tbody tr td .text-muted {
  display: none;
}
#contact_us .board_wrapper .table.board_write_table tbody tr#item_captcha td {
  display: flex;
  align-items: center;
  gap: 5px;
}
#contact_us .board_wrapper .table.board_write_table tbody tr#item_captcha td #captcha {
  height: 50px;
}
#contact_us .board_wrapper .table.board_write_table tbody tr#item_captcha td #wr_captcha {
  width: 100%;
  height: 50px;
  margin: 0 0 0 -1px !important;
  max-width: 250px;
}
#contact_us .custom_checkbox + span::before {
  color: #fff;
}

/* 로그인 */
.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: 170px auto 90px;
  padding: 45px;
  background: #fff;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.10);
}
.login_wrapper .member_wrapper h1,
#find_idpw .member_wrapper h1 {
  padding-bottom: 0;
  border-bottom: none;
}
/**************** 서브 끝 ****************/
/*********** 모바일 최적화 시작 ***********/
@media (max-width: 1199px) { /* Small·Medium·Large devices */

}
@media (max-width: 1190px) {.menu-top .container{width: 100%;}}
@media (max-width: 1033px) { 
  .navbar-inverse .navbar-nav > li > a{padding: 35px 15px;font-size: 15px;}
}
@media (max-width: 776px) { 
  .navbar-right{margin-right: 95px;}
}
@media (max-width: 767px) { /* Small devices (col-xs-*) 모바일 */
    .navbar-inverse .navbar-collapse{padding: 0 15px;}
  .navbar-right{margin-right: 0;}
  .navbar-inverse .navbar-nav > li > a{    padding: 15px;}
  
/* main */
  #introduction{height: inherit;}
  .mainPage h2{font-size: 31px;}
  .mainPage #section1{padding: 110px 0 140px;}
  .mainPage .box-biz{
    display: flex;
    flex-direction: column;
  }
  .mainPage #section2{padding: 110px 0 140px;}
  .mainPage #section2 h3{font-size: 35px;}
  .mainPage .box-biz > .item::before{z-index: 0;}

  .subPage > .pageTop{height: 350px;}
  .subPage > .pageTop h1, .subPage > .pageTop h2{font-size: 45px;}
  .subPage > .contents{padding: 100px 0 120px;}
  .title-lv-1{font-size: 39px;margin: 0 0 90px;}
  .wrap-greet{flex-direction: column;}
  .wrap-greet .text{padding: 60px 15px 30px 15px;}

  .box-history > .item{
    grid-template-columns: 1fr;    gap: 45px;
  }
  .box-history .year h3{font-size: 56px;}
  .box-history .detail{
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .box-history .detail .list{
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 0px;
  }
  .box-history .detail ul li+li:not(.main):not(.no-period)::before{height: 49px;}
  
    /* 설비 */
  .title-lv-2 > span{font-size: 24px;}
  .box-equip,
  .box-equip .detail{
    display: block;
  }
  .box-equip:first-child .detail > .right{ 
    top: -50px; 
  }
  .box-equip .detail > .right{
    position: absolute;
    left: -40px;
    top: 10px;
  }
  .box-equip .item{padding-left: 30px;}
  .box-equip .image{padding-bottom: 30px;}
  .box-equip .detail > .right img{margin: 0 0 15px;}
  .box-equip .line{
    right: inherit;
    left: 5px;
    top: -120px;
    height: 110%;
  }
  .box-equip:first-child .line{top: -50px;}
  .box-equip+.box-equip{padding-top: 60px;}
  .box-equip .detail > .right p{padding-left: 70px;}
  .box-equip .detail > .right.image{
    padding-left: 70px;
    top: 0;
  }
  .box-equip.both .detail > .right.image{
    left: inherit;
    margin-top: 70px;
    padding: 0;
    top: 0px;
  }
  .box-equip:nth-child(4) .detail > .right p{padding-left: 0;}
  .box-equip:nth-child(4) .line{
    top: -140px;
  }
  .box-equip:nth-child(5) .line{
    height: 117%;
  }
  .box-equip:nth-child(5){    padding-top: 40px;}
  .box-equip:nth-child(6) .detail > .right.image{    top: 0;}
  .box-equip:nth-child(6) .detail > .right p{padding-left: 0;}
  .box-equip:nth-child(6){
    padding-top: 330px;
  }
  .box-equip:nth-child(6) .detail > .right img{
    margin-top: 70px;
  }
  .box-equip:nth-child(6) .line{
    top: -27px;
  }
  .box-equip:nth-child(6) .line::after{
    top: 295px;
  }
  .box-equip:nth-child(7) .line{    top: -100px;}
  .box-equip:nth-child(7) .detail > .right{top: 16px;}
  .box-equip:nth-child(7) .detail > .right p{    padding-left: 40px;}
  .box-equip:nth-child(8){padding-top: 40px;}
  .box-equip:last-child .line{height: 130%;}

  .box-partners{display: block;}
  .box-partners > .item{margin-bottom: 100px;}
  .box-partners > .item:nth-child(3){margin-bottom: 0;}

  .box-location .info ul{flex-direction: column;font-size: 18px;align-items: flex-start;}
  
    .subPage .box-biz{flex-direction: column;}
  .subPage .box-biz > .text{    padding: 25px;}
  .subPage .box-biz > .text::before{
    font-size: 30px;
    bottom: 8px;
    right: 12px;
  }
  .subPage .box-biz .text > ul > li{
    font-size: 18px;
  }
  #business01 .box-biz > .image .step::before{
    top: 25px;
    width: 15px;
    height: 15px;
  }
  #business01 .box-biz.biz02 p{font-size: 19px;}
  
    #business04 .page-title p{font-size: 108%;margin: 0px 0 70px;}
  .subPage .box-biz-2{
    gap: 0;
    flex-direction: column;
  }
  .subPage .box-biz-2 .tit{flex-basis: inherit;}
  .subPage .box-biz-2 .wrap-list{
    gap: 40px;
    flex-direction: column;
  }
  #row2 div:first-child{padding-bottom: 20px;}

  .box-reward{
    grid-template-columns: repeat(1, 1fr);
    gap: 65px;
  }
  .box-reward .detail{min-height: 45px;}
  .box-recruit .intro .subject{
    font-size: 21px;
    margin: 0 0 70px;
  }
  .box-recruit .intro .inner{
    padding: 30px;
  }
  .box-recruit .detail .block{
    flex-direction: column;
    gap: 30px;
  }
    .box-recruit .detail .block .tit{
    flex-basis: inherit;
  }

#board_data_blog2 dd{width: 100%;}





    .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 .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}
}
@media (min-width: 768px) { /* Medium·Large·Extra large devices */

}
@media (min-width: 768px) and (max-width: 1665px) {

}
@media (min-width: 768px) and (max-width: 1199px) { /* Medium·Large devices */
  .navbar>.container {
    width: 100%;
  }
  .box-equip .top {
    max-width: 742px;
  }
}
@media (min-width: 768px) and (max-width: 991px) { /* Medium devices (col-sm-*) */

}
@media (min-width: 992px) and (max-width: 1199px) { /* Large devices (col-md-*) */

}
@media (min-width: 1200px) { /* Extra large devices (col-lg-*) */

}
@media (min-width: 1230px) {
    .container{width:1200px}
  }
/************ 모바일 최적화 끝 ************/