@charset "utf-8";

#site {
  padding-top: 0px;
  font-size: 15px;
  font-family: 'notokr', sans-serif;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

a,
button {
  transition: all ease-in-out .15s;
  -webkit-transition: all ease-in-out .15s;
  -moz-transition: all ease-in-out .15s;
  -ms-transition: all ease-in-out .15s;
  -o-transition: all ease-in-out .15s;
}

a,
a:hover,
a:focus {
  color: inherit;
}

p {
  line-height: 1.5em;
}

img.bordered {
  border: 1px solid #ddd;
}

.box-highlight {
  position: relative;
  margin: 60px 20px 0;
  color: #ec632b;
  font-size: 25px;
  text-align: left;
}

.box-highlight strong {
  font-weight: 400;
  color: #ec632b;
}

.color-red {
  color: #e45809;
}

.highlight {
  padding: 2px 5px;
  background-color: #f5e9db;
}

.btn.btn-primary {
  background-color: #ee6518;
  border-color: #ee6518;
}

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

.list-default {
  padding-left: 0;
  list-style-type: none;
}

.list-style-1>li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 20px;
  color: #666;
  line-height: 1.45;
}

.list-style-1>li:before {
  content: '';
  top: 9px;
  left: 5px;
  width: 4px;
  height: 4px;
  position: absolute;
  background-color: #888;
  border-radius: 50%;
}

.tb-default tr>th,
.tb-default tr>td {
  vertical-align: center;
}

.table-style-1 {
  font-size: 15px;
  border-top: 2px solid #333;
  border-bottom: 1px solid #ddd;
}

.table-style-1>thead>tr>th,
.table-style-1>tbody>tr>th,
.table-style-1>tbody>tr>td {
  padding: 14px 10px;
  text-align: center;
  vertical-align: middle;
}

.table-style-1>thead>tr>th {
  background-color: #f6f6f6;
  border-bottom-width: 1px;
}

/* 언어 전환 버튼 */
.ch-lang {
  padding: 0;
  text-align: right;
  background: #f6f6f6;
  border-bottom: 1px solid #e6e6e6;
}

.ch-lang ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.ch-lang ul>li {
  position: relative;
  display: inline-block;
  line-height: 1;
}

.ch-lang ul>li .lang {
  height: 30px;
  padding: 0 4px;
  font-size: 12px;
  color: #999;
  line-height: 1;
  background-color: transparent;
  border: none;
  letter-spacing: -0.01em;
}

.ch-lang ul>li .lang:hover {
  color: #000;
}

.ch-lang ul>li .lang:focus {
  outline: none;
}

.ch-lang ul>li .lang.active {
  font-weight: 500;
  color: #000;
}

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

/* 상단 메뉴 */
.navbar-inverse {
  background: #fff;
  position: fixed;
  margin-bottom: 0;
  border-bottom: 1px solid #ddd;
}

.navbar-inverse .navbar-brand {
  height: 75px;
}

.navbar-inverse .navbar-brand img {
  height: 47px;
  margin-top: 3px;
}

.navbar-inverse .navbar-nav>li>a {
  padding-top: 32px;
  padding-bottom: 32px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  letter-spacing: -.035em;
}

.navbar-inverse .navbar-nav>li>a:hover,
.navbar-inverse .navbar-nav>li>a:focus {
  color: #ee6518;
}

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

@media (max-width: 767px) {
  .navbar-inverse .navbar-toggle {
    margin: 22px 15px 20px;
    padding: 9px 0;
    border: 0;
  }

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

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

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

  .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) {
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }

    100% {
      opacity: 1;
      transform: translateY(0px);
    }
  }

  .navbar-inverse .navbar-nav .dropdown-menu {
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
    border-radius: 0;
    border: none;
    padding: 0;
    background-color: rgba(25, 25, 25, 0.9);
    box-shadow: none;
    transition: 0.1s;
  }

  .navbar-inverse .navbar-nav .dropdown-menu>li>a {
    padding: 13px 20px;
    color: #e8e8e8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    letter-spacing: 0;
  }

  .navbar-inverse .navbar-nav .dropdown-menu>li>a:hover,
  .navbar-inverse .navbar-nav .dropdown-menu>li>a:focus {
    background: #000;
    color: #ff7a30;
    font-weight: 500;
  }
}

@media (min-width: 992px) {
  .navbar-inverse .navbar-right {
    margin-right: -23px;
  }

  .navbar-inverse .navbar-nav>li>a {
    /* padding-left: 15px;
    padding-right: 15px; */
    /* padding-left: 16px;
    padding-right: 16px; */
    padding-left: 13px;
    padding-right: 13px;
  }
  html.logined .navbar-inverse .navbar-nav>li>a {
    /* padding-left: 14px;
    padding-right: 14px; */
    padding-left: 13px;
    padding-right: 13px;
  }
}

/* 슬라이드 공통 */
.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: 12px;
  height: 12px;
  background-color: #fff;
  border: none;
  margin: 0 3px;
  border-radius: 50%;
  transition: ease-in-out .15s all;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
}

.carousel-indicators li.active {
  width: 12px;
  height: 12px;
  background-color: #ee6518;
  border-color: #ee6518;
  margin: 0 3px;
  box-shadow: none;
  transform: none;
}

.carousel-caption {
  top: 50%;
  padding: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}

.carousel-caption h1 {
  font-size: 74px;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin: 0 0 25px;
}

.carousel-caption p {
  font-size: 18px;
}

#mainCarousel .carousel-inner .item {
  height: 500px;
}

#mainCarousel .carousel-inner .item::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
  opacity: .3;
}

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

@media (max-width: 767px) {
  .carousel-control {
    font-size: 14px;
  }

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

/* 푸터 */
#site footer {
  margin-top: 0px;
  background-color: #333;
  color: #e3e4e5
}

#site footer .footer-info {
  padding: 30px 0
}

#site footer .footer-info ul {
  position: relative;
  margin: 0;
  padding: 0;
  font-size: 0;
  z-index: 1;
}

#site footer .footer-info ul li {
  list-style: none;
  display: inline-block;
  font-size: 13px;
  margin-right: 15px;
  line-height: 22px
}

#site footer .footer-info ul li.copy {
  font-size: 12px;
  color: #b0b0b0;
}

#site footer .footer-info .sns_list {
  position: relative;
  z-index: 2;
  float: right;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: -35px;
  margin-right: 60px;
}
#site footer .footer-info .sns_list span {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: #ffcc00;
}
#site footer .footer-info .ico_sns {
  width: 34px;
  height: 34px;
  display: inline-block;
}
#site footer .footer-info .ico_sns:nth-child(2) {
  width: 45px;
}
#site footer .footer-info .ico_sns:nth-child(2) img{
  height: 100%;
  width: 100%;
}
#site footer .footer-info .ico_sns img {
  max-width: 100%;
  vertical-align: middle;
}
@media (max-width: 767px) {
  #site footer .footer-info .sns_list {
    float: left;
    margin: 0;
  }
}
/* 메인 페이지 */

/* 상단 배너 */
#main_wrapper {
  margin-top: 115px;
}

#banner {
  position: relative;
  /* margin-top: -100px; */
  background: rgba(35, 35, 35, 1);
  z-index: 1;
}

#banner .row {
  margin: 0;
}

#banner .row>div {
  padding: 0;
}

.main-contents .box-banner>a {
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-block;
  padding: 25px 58px;
  color: #fff;
}

.main-contents .box-banner>a::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 50px;
  right: 0;
  top: 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

#banner .row>div:last-child a::after {
  content: none;
}

.main-contents .box-banner>a:hover,
.main-contents .box-banner>a:focus {
  text-decoration: none;
  background-color: #ee6518;
}

.main-contents .box-banner i {
  width: 50px;
  height: 50px;
  float: left;
  margin: 0 16px 0 0;
  font-size: 33px;
  text-align: center;
  border-radius: 50%;
  line-height: 48px;
  color: #ee6518;
  transition: all ease-in-out .15s;
}

.main-contents .box-banner>a:hover i,
.main-contents .box-banner>a:focus i {
  color: #fff;
}


.main-contents .box-banner h5 {
  margin: 0;
  padding-top: 4px;
  font-size: 20px;
}

[lang="en"] .main-contents .box-banner h5 {
  padding-top: 14px;
  font-size: 18px;
}

.main-contents .box-banner small {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: #fff;
  letter-spacing: 0.02em;
  font-weight: 300;
  opacity: 0.8;
}

/* 제품소개 */
.main-contents #product {
  padding: 80px 0;
}

.main-contents .box-product {
  width: 25%;
  min-height: 332px;
  float: left;
  margin: 0;
  padding: 40px 35px;
  color: #fff;
  background-color: #ee6518;
  background-size: cover;
  background-repeat: no-repeat;
}

.main-contents .box-product h4 {
  font-size: 25px;
  letter-spacing: -0.03em;
  margin: 0;
}

.main-contents .box-product hr {
  display: none;
}

.main-contents .box-product p {
  margin: 22px 0 40px;
  font-size: 14px;
  line-height: 1.7;
}

.main-contents .btn {
  padding: 8px 18px;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 500;
  background: #333;
}

.main-contents .btn:hover,
.main-contents .btn:focus {
  color: #fff;
  background: #000;
}

/* LED MODULE */
#section_735b90 .board_box_blog2 {
  width: 75%;
  float: right;
  margin-top: -418px;
  padding-left: 65px;
}

div[class^="board_box_"] .page-header {
  border-bottom: none;
  padding: 0;
  margin: 0 0 30px;
}

#section_735b90 div[class^="board_box_"] .page-header {
  margin-bottom: 10px;
}

div[class^="board_box_"] .page-header h4 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin: 0;
}

.page-header .pull-right i {
  color: #333;
  margin: 2px 1px;
}

.page-header .pull-right:hover i {
  color: #ff8540;
}

.board_box_blog2 .row {
  margin-left: -10px;
  margin-right: -10px;
}

.board_box_blog2 .row>div[class^="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

.board_box_blog2 .inner {
  margin-top: 10px;
  margin-bottom: 0;
  position: relative;
  transition: all 0.25s;
}

.board_box_blog2 .inner:hover {
  border-color: #ee6518;
}

.board_box_blog2 .inner .top {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.board_box_blog2 .inner .bottom {
  position: absolute;
  width: 100%;
  text-align: center;
  padding: 0;
  bottom: 0;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.1);
}

.board_box_blog2 .inner .bottom .title {
  margin-bottom: 0;
  padding: 8px 15px;
}

.board_box_blog2 .inner .bottom .title a {
  font-size: 15px;
  font-weight: 500;
}

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

.board_box_blog2 .inner .top a .thumb {
  height: 140px;
  background-size: 100% 103px;
  background-position: center 0%;
}

/* CONTACT */
.main-contents#main2 {
  float: left;
  width: 25%;
  margin-right: 57px;
}

.main-contents .box-contact {
  padding: 47px 35px;
  color: #fff;
  background-color: #444;
}

.main-contents .box-contact h4 {
  font-size: 30px;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}

.main-contents .box-contact hr {
  display: none;
}

.main-contents .box-contact span {
  margin-right: 2px;
  color: #ff8540;
  font-weight: 500;
}

.main-contents .box-contact p {
  font-size: 14px;
  letter-spacing: 0;
  margin: 0 0 2px;
}

.main-contents .box-contact .btn {
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0);
}

.main-contents .box-contact .btn:hover {
  background: #fff;
  color: #333;
}

/*메인 비디오*/
#section_fbd793 {
  padding: 80px 0;
}

.main-contents#main3 {
  float: left;
  width: 25%;
  margin-right: 57px;
}

.main-contents#main3 #TLM {
  min-height: 332px;

  margin: 0;
  padding: 108px 35px;
  color: #fff;
  background-color: #e7b60c;
  background-size: cover;
  background-repeat: no-repeat;
}

.main-contents#main3 #TLM .box-tlm-module {}

.main-contents#main3 #TLM .box-tlm-module h4 {
  font-size: 25px;
  letter-spacing: -0.03em;
  margin: 0;
}

.main-contents#main3 #TLM .box-tlm-module h4 b {}

.main-contents#main3 #TLM .box-tlm-module p {
  margin: 22px 0 40px;
  font-size: 14px;
  line-height: 1.7;
}

.main-contents#main3 #TLM .box-tlm-module .btn {}

.main-contents#main3 #TLM .box-tlm-module .btn:hover {}

.main-contents#main4 {
  float: left;
  width: calc(75% - 57px);
}

.main-contents#main4 .page-header {
  border-bottom: 0;
  margin: 0 0 10px;
}

.main-contents#main4 .page-header h4 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.04em;
  margin: 0;
}

#main4 #Video {
  /* padding: 38px 35px; */
}

/* 문의게시판, 공지사항 */
#section_a3f390 {
  background: #f3f3f3;
  padding: 80px 0 50px;
}

#section_a3f390 .board_box_list {
  width: 70%;
  height: 283px;
  background: #fff;
  padding: 38px 35px;
  border-right: 2px solid #f3f3f3;
}

#section_a3f390 .board_box_list .page-header {
  margin-bottom: 23px;
}

.board_box_list ul {
  font-size: 15px;
}

.board_box_list ul li {
  position: relative;
  padding: 7px 0 7px 13px
}

.board_box_list ul li::before {
  content: '';
  top: 15px;
  left: 2px;
  width: 3px;
  height: 3px;
  position: absolute;
  background-color: #ff8540;
}

.board_box_list ul li a:hover,
.board_box_list ul li a:focus {
  color: #ee6518;
  text-decoration: underline;
}

.board_box_list ul li span {
  color: #999;
}

@media (max-width: 767px) {
  #mainCarousel .carousel-inner .item {
    height: 250px
  }

  #mainCarousel .carousel-caption h1 {
    margin: 0 0 20px;
    font-size: 32px;
  }

  #mainCarousel .carousel-caption p {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .carousel-indicators {
    bottom: 20%;
  }
}

/********** 서브 페이지 **********/
/* 공통 */
.navbar-inverse+.container {
  width: 100%;
  padding: 0;
}

.sub-contents {
  margin-top: 115px;
}

.sub-contents>.page-top {
  height: 250px;
  padding: 75px 0 0;
  color: #fff;
  text-align: center;
  background-image: url(/public/img/sub/back-page-top.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #333;
}

.sub-contents>.page-top h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 46px;
  font-weight: 500;
}

.sub-contents>.page-top p {
  font-size: 13px;
  font-weight: 300;
  color: #fff;
  letter-spacing: .1em;
  margin: 0;
  opacity: 0.8;
  display: none;
}

.sub-contents .wrap-breadcrumb {
  margin-top: -42px;
  height: 42px;
  background-color: rgba(35, 35, 35, .8);
}

.sub-contents .breadcrumb {
  margin-bottom: 0;
  padding: 0 15px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0;
  background-color: transparent;
  line-height: 42px;
}

.sub-contents .breadcrumb>li+li:before {
  content: "\f105";
  margin: 0 5px;
  font-size: 12px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  color: #bbb;
}

.sub-contents .breadcrumb>li.current {
  font-weight: 500;
  color: #ff8540;
}

.sub-contents>.contents {
  margin: 60px 0;
}

.sub-contents>.contents section {
  padding: 40px 0;
}

.title-lv-3 {
  font-size: 34px;
  font-weight: 400;
  margin: 0;
  color: #222;
  letter-spacing: -0.035em;
  display: inline-block;
  border-bottom: 3px solid #ee6518;
  padding-bottom: 10px;
}

.title-lv-3+hr {
  width: 40px;
  /* border-top: 3px solid #ee6518; */
  border-radius: 10px;
  /* margin: 15px 2px 0; */
  margin: 0;
}

.title-lv-4 {
  font-size: 22px;
  position: relative;
  margin-bottom: 25px;
  padding-left: 22px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.title-lv-4::before,
.title-lv-4::after {
  content: '';
  top: 4px;
  left: 3px;
  width: 7px;
  height: 7px;
  position: absolute;
  background: #ee6518;
  border-radius: 50px;
}

.title-lv-4::before {}

.title-lv-4::after {
  left: 3px;
  top: 14px;
  background: #333;
}

.inner-section {
  margin-bottom: 50px;
}

.contents p {
  color: #666;
}

/* 인사말 */
#greeting .col-sm-8 {
  padding-left: 45px;
}

#greeting .col-sm-8 p {
  line-height: 1.8;
  margin-bottom: 25px;
}

#greeting .txt-big {
  font-size: 26px;
  color: #ee6518;
  font-weight: 500;
  letter-spacing: -0.04em;
}

#greeting .color-blue,
#greeting .color-red {
  color: #ee6518;
  font-weight: 500;
  text-decoration: underline;
}

#greeting .text-right {
  margin: 40px 0 0 !important;
  text-align: left;
  font-size: 18px;
  color: #333;
  font-weight: 500;
}

#greeting .history {
  position: relative;
  padding-bottom: 65px;
  padding-left: 45px;
}

#greeting .history:last-child {
  padding-bottom: 0;
}

#greeting .history::before {
  content: '';
  top: 12px;
  left: 7px;
  height: 100%;
  position: absolute;
  border-left: 1px solid #ddd;
}

#greeting .history:last-child::before {
  height: 70%;
}

#greeting .history>.year {
  float: left;
  margin: 0;
  font-size: 24px;
  color: #ee6518;
}

#greeting .history>.year::before {
  content: '';
  top: 8px;
  left: 2px;
  width: 12px;
  height: 12px;
  position: absolute;
  background-color: #fff;
  border: 3px solid #e45809;
  border-radius: 50%;
}

#greeting .history>ul {
  width: 85%;
  display: inline-block;
  margin-top: 3px;
  margin-bottom: 0;
  padding-left: 85px;
}

#greeting .history>ul>li {
  width: 100%;
  display: inline-block;
  margin-bottom: 8px;
}

#greeting .history>ul>li .month {
  float: left;
  width: 10%;
  display: inline-block;
  margin: 0;
  padding: 0 12px;
  font-size: 16px;
  font-weight: 600;
}

#greeting .history>ul>li .desc {
  float: right;
  width: 90%;
  display: inline-block;
}

#greeting .history>ul>li .desc+.desc {
  margin-top: 5px;
}

/* 오시는길 */
#location .first p{font-size: 13.5px;}
#location .root_daum_roughmap_landing {
  width: 100% !important;
  margin-bottom: 35px;
}
#location iframe{margin-bottom: 35px;}

.contact {
  margin: 0;
}

.contact .box-contact {
  min-height: 290px;
  padding: 43px 20px 25px;
  text-align: center;
  background-color: #fff;
  border-top: 2px solid #333;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

.contact .box-contact.first {
  border-left: 1px solid #e6e6e6;
}

.contact .box-contact>h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.contact .box-contact>i {
  display: inline-block;
  margin: 18px 0 25px;
  width: 95px;
  height: 95px;
  font-size: 40px;
  color: #ee6518;
  background: #f3f3f3;
  border-radius: 50%;
  line-height: 95px;
}

.contact .box-contact>p {
  font-size: 14px;
  margin: 0;
}


.contact h3 {
  margin-left: -15px;
}

/* 제조공정 - 일관 생산 체제 */
#system .txt-big {
  margin-bottom: 35px;
  font-size: 22px;
  font-weight: 500;
  color: #333;
  text-align: center;
}

#system .txt-big strong {
  font-weight: 600;
}

#system .wrap-box-process-service {
  margin: -80px 50px 0;
  padding: 75px 55px 25px;
  background-color: #f6f6f6;
  border-radius: 5px;
}

#system .box-process-service {
  width: 160px;
  height: 160px;
  position: relative;
  margin: 0 auto 20px;
  padding: 54px 30px;
  background-color: #fff;
  border-radius: 100%;
}

#system .wrap-box-process-service>div:nth-child(even) .box-process-service {
  background-color: #d2d2d2;
}

#system .box-process-service::after {
  content: "\f105";
  top: 50px;
  right: -50px;
  position: absolute;
  font-size: 45px;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: #a3a6ad;
}

#system .wrap-box-process-service>div:last-child .box-process-service {
  background-color: #ee6518;
}

#system .wrap-box-process-service>div:last-child .box-process-service p {
  color: #fff;
}

#system .wrap-box-process-service>div:last-child .box-process-service::after {
  display: none;
}

#system .box-process-service p {
  width: 200px;
  height: 46px;
  display: table-cell;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  color: #444;
  text-align: center;
  line-height: 1.3em;
  vertical-align: middle;
}

#site[lang="en"] #system .box-process-service {
  padding: 4px 20px 0;
  display: flex;
  align-items: center;
}

#site[lang="en"] #system .box-process-service p {
  font-size: 15px;
  height: auto;
}

#system .wrap-sentense {
  margin: 0 90px 35px;
}

#system .wrap-sentense .sentense {
  margin: 0 auto;
  padding: 0 10px;
  text-align: center;
}

#system .wrap-sentense .sentense>h4 {
  padding: 20px 0;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  background-color: #3a404c;
  border-radius: 35px;
}

#system figcaption,
#system .img-detail {
  margin: 5px 0;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #333;
}

#system .description>p:nth-child(1) {
  margin-top: 35px;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

#system .description .tab-icon {
  position: relative;
  padding-left: 30px;
}

#system .description .tab-icon i {
  top: 3px;
  left: 15px;
  position: absolute;
  color: #ee6518;
}

#system .description strong {
  margin-left: 15px;
  font-size: 18px;
}

#system #seq2 img {
  margin-bottom: 13px;
  box-shadow: 2px 2px 4px 1px #888;
  filter: grayscale(1);
}
#system #seq3 img{
  filter: grayscale(1);
}

/* 제조공정 - 보유장비 */
#equipment img:not(.none-border) {
  padding: 13px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  border: 1px solid #ddd;
}

#equipment #seq1 img.bordered {
  padding: 20px;
  box-shadow: none;
  border: 0;
}

#equipment .table-top,
#equipment .table-bottom {
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}

#equipment .table-bottom {
  margin-top: -13px;
}

#equipment .table-style-1>thead>tr>th:last-child,
#equipment .table-style-1>tbody>tr>td:last-child {
  border-left: 3px solid #ff0801;
  border-right: 3px solid #ff0801;
}

#equipment .table-style-1>thead>tr>th:last-child {
  border-top: 3px solid #ff0801;
}

#equipment .table-style-1>tbody>tr:last-child>td:last-child {
  border-bottom: 3px solid #ff0801;
}

#equipment #seq3 .title-lv-4 {
  margin-left: 20px;
}

#equipment #seq3 .box-highlight+p {
  font-size: 18px;
  padding: 0 20px;
  margin: 30px 0 0px;
}

#equipment .img-detail {
  font-size: 19px;
  font-weight: 600;
  color: #ee6518;
}

#equipment .img-detail2 {
  margin-top: 120px;
  margin-left: -35px;
  font-size: 19px;
  font-weight: 600;
  color: #ee6518;
}
#equipment #seq2 p.caption{
  text-align: center;
  margin: 0 0 15px;
  padding: 10px 0;
  background: #ff8037;
  font-weight: 500;
  color: #fff;
}

/* 주요 고객 */
#main-clients .top {
  height: 170px;
  position: relative;
  margin-bottom: 20px;
}

ul.clients {
  display: inline-block;
  border-bottom: 1px solid #ddd;
}

ul.clients>li {
  float: left;
  width: 20%;
  height: 94px;
  display: inline-block;
  padding: 0 15px;
  border: 1px solid #ddd;
  border-right: none;
  border-bottom: none;
}

ul.clients>li:nth-child(5n) {
  border-right: 1px solid #ddd;
}

ul.clients>li>.img {
  width: 197px;
  height: 94px;
  display: table-cell;
  vertical-align: middle;
}

ul.clients>li>.img img {
  max-height: 74px;
}

ul.clients>li:nth-child(7)>.img img {
  margin-top: -10px;
}

ul.clients>li:nth-child(1),
ul.clients>li:nth-child(2),
ul.clients>li:nth-child(3),
ul.clients>li:nth-child(4),
ul.clients>li:nth-child(5),
ul.clients>li:nth-child(11),
ul.clients>li:nth-child(12),
ul.clients>li:nth-child(13),
ul.clients>li:nth-child(14),
ul.clients>li:nth-child(15) {
  border-top-color: #aaa;
}

ul.clients>li:nth-child(1),
ul.clients>li:nth-child(6) {
  border-left-color: #aaa;
}

ul.clients>li:nth-child(5),
ul.clients>li:nth-child(10) {
  border-right-color: #aaa;
}

/* LED MODULE/LIGHTING (블로그 게시판) */
#products+.board_wrapper .table_blog2 dd .inner .top a .thumb {
  height: 150px;
}

/* 경관조명 (블로그 게시판) */
#products2+.board_wrapper .table_blog2 dd {
  width: 25%;
}

#products2+.board_wrapper .table_blog2 dd .inner .top a .thumb {
  height: 250px;
}

/* 경관조명 - 게시글 */
.products2_article .const-table {
  width: 100%;
  display: inline-table;
  border-bottom: 1px solid #ddd;
}

.products2_article .const>h3 {
  margin: 0;
  padding: 20px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-align: center;
  background: #f8f8f8;
  border-top: 2px solid #333;
}

.products2_article .const-row {
  width: 100%;
  display: table-row;
  margin-bottom: 30px;
  text-align: left;
}

.products2_article .const-row>h4,
.products2_article .const-row>.desc {
  display: table-cell;
  padding: 20px;
  border-top: 1px solid #ddd;
  vertical-align: middle;
}

.products2_article .const-row>h4 {
  width: 35%;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.05em;
  background: #f8f8f8;
}

.products2_article .const-row>.desc {
  width: 65%;
  word-break: keep-all;
}

#products5 .title-lv-3{
  line-height: 1.3
}
#products5 .title-lv-3 > span{
    color: #6a6a6a;
    font-weight: 500;
}
#products5 .title-lv-3 > b{
    font-weight: 600;
    color: #f96b4a;
}
#products5 #seq1 p{
    margin: 10px 0 0;
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    color: #000;
}
#products5 #seq2 ul{
    margin: 0 0 30px;
}
#products5 #seq2 ul li{
    font-size: 16px;
}
#products5 #seq2 .wrap{
    position: relative;
}
#products5 #seq2 p{
    font-size: 18px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 35px;
}
#products5 #seq2 p::before{
    content: '';
    display: block;
    width: 45px;
    height: 2px;
    margin: 0px 0 15px;
    background: #fa8e32;
    border-radius: 50px;
}
#products5 #seq3 p.caption{
    margin: 0 0 30px;
    font-size: 16px;
    text-align: center;
    font-weight: 600;
    color: #000;
    padding: 5px 0;
    background: #eaeaea;
}

#products6 .title-lv-3{}
#products6 .title-lv-3 span{color: #999;}
#products6 .title-lv-3 b{color: #cd4f2e;}
#products6 #seq1 .ems-intro{position: relative;margin-top: 130px;}
#products6 #seq1 .ems-intro img{}
#products6 #seq1 .ems-intro .caption{
    text-align: center;
    color: #fff;
    font-size: 22px;
    position: relative;
    line-height: 1;
    padding: 15px;
    background: rgba(0,0,0,0.6);
    margin-top: -52px;
}
#products6 #seq2{}
#products6 #seq3 .ems-facility{
    display: flex;
    align-items: center;
    margin: 0 0 26px;
}
#products6 #seq3 .ems-facility .name{
    font-size: 20px;
    font-weight: 700;
    width: 100px;
    line-height: 1;
    padding: 5px 10px 6px;
    background: #cd4f2e;
    text-align: center;
    margin: 0;
    color: #fff;
    border-radius: 5px;
}
#products6 #seq3 .ems-facility .image{
    width: calc(100% - 100px);
    padding-left: 30px;
}
#products6 #seq3 .ems-facility .image img{
    margin: 0
}
#products6 #seq3 .ems-facility .image .caption{display: none;}
#products6 #seq3 .ems-facility.x-ray{
    margin-top: 30px;
}
#products6 #seq3 .ems-facility.x-ray .name{
    background: #999;
}
#products6 #seq3 .ems-facility.x-ray .image{}
#products6 #seq4 .ems-hand-line{
    display: flex;
    margin: 0 0 26px;
    justify-content: flex-end;
    align-items: center;
}
#products6 #seq4 .ems-hand-line .name{
    font-size: 20px;
    font-weight: 700;
    width: 120px;
    line-height: 1;
    padding: 5px 10px 6px;
    background: #cd4f2e;
    text-align: center;
    margin: 0 0 40px;
    color: #fff;
    border-radius: 5px;
}
#products6 #seq4 .ems-hand-line .image{
    width: calc(100% - 120px);
    padding-left: 90px;
    max-width: 1040px;
}
#products6 #seq4 .ems-hand-line .image img{margin: 0;}
#products6 #seq5 .ems-inspection{}
#products6 #seq5 .ems-inspection img{}
#products6 #seq5 .ems-inspection .caption{
    margin: 0;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    color: #000;
    padding: 7px;
    background: #f8f8f8;
}
#products6 #seq6 .ems-why{}
#products6 #seq6 .ems-why .col-md-4{}
#products6 #seq6 .ems-why .col-md-4 img{}
#products6 #seq6 .ems-why .col-md-8{}
#products6 #seq6 .ems-why .col-md-8 .li-dot{
    margin: 60px 0 0 40px;
}
#products6 #seq6 .ems-why .col-md-8 .li-dot li{
    font-size: 18px;
}
#products6 #seq6 .ems-why .col-md-8 .li-dot li::before{
}
#products6 #seq6 .ems-why .col-md-12{}
#products6 #seq6 .ems-why .col-md-12 img{
    margin-top: 60px;
    padding: 60px 200px;
    border: 1px solid #ddd;
    background: #fafafa;
}
#products6 #seq6 .ems-why .col-md-12 .upgrade{
    margin: 15px 0 0;
    text-align: center;
    font-size: 24px;
    color: #000;
    font-weight: 600;
}
#products6 #seq6 .ems-why .col-md-12 .upgrade b{color: #cd4f2e;}

/* 콘텐츠 소개 */
#contents_intro .tit {
  font-size: 51px;
  font-weight: 500;
  margin: 0 0 80px;
  color: #cd4f2e;
  letter-spacing: -0.035em;
}
#contents_intro .tit-sub {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 60px;
  color: #fd6f22;
  letter-spacing: -0.035em;
  line-height: 1.4em;
  text-align: center;
}
#contents_intro .inner-section p {
  margin: 0;
  font-size: 30px;
  font-weight: 500;
  color: #111;
  letter-spacing: -0.02em;
  line-height: 1.6;
}
#contents_intro .inner-section .tit-sub strong,
#contents_intro .inner-section p strong {
  color: #fd6f22;
}
#contents_intro .text-center {
  margin: 80px 0;
}
/* #contents_intro .text-center p {
  font-size: 23px;
} */
#contents_intro .images {
  margin: 60px -5px;
}
#contents_intro .text-center+.images {
  margin-top: 0;
}
#contents_intro .images > div {
  padding: 0 5px;
}
#contents_intro .images > div:nth-child(n+3) {
  margin-top: 10px;
}
#contents_intro p+img {
  margin-top: 60px;
}
#contents_intro #seq1 .images:last-child {
  display: flex;
}
#contents_intro .wrap-step {
  text-align: center;
}
#contents_intro .list-step {
  max-width: 1040px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
  margin: 60px auto 0;
}
#contents_intro .list-step > li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: #ef992d;
  border-radius: 100%;
  aspect-ratio: 1 / 1;
}
#contents_intro .list-step > li+li::before {
  content: "\f054";
  top: 50%;
  left: -43px;
  position: absolute;
  color: #ef992d;
  font-size: 190%;
  font-weight: 900;
  font-family: 'Font Awesome 6 Free';
  transform: translateY(-50%);
}
#contents_intro .box-worry {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  text-align: center;
}
#contents_intro .box-worry .text p {
  /* font-size: 25px; */
  color: #777;
  line-height: 1.5em;
}
#contents_intro .box-worry .image img {
  height: 300px;
}
#contents_intro .box-worry .text ul {
  display: inline-block;
  margin-top: 30px;
}
#contents_intro .box-worry .text ul li {
  position: relative;
  display: block;
  padding-left: 30px;
  font-size: 30px;
  font-weight: 500;
  color: #ff8540;
  text-align: left;
}
#contents_intro .box-worry .text ul li::before {
  content: "\f00c";
  top: 50%;
  left: 0;
  position: absolute;
  font-weight: 900;
  font-family: 'Font Awesome 6 Free';
  transform: translateY(-50%);
}
#contents_intro #seq4 .tit-sub {
  margin: 0 0 90px;
  font-size: 35px;
  color: #111;
  line-height: 1.6em;
}


.table_video dd .inner,
.table_blog2 dd .inner {
  border: 1px solid #d6d6d6;
}

.table_video dd .inner:hover,
.table_blog2 dd .inner:hover {
  border-color: #ee6518;
}

.table_video dd .inner .bottom,
.table_blog2 dd .inner .bottom {
  padding: 12px 15px;
}

.table_video dd .inner .bottom .info,
.table_blog2 dd .inner .bottom .info {
  display: none;
}

.table_video dd .inner .bottom .title,
.table_blog2 dd .inner .bottom .title {
  margin: 0;
  text-align: center;
}

.table_video dd .inner .bottom .title a,
.table_blog2 dd .inner .bottom .title a {
  font-size: 16px;
  font-weight: 500;
}

.table_video dd .inner .bottom .title a:hover,
.table_video dd .inner .title a:focus,
.table_blog2 dd .inner .bottom .title a:hover,
.table_blog2 dd .inner .title a:focus {
  color: #ee6518;
  text-decoration: none;
}

.pagination_wrap ul li.active a,
.pagination_wrap ul li.active a:hover,
.pagination_wrap ul li.active a:focus {
  color: #ee6518;
}

.pagination_wrap ul li.box:hover a,
.pagination_wrap ul li.box:focus a {
  border-color: #ee6518;
  color: #ee6518;
}

.sub-contents:not(#inquiry)+.board_wrapper .reply_wrap {
  display: none;
}

/* 견적게시판 */
#estimate .board_wrapper {
  margin-top: 0;
  margin-bottom: 0;
}

.board_wrapper {
  margin-bottom: 100px;
}

.table_default {
  margin-bottom: 0;
}

.board_wrapper .table.board_write_table {
  border-top: 2px solid #333;
}

.board_wrapper .table.board_write_table tbody tr td .form-control {
  width: 350px;
}

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

.board_wrapper .table.board_write_table tbody tr th>span.required_text {
  color: red
}

.checkbox a {
  text-decoration: underline;
  color: #ee6518;
}

.etc p {
  /* 기타사항 */
  margin: 0;
  padding: 15px 20px;
  font-weight: 500;
  color: #ee6518;
  background-color: #fef7f0;
  border-left: 1px dashed #ddd;
  border-right: 1px dashed #ddd;
}

#estimate #item_11 td>label:last-child {
  margin-left: 102px;
}

/* 긴급샘플 */
#e-sample #seq1 .inner-section {
  margin-bottom: 80px;
}

#e-sample #left {
  position: relative;
  margin: 10px 40px;
}

#e-sample #wrap-phrases {
  top: 14px;
  left: 15px;
  width: 330px;
  height: 330px;
  position: absolute;
  padding: 15px;
  border: 1px dashed #ee6518;
  z-index: 100;
  border-radius: 50%;
}

#e-sample #phrases {
  width: 300px;
  height: 300px;
  padding: 112px 50px 0;
  font-size: 36px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background: #ee6518;
  border-radius: 50%;
  line-height: 1.2;
}

#e-sample .overlay {
  top: 35px;
  left: 35px;
  width: 325px;
  height: 285px;
  position: absolute;
  background-color: rgba(247, 132, 39, 0.15);
  z-index: 10;

  display: none;
}

#e-sample .box-sample {
  position: relative;
  padding: 35px 0 30px;
  border-top: 1px solid #ddd;
}

#e-sample .box-sample:last-child {
  border-bottom: 1px solid #ddd;
}

/* 
#e-sample .box-sample::after {
  content: '';
  right: 0;
  bottom: 0;
  border: 0;
  position: absolute;
  border-top: 10px solid #ddd;
  border-right: 10px solid #fff;
  border-bottom: 10px solid #fff;
  border-left: 10px solid #ddd;
} */

#e-sample .box-sample .num {
  color: #333;
  font-weight: 500;
  margin-bottom: 6px;
}

#e-sample .box-sample i {
  color: #ee6518;
  margin: 0 3px 0 15px;
}

.process {
  height: 190px;
  position: relative;
  padding: 30px 35px;
  border: 5px solid #eee;
}

.process h4 {
  margin: 0 0 20px;
  font-size: 22px;
  font-weight: 600;
  color: #333;
}

/* 
.process h4::before {
  content: '';
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  position: absolute;
  background-color: #fadb43;
  border-top: 53px solid #ee6518;
} */

.wrap-process-flow {
  height: 220px;
}

.wrap-process-flow::before {
  content: '';
  top: 50%;
  left: 10%;
  width: 75%;
  position: absolute;
  border-top: 1px solid #3a404c;
  z-index: 100;
}

.wrap-process-flow .inner {
  z-index: 110;
  width: 220px;
  height: 220px;
  position: absolute;
  padding: 10px;
  background-color: #fff;
  border: 1px dashed #3a404c;
  border-radius: 100%;
}

.wrap-process-flow .inner#in2 {
  left: 37%;
}

.wrap-process-flow .inner#in3 {
  right: 0;
}

.process-flow {
  padding: 68px 20px 52px;
  color: #fff;
  text-align: center;
  background-color: #3a404c;
  border-radius: 100%;
}

.process-flow .fa-angle-right {
  top: 41%;
  right: -36px;
  position: absolute;
  font-size: 40px;
  color: #3a404c;
}

.process-flow i {
  margin-bottom: 5px;
  font-size: 30px;
}

.process-flow p {
  font-size: 23px;
  color: #fff;
}


/* login */
.member_wrapper {
  padding-top: 240px;
}

/********************************/

/****** 모바일 최적화 시작 ******/
@media (max-width: 767px) {

  /* 모바일 */
  #main_wrapper,
  .sub-contents {
    margin-top: 107px;
  }

  .navbar-nav {
    margin: 0 -15px;
  }

  .navbar-inverse {
    display: table;
    width: 100%;
  }

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

  .navbar-inverse .navbar-collapse {
    border-top: 1px solid #ddd;
  }

  .navbar-inverse .navbar-nav>li>a {
    padding: 15px 20px;
    font-size: 16px;
  }

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

  .navbar-nav .open .dropdown-menu {
    padding: 0;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
    padding: 12px 20px;
    font-size: 15px;
    color: #333;
    background-color: #f6f6f6;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,
  .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover {
    font-weight: 500;
    color: #000;
    background-color: #f6f6f6;
  }

  #main_wrapper {
    margin-top: 107px;
  }

  .carousel-caption {
    top: 48%;
  }

  #site footer .footer-info ul li {
    font-size: 12px;
  }

  .sub-contents {
    margin-top: 107px;
  }

  .sub-contents>.page-top {
    height: 200px;
    padding: 45px 0 0;
  }

  .sub-contents>.page-top h2 {
    font-size: 30px;
  }

  .sub-contents>.contents {
    margin: 30px 0;
  }

  .sub-contents>.contents section {
    padding: 20px 0;
  }

  #greeting img {
    margin-bottom: 30px;
  }

  #greeting .col-sm-8 {
    padding-left: 15px;
  }

  #greeting #seq2 {
    margin-top: 30px;
  }

  #greeting .history {
    padding-bottom: 45px;
    padding-left: 30px;
  }

  #greeting .history>.year {
    width: 100%;
    float: none;
  }

  #greeting .history>ul {
    width: 100%;
    margin-top: 18px;
    padding-left: 0;
  }

  #greeting .history>ul>li .month {
    width: 15%;
    padding-left: 0;
  }

  #greeting .history>ul>li .desc {
    width: 85%;
  }

  #main-clients .top {
    height: auto;
    margin-bottom: 45px;
  }

  ul.clients>li {
    width: 50%;
  }

  .logos ul.clients>li {
    border-color: #ddd;
  }

  ul.clients>li:nth-child(5n) {
    border-right: none;
  }

  ul.clients>li:nth-child(2n) {
    border-right: 1px solid #ddd;
  }

  ul.clients>li:nth-child(1),
  ul.clients>li:nth-child(2),
  ul.clients>li:nth-child(11),
  ul.clients>li:nth-child(12) {
    border-top-color: #aaa;
  }

  ul.clients>li:nth-child(1),
  ul.clients>li:nth-child(3),
  ul.clients>li:nth-child(5),
  ul.clients>li:nth-child(7),
  ul.clients>li:nth-child(9) {
    border-left-color: #aaa;
  }

  ul.clients>li:nth-child(2),
  ul.clients>li:nth-child(4),
  ul.clients>li:nth-child(6),
  ul.clients>li:nth-child(8),
  ul.clients>li:nth-child(10) {
    border-right-color: #aaa;
  }

  #location .root_daum_roughmap_landing {
    height: 230px;
  }

  .contact .box-contact {
    min-height: auto;
    margin-bottom: 25px;
    padding: 35px 20px;
  }

  .contact .box-contact>i {
    margin: 15px 0;
    width: 80px;
    height: 80px;
    font-size: 30px;
    line-height: 80px;
  }

  .title-lv-3 {
    font-size: 26px;
  }

  #system .txt-big {
    font-size: 18px;
    padding: 0 15px;
  }

  #system .wrap-sentense {
    margin: 0 -15px;
  }

  #system .wrap-sentense .sentense {
    padding: 0;
  }

  #system .wrap-sentense .sentense>h4 {
    padding: 12px 0;
    font-size: 21px;
  }

  #system .wrap-box-process-service {
    margin: -35px 0 0;
    padding: 65px 15px 25px;
  }

  #system .box-process-service {
    width: 130px;
    height: 130px;
    padding: 45px 20px;
  }

  #system .wrap-box-process-service>div:nth-child(odd) {
    margin-left: -15px;
  }

  #system .box-process-service p {
    font-size: 18px;
  }

  #system .box-process-service::after {
    top: 43px;
    right: -22px;
    font-size: 30px;
  }

  #stock #seq1 .title-lv-4 {
    margin-top: -25px;
  }

  #stock #seq2 img {
    margin-bottom: 25px;
  }

  #equipment #seq1 img:not(.none-border),
  #equipment #seq2 img,
  #equipment #seq3 img {
    margin-bottom: 35px;
  }

  #equipment .img-detail2 {
    margin-top: 15px;
    margin-left: 0;
    font-size: 15px;
  }

  #equipment #seq3 .title-lv-4 {
    margin-left: 0;
  }

  .box-highlight {
    margin: 30px 0 0;
    font-size: 17px;
  }

  #equipment #seq3 .box-highlight+p {
    padding: 0;
    font-size: 15px;
  }

  .board_wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .table_video dd,
  .table_blog2 dd {
    width: 100%;
  }

  #products+.board_wrapper+.search_wrap {
    margin-top: -50px;
  }

  .search_wrap {
    margin-bottom: 50px;
  }

  .board_wrapper .table.board_write_table .form-control.form-control-big,
  .board_wrapper .table.board_write_table tbody tr td .form-control {
    width: 100%;
  }

  .board_wrapper .text-center .btn.btn-lg {
    width: 100%;
    margin: 0 0 15px;
    padding: 12px;
  }

  #e-sample #left {
    margin: -10px 10px 35px;
  }

  #e-sample #wrap-phrases {
    top: 0;
    position: relative;
    width: 260px;
    height: 260px;
    margin: 0 auto;
    left: 0;
  }

  #e-sample #phrases {
    width: 230px;
    height: 230px;
    padding: 86px 40px 0;
    font-size: 27px;
  }

  #e-sample .box-sample i {
    margin-left: 0;
  }

  .process {
    height: auto;
    margin-bottom: 25px;
  }

  .process#pro2+p {
    margin-top: -20px !important;
    margin-bottom: 20px;
  }

  .wrap-process-flow {
    height: auto;
    margin-top: -35px;
  }

  .wrap-process-flow .inner {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 30px;
    padding: 3px;
    border-radius: 3px;
  }

  .process-flow {
    padding: 20px 20px 10px;
    border-radius: 3px;
  }

  .process-flow i:not(.fa-angle-right),
  .process-flow p {
    display: inline-block;
  }

  .process-flow i:not(.fa-angle-right) {
    margin-right: 10px;
  }

  .wrap-process-flow .inner#in2,
  .wrap-process-flow .inner#in3 {
    left: auto;
    right: auto;
  }

  .process-flow .fa-angle-right {
    top: 99%;
    right: 48%;
    font-size: 35px;
    transform: rotate(90deg);
  }

  .board_wrapper .table.board_write_table #item_3 td.hidden-xs {
    display: none !important;
  }

  .board_wrapper .table.board_write_table #item_3 td,
  .board_wrapper .table.board_write_table #item_4 td:not(.td-etc),
  .board_wrapper .table.board_write_table #item_5 td,
  .board_wrapper .table.board_write_table #item_6 td,
  .board_wrapper .table.board_write_table #item_11 td {
    padding: 2px 15px 10px !important;
  }

  .radio-inline+.radio-inline {
    margin-left: 10px;

  }

  #estimate #item_6 td>label:last-child,
  #estimate #item_11 td>label:last-child {
    display: block;
    margin-left: 0 !important;
  }

  .products2_article .const {
    margin-top: 30px;
  }

  .table.table_default tr th,
  .table.table_default tr td {
    overflow: visible;
  }

  .table.table_default tr th.subject,
  .table.table_default tr td.subject {
    width: 300px;
  }

  .member_wrapper {
    padding-top: 160px;
    padding-bottom: 100px;
  }

  .main-contents#main3,
  .main-contents#main3 #TLM,
  .main-contents#main4 {
    width: 100%;
    float: none;
    min-height: auto;
  }

  .main-contents#main3 #TLM {
    padding: 35px;
    margin-bottom: 30px;
  }
}

@media (max-width: 1119px) {

  /* 태블릿, 모바일 */
  .main-contents#main3,
  .main-contents#main3 #TLM,
  .main-contents#main4 {
    width: 100%;
    float: none;
    min-height: auto;
  }

  .main-contents#main3 #TLM br {
    display: none;
  }

  .main-contents#main3 #TLM {
    padding: 25px;
    margin-bottom: 30px;
  }

  .main-contents#main3 #TLM .box-tlm-module p {
    margin: 15px 0;
    font-size: 14px;
    line-height: 1.7;
  }

  #banner {
    margin-top: 0px;
    background: #000;
  }

  #banner>.container {
    padding: 0;
  }

  .main-contents .box-banner {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .main-contents .box-banner>a {
    padding: 20px 15px;
  }

  .main-contents .box-banner i {
    width: 40px;
    height: 40px;
    font-size: 30px;
    margin: 0 10px 0 0;
  }

  #greeting .history:last-child::before {
    height: 82%;
  }

  #e-sample .box-sample {
    padding: 20px 0 15px;
  }
}

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

  /* 태블릿 */
  #greeting .history>ul {
    padding-left: 65px;
  }

  #greeting .history>ul>li .month {
    width: 15%;
  }

  #greeting .history>ul>li .desc {
    width: 85%;
  }

  .contact .box-contact {
    padding: 43px 15px 25px;
  }

  #e-sample #left {
    position: static;
    margin: 0;
  }

  #e-sample #wrap-phrases {
    width: 300px;
    height: 300px;
  }

  #e-sample #phrases {
    width: 270px;
    height: 270px;
    padding: 100px 25px 0;
  }

  .process {
    min-height: 250px;
    padding: 25px 15px;
  }
}

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

  #main_wrapper,
  .sub-contents {
    margin-top: 172px;
  }

  .container>.navbar-header,
  .navbar-inverse .navbar-brand {
    width: 100%;
  }

  .navbar-inverse .navbar-brand img {
    margin: 0 auto;
  }

  .navbar-inverse .navbar-collapse {
    text-align: center;
  }

  .navbar-inverse .navbar-right {
    float: none !important;
    display: inline-block;
  }

  .navbar-inverse .navbar-nav>li>a {
    padding: 20px;
  }

  .navbar-inverse .navbar-nav>li>a {
    padding-left: 22px;
    padding-right: 22px;
  }

  .main-contents .box-banner>a {
    padding: 25px;
  }
}

@media (max-width: 1199px) {

  .main-contents#main3,
  .main-contents#main3 #TLM,
  .main-contents#main4 {
    width: 100%;
    float: none;
    min-height: auto;
  }

  .main-contents#main3 #TLM br {
    display: none;
  }

  .main-contents#main3 #TLM {
    padding: 25px;
    margin-bottom: 30px;
  }

  .main-contents#main3 #TLM .box-tlm-module p {
    margin: 15px 0;
    font-size: 14px;
    line-height: 1.7;
  }

  .main-contents .box-banner>a::after {
    content: none;
  }

  .main-contents #product {
    padding: 30px 0;
  }

  .main-contents .box-product,
  .main-contents .box-contact {
    min-height: auto;
    padding: 28px 30px;
  }

  .main-contents .box-product {
    width: 100%;
  }

  .main-contents#main2 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  #section_735b90 .board_box_blog2 {
    width: 100%;
    float: left;
    margin-top: 0;
    padding-left: 15px;
  }

  #section_a3f390 {
    padding: 30px 0;
  }

  #section_a3f390 .board_box_list {
    height: auto;
    width: 100%;
    border-right: none;
  }

  .main-contents .box-contact h4 {
    margin-bottom: 20px;
  }

  .main-contents .box-product p {
    margin: 15px 0;
  }

  .main-contents .box-contact .btn {
    margin-top: 20px;
  }
}

/******* 모바일 최적화 끝 *******/

@media(min-width:768px) {
  .col-sm-20 {
    width: 20%;
    float: left;
    position: relative;
  }
}

.img-caption {
  margin: 10px 0;
  text-align: center;
  font-size: 16px;
  color: #555;
  font-weight: 500;
}

.cert-wrap img {
  border: 1px solid #ddd;
}

.cert-wrap .clearfix {
  padding-bottom: 40px;
}

.li-dot {
  padding: 0;
}

.li-dot li {
  position: relative;
  padding-left: 20px;
  list-style: none;
  font-size: 15px;
  line-height: 1.6;
}

.li-dot li:before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: #ee6518;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2px;
  border-radius: 50%;
}

.prod3-img-box {
  padding: 15px 0;
  background: #fcfcfc;
  border: 1px solid #ddd;
}

.prod3-floor-light {
  margin: 0 0;
  padding: 30px;
  border: 1px solid #ddd;
}

.prod3-floor-light img {
  margin-bottom: 30px;
}

.prod3-floor-light .left-con {
  padding-top: 33px;
}

#products5 .prod5-img-box {
  margin-bottom: 45px;
}

#products5 .point {
  color: #f0722b;
}

#products5 .li-dot li:before {
  top: 12px;
  transform: translateY(0);
}

#products5 .prod05-spec {}

#products5 .prod05-spec .spec-box {
  border-top: 2px solid #000;
  padding-top: 15px;
  margin-bottom: 43px;
  position: relative;
}

#products5 .prod05-spec .spec-box:before {
  content: '';
  display: block;
  width: 85px;
  height: 2px;
  background: #f0722b;
  position: absolute;
  top: -2px;
  left: 0;
}

#products5 .prod05-spec .spec-box .tit {
  font-size: 20px;
  font-weight: 600;
  color: #f0722b;
}

#products5 .prod5-text {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #f2722b;
  margin: 45px 0 30px;
}

#products5 .prod5-color {}

#products5 .prod5-color img {}

#products5 .prod5-color .caption {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  padding: 5px 0 0;
}

#products5 .inner-section h4 {
  margin: 30px 0 15px;
}

#products5 #seq2 img {
  border: 1px solid #ccc;
}

#products5 #seq2 .col-md-6 {
  margin-top: 30px;
}

#products5 #seq2 .col-md-6 .li-dot>li {
  margin-bottom: 30px;
}

#products5 #seq2 .li-inner {
  padding: 0;
  margin-bottom: 15px;
}

#products5 #seq2 .li-inner>li {
  padding-left: 12px;
}

#products5 #seq2 .li-inner>li:before {
  content: '';
  background: #999;
  width: 5px;
  height: 1px;
}

#products5 #seq3 hr+.li-dot {
  margin-top: 15px;
}

#products5 #seq3 h4+p {
  font-size: 17px;
}

#products5 #seq3 .li-num {
  padding: 0;
  list-style: none;
}

#products5 #seq3 .li-num>li {
  padding-left: 28px;
  font-size: 15px;
  position: relative;
  line-height: 1.8;
}

#products5 #seq3 .li-num>li::before {
  content: '';
  display: block;
  font-size: 13px;
  color: #fff;
  background: #ee6518;
  text-align: center;
  line-height: 20px;
  width: 20px;
  position: absolute;
  left: 0;
  top: 4px;
}

#products5 #seq3 .li-num>li:nth-child(1):before {
  content: '1';
}

#products5 #seq3 .li-num>li:nth-child(2):before {
  content: '2';
}

#products5 #seq3 .li-num>li:nth-child(3):before {
  content: '3';
}

#products5 #seq3 .li-num>li:nth-child(4):before {
  content: '4';
}

#products5 #seq3 .li-num>li:nth-child(5):before {
  content: '5';
}

#products5 #seq3 .li-num>li:nth-child(6):before {
  content: '6';
}

#products5 #seq3 .li-num>li:nth-child(7):before {
  content: '7';
}


#products6 .title-lv-2{}

.btn-con {
  position: relative;
  margin-top: 60px;
  padding: 15px 35px;
  padding-right: 80px;
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  text-align: left;
  background-color: #3a404c;
  border-radius: 100px;
  border: 5px solid #ee6518;
  border-color: #3a404c;
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.5);
}
.btn-con::after {
  content: '\f054';
  top: 10px;
  right: 10px;
  width: 46px;
  height: 46px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
  font-weight: 900;
  font-family: 'Font Awesome 6 Free';
  color: #3a404c;
  background: #fff;
  border-radius: 50px;
}
.btn-con:hover,
.btn-con:focus {
  color: #fff;
  border-color: #ee6518;
  background: #ee6518;
}
.btn-con:active {
  box-shadow: none;
}
.btn-con:hover::after,
.btn-con:focus::after {
  color: #ee6518;
}
.btn-con span {
  position: relative;
  z-index: 100;
}
.btn-con span::before {
  content: '';
  left: 0;
  bottom: 3px;
  width: 0;
  position: absolute;
  border: 4px solid #000;
  transform: skewX(-10deg);
  transition: all ease-in-out .3s;
  opacity: 0.15;
  z-index: -1;
}
.btn-con:hover span::before,
.btn-con:focus span::before {
  width: 100%;
}

@media(max-width:767px) {
  /* .cert-wrap .clearfix{
    display:none;
  } */
  .cert-wrap p.img-caption {
    margin-bottom: 20px;
  }

  .cert-wrap .clearfix {
    padding-bottom: 0;
  }

  .title-lv-4 {
    font-size: 18px;
    line-height: 24px;
  }

  #products2+.board_wrapper .table_blog2 dd {
    width: 100%;
  }

  .prod3-floor-light {
    padding: 20px;
  }

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

  .board_box_list .writer,
  .board_box_list .hits {
    display: none;
  }

  .main-contents .box-banner h5 {
    margin: 3px 0 0;
    font-size: 16px;
    padding-top: 10px !important;
  }
  
  #products6 #seq6 .ems-why .col-md-12 img{
    padding: 30px 15px;
}
#products6 #seq6 .ems-why .col-md-8 .li-dot {
  margin: 20px 0 0;
}
#products6 #seq6 .ems-why .col-md-8 .li-dot li {
  font-size: 16px;
}

/* #contents_intro .tit {
  font-size: 28px;
  margin: 0 0 30px;
}
#contents_intro .tit-sub {
  font-size: 25px;
}
#contents_intro .inner-section p {
  font-size: 17px;
  line-height: 1.5;
}
#contents_intro .images {
  margin: 30px -5px;
}

#contents_intro .text-center {
  margin: 30px 0;
}
#contents_intro .text-center p {
  font-size: 19px;
}

 */
 #contents_intro .tit {
  font-size: 28px;
  margin: 0 0 40px;
}
#contents_intro .tit-sub {
  margin: 0 0 30px;
  font-size: 22px;
}
#contents_intro .inner-section p,
#contents_intro .box-worry .text ul li {
  font-size: 17px;
}

#contents_intro .images {
  margin: 30px -5px;
}
#contents_intro .text-center {
  margin: 40px 0;
}

#contents_intro .list-step {
  gap: 20px;
  margin: 30px auto 0;
}
#contents_intro .list-step > li {
  font-size: 10px;
}
#contents_intro .list-step > li+li::before {
  left: -18px;
}
#contents_intro .box-worry {
  flex-direction: column;
}
#contents_intro .images > div+div {
  margin-top: 10px;
}
#contents_intro #seq1 .images:last-child {
  flex-direction: column;
}
#contents_intro #seq4 .tit-sub {
  margin: 0 0 45px;
  font-size: 22px;
}
/* 
#contents_intro .box-worry .text p {
  font-size: 22px;
  line-height: 1.4em;
}
#contents_intro .box-worry .text ul li {
  padding-left: 25px;
  font-size: 21px;
} */

.btn-con {
  width: 100%;
  margin-top: 30px;
  padding: 10px 30px;
  padding-right: 60px;
  font-size: 22px;
  white-space: normal;
}
.btn-con::after {
  top: 18px;
}

}

.maintenance {
  margin-top: 5px;
  padding: 150px 25px;
  text-align: center;
  background-color: #444;
}

.maintenance .icon {
  display: block;
  line-height: 1;
  font-size: 64px;
  margin-bottom: 20px;
  color: #ff8540;
}

.maintenance .big-cont {
  display: block;
  line-height: 1;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: -0.05em;
  color: #fff;
}

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