@charset "UTF-8";
/* 페이지 로케이션 */
.page-location-wrap {
  margin: 0 auto;
  padding: 20rem 4rem 6rem;
}
.page-location-wrap .page-location {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 4rem;
}
.page-location-wrap .page-location li {
  position: relative;
  color: #333;
  font-size: 1.8rem;
}
.page-location-wrap .page-location li:first-child {
  padding-right: 1rem;
}
.page-location-wrap .page-location li:not(.home, :last-child) {
  padding-right: 2rem;
  margin-right: 1rem;
}
.page-location-wrap .page-location li:not(.home, :last-child)::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "\f105";
  font-size: 1.2em;
  font-family: "fontello";
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.page-location-wrap .page-tit {
  font-size: 5rem;
  font-weight: 700;
}

@media all and (max-width: 85.375rem) {
  .page-location-wrap {
    padding: 17rem 4rem 5rem;
  }
  .page-location-wrap .page-location li {
    font-size: 1.6rem;
  }
  .page-location-wrap .page-tit {
    font-size: 4rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .page-location-wrap .page-location li {
    font-size: 1.4rem;
  }
  .page-location-wrap .page-tit {
    font-size: 3rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .page-location-wrap {
    padding: 10rem 2rem 3rem;
  }
  .page-location-wrap .page-location {
    margin-bottom: 2rem;
  }
}
/* 서브네비게이션 2뎁 */
.sub-nav-wrap {
  z-index: 1000;
  position: relative;
}
.sub-nav-wrap .sub-nav {
  width: 100%;
}
.sub-nav-wrap .sub-nav > ul {
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  position: relative;
  overflow-x: auto;
}
.sub-nav-wrap .sub-nav > ul > li {
  margin-right: 6.5rem;
}
.sub-nav-wrap .sub-nav > ul > li a {
  position: relative;
  display: block;
  padding: 2rem 0;
  font-size: 2.2rem;
  font-weight: 700;
  color: #d2d4d9;
  white-space: nowrap;
}
.sub-nav-wrap .sub-nav > ul > li a:focus {
  color: #2f64de;
}
.sub-nav-wrap .sub-nav > ul > li a:focus::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.3rem;
  content: "";
  background-color: #2f64de;
}
.sub-nav-wrap .sub-nav > ul > li:hover a {
  color: #2f64de;
}
.sub-nav-wrap .sub-nav > ul > li.active a {
  color: #2f64de;
}
.sub-nav-wrap .sub-nav > ul > li.active a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.3rem;
  content: "";
  background-color: #2f64de;
}

@media all and (max-width: 85.375rem) {
  .sub-nav-wrap .sub-nav > ul {
    overflow-x: auto;
    width: 100%;
  }
}
@media all and (max-width: 64rem) {
  .sub-nav-wrap .sub-nav > ul > li a {
    font-size: 2rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .sub-nav-wrap .sub-nav > ul > li {
    margin-right: 4rem;
  }
  .sub-nav-wrap .sub-nav > ul > li a {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .sub-nav-wrap .sub-nav > ul > li {
    margin-right: 2rem;
  }
  .sub-nav-wrap .sub-nav > ul > li a {
    font-size: 1.6rem;
  }
}
/* 탭링크  3뎁*/
.tab-link-wrap {
  position: absolute;
  margin: 0 auto 2rem;
  left: 0;
  top: 6.2rem;
  width: 100vw;
  height: 10rem;
  background-color: rgba(13, 49, 129, 0.5);
}
.tab-link-wrap .tab-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  white-space: nowrap;
}
.tab-link-wrap .tab-link li {
  position: relative;
  padding: 4rem 5rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #757f97;
}
.tab-link-wrap .tab-link li::after {
  opacity: 0.6;
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 29%;
  max-height: 1.7rem;
  content: "";
  background-color: #fff;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.tab-link-wrap .tab-link li > a {
  opacity: 0.8;
  display: block;
  position: relative;
  font-size: 1.9;
  font-weight: 500;
  color: #fff;
}
.tab-link-wrap .tab-link li > a:focus::after {
  background-color: #fff;
}
.tab-link-wrap .tab-link li > a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.5;
  width: 100%;
  height: 1px;
  content: "";
}
.tab-link-wrap .tab-link li:first-child {
  padding-left: 0;
}
.tab-link-wrap .tab-link li:last-child::after {
  display: none;
}
.tab-link-wrap .tab-link li.active > a {
  opacity: 1;
  font-weight: 800;
}
.tab-link-wrap .tab-link li.active > a::after {
  background-color: #fff;
}

@media all and (max-width: 64rem) {
  .tab-link-wrap {
    height: 6rem;
  }
  .tab-link-wrap .tab-link li {
    padding: 2rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .tab-link-wrap {
    top: 5.8rem;
  }
  .tab-link-wrap .tab-link {
    overflow-x: auto;
    width: 100vw;
  }
  .tab-link-wrap .tab-link li {
    padding: 2rem 2.5rem;
    font-size: 1.5rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .tab-link-wrap {
    width: -moz-fit-content;
    width: fit-content;
  }
}
/* 비주얼 */
.visual-wrap {
  position: relative;
  width: 100%;
  height: 46rem;
  overflow: hidden;
}
.visual-wrap .visual {
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.visual-wrap .visual.sub1 {
  background-image: url("../img/sub/sub1/visual.jpg");
}
.visual-wrap .visual.sub1-2 {
  background-image: url("../img/sub/sub1/visual2.jpg");
}
.visual-wrap .visual.sub1-3 {
  background-image: url("../img/sub/sub1/visual3.jpg");
}
.visual-wrap .visual.sub1-4 {
  background-image: url("../img/sub/sub1/visual4.jpg");
}
.visual-wrap .visual.sub2 {
  background-image: url("../img/sub/sub2/visual.jpg");
}
.visual-wrap .visual.sub2-2 {
  background-image: url("../img/sub/sub2/visual2.jpg");
}
.visual-wrap .visual.sub2-3 {
  background-image: url("../img/sub/sub2/visual3.jpg");
}
.visual-wrap .visual.sub3 {
  background-image: url("../img/sub/sub3/visual.jpg");
}
.visual-wrap .visual.sub3-2 {
  background-image: url("../img/sub/sub3/visual2.jpg");
}
.visual-wrap .visual.sub3-3 {
  background-image: url("../img/sub/sub3/visual3.jpg");
}
.visual-wrap .visual.sub3-4 {
  background-image: url("../img/sub/sub3/visual4.jpg");
}
.visual-wrap .visual.sub3-5 {
  background-image: url("../img/sub/sub3/visual5.jpg");
}
.visual-wrap .visual.sub5 {
  background-image: url("../img/sub/sub5/visual.jpg");
}
.visual-wrap .visual.sub5-2 {
  background-image: url("../img/sub/sub5/visual2.jpg");
}
.visual-wrap .visual.sub5-3 {
  background-image: url("../img/sub/sub5/visual3.jpg");
}
.visual-wrap .visual.pro {
  background-image: url("../img/sub/product/visual.jpg");
}
.visual-wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  z-index: 99;
  animation: visualBox 1.2s forwards;
  -webkit-animation: visualBox 1.2s forwards;
}

@keyframes visualBox {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
.content {
  position: relative;
}

.sticky-tit {
  z-index: 100;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  margin-top: 10rem;
  padding: 2rem 0;
  min-height: 13rem;
  background-color: #fff;
}
.sticky-tit .inner {
  padding: 0;
}
.sticky-tit .sec-tit-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.sticky-tit .sec-tit-wrap .main-tit {
  position: relative;
  margin-right: 3rem;
  padding-right: 3rem;
  min-width: 43.3rem;
  font-size: 3.5rem;
  font-weight: 700;
  color: #0d3181;
  white-space: nowrap;
  letter-spacing: -0.08rem;
}
.sticky-tit .sec-tit-wrap .main-tit::after {
  position: absolute;
  right: 0;
  top: 5%;
  content: "";
  width: 1px;
  height: 90%;
  background-color: #d0d0d0;
}
.sticky-tit .sec-tit-wrap .main-tit .small {
  display: block;
  font-size: 2.2rem;
  margin-top: 1rem;
}
.sticky-tit .sec-tit-wrap .desc {
  padding-top: 0;
  line-height: 1.8;
  text-align: left;
  font-size: 1.8rem;
  letter-spacing: -0.08rem;
}
.sticky-tit + .section {
  margin-top: 0;
}
.sticky-tit.active {
  box-shadow: 0 1rem 1.5rem -0.01rem rgba(0, 0, 0, 0.1);
}

.sol2 .sticky-tit {
  padding: 2rem 0;
}
.sol2 .sticky-tit .sec-tit-wrap .main-tit {
  font-size: 3rem;
  line-height: 4.5rem;
}

@media all and (max-width: 85.375rem) {
  .sticky-tit .inner {
    padding: 0 4rem;
  }
  .sticky-tit .sec-tit-wrap .main-tit {
    min-width: 32.3rem;
    font-size: 2.5rem;
    line-height: 1.5;
  }
  .sol2 .sticky-tit .sec-tit-wrap .main-tit {
    font-size: 2.2rem;
    line-height: 1.5;
  }
}
@media all and (max-width: 64rem) {
  .sticky-tit {
    margin-top: 5rem;
  }
  .sticky-tit .sec-tit-wrap {
    width: 100%;
  }
  .sticky-tit .sec-tit-wrap .main-tit {
    min-width: 36rem;
  }
  .sticky-tit .sec-tit-wrap .desc {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .sticky-tit {
    min-height: 0;
  }
  .sticky-tit .sec-tit-wrap {
    flex-direction: column;
  }
  .sticky-tit .sec-tit-wrap .main-tit {
    min-width: 0;
    margin-right: 0;
    margin-bottom: 2rem;
    padding-right: 0;
  }
  .sticky-tit .sec-tit-wrap .main-tit::after {
    display: none;
  }
  .sticky-tit .sec-tit-wrap .desc {
    width: 100%;
  }
}
@media all and (max-width: 63.9375rem) {
  .sticky-tit {
    padding: 1rem 0;
  }
  .sticky-tit .sec-tit-wrap .main-tit {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }
  .sticky-tit .sec-tit-wrap .desc {
    font-size: 1.8rem;
  }
  .sol2 .sticky-tit {
    padding: 2rem;
  }
  .sol2 .sticky-tit .sec-tit-wrap .main-tit {
    white-space: wrap;
    font-size: 2.7rem;
    line-height: 3.5rem;
  }
  .last-sol .sticky-tit {
    margin-top: 5.5rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .sticky-tit {
    padding: 1rem 0 !important;
  }
  .sticky-tit .sec-tit-wrap .main-tit {
    font-size: 2.5rem;
  }
  .sticky-tit .sec-tit-wrap .desc {
    font-size: 1.4rem;
  }
  .sol2 .sticky-tit .sec-tit-wrap .main-tit br {
    display: none;
  }
}
.section {
  margin: 15rem 0;
  width: 100%;
}
.section:last-child, .section:only-child {
  margin-bottom: 19rem;
}

.sec-tit-wrap {
  margin: 0 auto;
}
.sec-tit-wrap .main-tit {
  font-size: 5rem;
  line-height: 1.3;
  text-align: center;
}
.sec-tit-wrap .main-tit.sm {
  padding-bottom: 3.6rem;
  font-size: 3.6rem;
}
.sec-tit-wrap .desc {
  padding-top: 4rem;
  line-height: 1.5;
  font-size: 1.8rem;
  text-align: center;
}

@media all and (max-width: 85.375rem) {
  .sec-tit-wrap .main-tit {
    font-size: 4rem;
  }
}
@media all and (max-width: 64rem) {
  .sec-tit-wrap .main-tit {
    font-size: 3.2rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .visual-wrap {
    height: 36rem;
  }
  .section {
    margin: 8rem 0;
  }
  .sec-tit-wrap {
    width: 100%;
  }
  .sec-tit-wrap .main-tit {
    font-size: 3rem;
    line-height: 1.3;
  }
  .sec-tit-wrap .main-tit.sm {
    padding-bottom: 3rem;
    font-size: 2.8rem;
  }
  .sec-tit-wrap .desc {
    margin: 0 auto;
    width: 80%;
    font-size: 1.6rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .visual-wrap {
    height: 28rem;
  }
  .section {
    margin: 8rem 0;
  }
  .sec-tit-wrap .main-tit.sm {
    padding-bottom: 2.4rem;
    font-size: 2.4rem;
  }
  .sec-tit-wrap .desc {
    padding-top: 2rem;
    width: 100%;
    line-height: 1.5;
    font-size: 1.6rem;
  }
}
.tab-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10rem;
  margin-bottom: 15rem;
}
.tab-menu li {
  width: 30rem;
  height: 7rem;
  text-align: center;
  border: 1px solid #7b7a9a;
  line-height: 7rem;
  font-size: 1.8rem;
  color: #7b7a9a;
}
.tab-menu li a {
  display: block;
  width: 100%;
  height: 100%;
}
.tab-menu li.select {
  background: #0c3181;
  color: #fff;
  font-weight: 600;
}

@media all and (max-width: 47.9375rem) {
  .current .tab-menu {
    margin-top: 5rem;
    margin-bottom: 8rem;
    flex-direction: column;
    border-top: 1px solid #7b7a9a;
  }
  .current .tab-menu li {
    width: 100%;
    border-top: none;
    height: 5rem;
    line-height: 5rem;
    font-size: 1.5rem;
  }
  .current .table-wrap {
    overflow-x: scroll;
  }
  .current .table-wrap .bus-table {
    min-width: 77rem;
  }
  .current .table-wrap .bus-table table th,
  .current .table-wrap .bus-table table td {
    height: 5rem;
    font-size: 1.4rem;
  }
}
/* 인사말 */
.introduce .top-wrap {
  text-align: left;
}
.introduce .top-wrap .tit {
  font-size: 3.7rem;
  padding-top: 20rem;
  padding-bottom: 6rem;
}
.introduce .top-wrap .txt {
  font-size: 1.7rem;
  line-height: 2;
  margin-bottom: 2.5rem;
}
.introduce .img-wrap {
  margin-top: 6rem;
}
.introduce .bot-wrap {
  margin-top: 13rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10rem;
}
.introduce .bot-wrap .tit {
  font-size: 3.7rem;
  line-height: 1.3;
  padding-bottom: 6rem;
}
.introduce .bot-wrap .txt {
  margin: 0 auto;
  font-size: 1.7rem;
  line-height: 2;
  margin-bottom: 2.5rem;
}
.introduce .bot-wrap .all-txt {
  padding-top: 1rem;
  font-size: 2.4rem;
  color: #222943;
  font-weight: 700;
}

@media all and (max-width: 64rem) {
  .introduce .bot-wrap .tit {
    font-size: 3rem;
  }
  .introduce .txt br {
    display: none;
  }
}
@media all and (max-width: 63.9375rem) {
  .introduce .sec-tit-wrap .main-tit {
    font-size: 2.7rem;
  }
  .introduce .sec-tit-wrap .desc {
    width: 100%;
    padding-top: 2rem;
  }
  .introduce .top-wrap .tit {
    font-size: 3rem;
    padding-top: 13rem;
    padding-bottom: 4rem;
  }
  .introduce .top-wrap .txt {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .introduce .img-wrap {
    margin-top: 4rem;
  }
  .introduce .bot-wrap {
    margin-top: 6rem;
  }
  .introduce .bot-wrap .tit {
    font-size: 3rem;
    padding-bottom: 4rem;
  }
  .introduce .bot-wrap .txt {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .introduce .bot-wrap .all-txt {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .introduce .sec-tit-wrap .main-tit {
    font-size: 2.2rem;
  }
  .introduce .top-wrap .tit {
    font-size: 2rem;
    line-height: 1.3;
    padding-top: 8rem;
    padding-bottom: 3rem;
  }
  .introduce .top-wrap .txt {
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
  }
  .introduce .img-wrap {
    margin-top: 4rem;
  }
  .introduce .bot-wrap {
    margin-top: 6rem;
  }
  .introduce .bot-wrap .tit {
    font-size: 2rem;
    line-height: 1.3;
    padding-bottom: 3rem;
  }
  .introduce .bot-wrap .txt {
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
  }
  .introduce .bot-wrap .all-txt {
    font-size: 2rem;
  }
}
/* 연혁 */
.history .history-wrap {
  position: relative;
  margin-top: 15rem;
}
.history .history-wrap .line {
  position: absolute;
  left: 45.2%;
  width: 10.2rem;
  border-right: 0.3rem solid #ccd2dc;
}
.history .history-wrap .line .active-line {
  position: absolute;
  right: -0.3rem;
  width: 0.3rem;
  height: 0;
  background-color: #acc5fe;
}
.history .history-wrap .line::after {
  z-index: -1;
  position: absolute;
  right: -0.3rem;
  bottom: 2.5%;
  content: "";
  width: 0;
  height: 5rem;
  border-right: 0.3rem dashed #fff;
}
.history .his-item {
  display: flex;
  position: relative;
  padding-left: 45.2%;
}
.history .his-item:nth-of-type(3)::before {
  z-index: -1;
  position: absolute;
  left: 6.85%;
  content: "";
  width: 100%;
  max-width: 40rem;
  height: 36rem;
  background: url("../img/sub/sub1/his-1.png") center/cover no-repeat;
}
.history .his-item:nth-of-type(5)::before {
  z-index: -1;
  position: absolute;
  left: 6.85%;
  top: 300%;
  content: "";
  width: 100%;
  max-width: 38rem;
  height: 35rem;
  background: url("../img/sub/sub1/his-2.png") center/cover no-repeat;
}
.history .his-item:nth-of-type(5)::after {
  z-index: -2;
  position: absolute;
  content: "";
  left: 6.85%;
  padding-bottom: 100%;
  width: 31.58%;
  height: 0;
  background: url("../img/sub/sub1/his-2-d.png") no-repeat;
  animation: CircleAni 3s infinite;
  -webkit-animation: CircleAni 3s infinite alternate ease-in-out;
}
.history .his-item:nth-of-type(8)::before {
  z-index: -1;
  position: absolute;
  left: 6.85%;
  top: 20%;
  content: "";
  width: 50%;
  max-width: 34rem;
  height: 30rem;
  background: url("../img/sub/sub1/history5.jpg") center/cover no-repeat;
}
.history .his-item:nth-of-type(8)::after {
  z-index: -2;
  position: absolute;
  content: "";
  left: 26%;
  margin-top: 28rem;
  width: 12rem;
  height: 12rem;
  background: url("../img/sub/sub1/his-3-d.png") no-repeat;
  animation: CircleAni 3s infinite;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  -webkit-animation: CircleAni 3s infinite alternate ease-in-out;
}
.history .his-item.active .year::after {
  background-color: #293bec;
}
.history .his-item.active .year::before {
  position: absolute;
  top: -0.7rem;
  right: -0.7rem;
  content: "";
  width: 2.3rem;
  height: 2.3rem;
  background-color: #ccd1ff;
  border-radius: 2.3rem;
  -webkit-border-radius: 2.3rem;
  -moz-border-radius: 2.3rem;
  -ms-border-radius: 2.3rem;
  -o-border-radius: 2.3rem;
}
.history .year {
  position: relative;
  min-width: 10.5rem;
  font-size: 3rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.history .year::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  background-color: #bdc5dd;
  border-radius: 0.9rem;
  -webkit-border-radius: 0.9rem;
  -moz-border-radius: 0.9rem;
  -ms-border-radius: 0.9rem;
  -o-border-radius: 0.9rem;
}
.history .his-txt {
  position: relative;
  padding-bottom: 8rem;
  padding-left: 5.4rem;
  width: 69.3rem;
}
.history .his-txt li {
  display: flex;
  margin-bottom: 2.5rem;
  font-size: 1.8rem;
  line-height: 1.5;
}
.history .his-txt li span {
  display: block;
  width: 4rem;
  font-weight: 800;
}
.history .his-txt li:last-child {
  margin-bottom: 0;
}

@media all and (max-width: 64rem) {
  .history .history-wrap {
    margin-top: 12rem;
  }
  .history .sub-txt {
    font-size: 4rem;
  }
  .history .his-item:nth-of-type(3)::before, .history .his-item:nth-of-type(5)::before, .history .his-item:nth-of-type(8)::before {
    width: 30%;
  }
}
@media all and (max-width: 63.9375rem) {
  .history .sub-txt {
    position: relative;
  }
  .history .history-wrap {
    margin-top: 10rem;
  }
  .history .history-wrap .line {
    left: 0;
  }
  .history .history-list {
    margin-top: 4rem;
  }
  .history .his-item {
    padding-left: 0;
  }
  .history .his-item:nth-of-type(3)::before, .history .his-item:nth-of-type(5)::before, .history .his-item:nth-of-type(8)::before {
    display: none;
  }
  .history .his-item:nth-of-type(3)::after, .history .his-item:nth-of-type(5)::after, .history .his-item:nth-of-type(8)::after {
    display: none;
  }
  .history .year {
    font-size: 2.5rem;
  }
  .history .his-txt {
    padding-bottom: 4rem;
    padding-left: 3.5rem;
  }
  .history .his-txt li {
    margin-bottom: 2rem;
    font-size: 1.6rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .history .sub-txt {
    font-size: 2.6rem;
  }
  .history .history-wrap {
    margin-top: 6rem;
  }
  .history .history-wrap .line {
    width: 7.2rem;
  }
  .history .year {
    min-width: 7.5rem;
    font-size: 2rem;
  }
  .history .year::after {
    width: 1rem;
    height: 1rem;
  }
  .history .his-txt {
    padding-bottom: 3rem;
    padding-left: 2rem;
  }
  .history .his-txt li {
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-size: 1.4rem;
  }
}
/* 조직도 */
.organization {
  position: relative;
}
.organization .page-desc-wrap {
  line-height: 1.5;
  text-align: left;
  font-size: 3.5rem;
  font-weight: 600;
}
.organization .name-bg {
  position: absolute;
  top: 61%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 45%;
  max-height: 15.2rem;
  height: 100%;
  background: url("../img/sub/sub1/bg.png") no-repeat;
  background-size: contain;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.organization-chart-wrap {
  margin: 17rem auto 22rem;
  width: 136rem;
}

.organization-chart {
  position: relative;
  text-align: center;
  color: #000613;
}
.organization-chart::after {
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 0;
  content: "";
  width: 1px;
  height: 50rem;
  background-color: #c4cae0;
}
.organization-chart li {
  position: relative;
}
.organization-chart li::after {
  position: absolute;
}
.organization-chart .chart-dep2 div {
  height: 8rem;
  line-height: 8rem;
  font-size: 2.2rem;
  font-weight: 700;
  border-radius: 5rem;
  -webkit-border-radius: 5rem;
  -moz-border-radius: 5rem;
  -ms-border-radius: 5rem;
  -o-border-radius: 5rem;
}
.organization-chart .chart-dep2 ul .inner {
  padding: 0;
}
.organization-chart .chart-dep1 {
  margin: 0 auto 6rem;
  width: -moz-fit-content;
  width: fit-content;
}
.organization-chart .chart-dep1 > div {
  background-color: #9ab8ff;
  width: 25rem;
  height: 25rem;
  border-radius: 25rem;
  -webkit-border-radius: 25rem;
  -moz-border-radius: 25rem;
  -ms-border-radius: 25rem;
  -o-border-radius: 25rem;
  line-height: 25rem;
  font-size: 2.8rem;
}
.organization-chart .chart-dep2 {
  display: flex;
  justify-content: right;
  width: 100%;
  padding-bottom: 16rem;
}
.organization-chart .chart-dep2 .left {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-basis: 50%;
}
.organization-chart .chart-dep2 .left div {
  background-color: #9097a7;
  color: #fff;
}
.organization-chart .chart-dep2 .left li:first-child div {
  width: 31rem;
}
.organization-chart .chart-dep2 .left li:last-child {
  display: table;
  margin-right: auto;
}
.organization-chart .chart-dep2 .left li:last-child div {
  display: table-cell;
  vertical-align: middle;
  width: 29rem;
  background: #fff;
  color: #000;
  border: 2px dashed #778cc3;
  line-height: 1;
}
.organization-chart .chart-dep2 .left li:last-child div span {
  font-size: 1.3rem;
}
.organization-chart .chart-dep2 .left li:first-child {
  padding-right: 5rem;
  margin-left: 3rem;
}
.organization-chart .chart-dep2 .left::after {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 3.9rem;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #c4cae0;
}
.organization-chart .chart-dep3 {
  display: flex;
  gap: 5rem;
  position: relative;
}
.organization-chart .chart-dep3::before {
  position: absolute;
  left: calc(50% - 1rem);
  top: -5rem;
  content: "";
  width: calc(100% - 31rem);
  height: 1px;
  background-color: #c4cae0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.organization-chart .chart-dep3 > ul {
  width: 30rem;
}
.organization-chart .chart-dep3 > ul div {
  position: relative;
  margin-bottom: 1rem;
  width: 100%;
  height: 8rem;
  line-height: 8rem;
  font-size: 1.8rem;
  font-weight: 600;
  background-color: #fff;
  border: 1px solid #8298c1;
  border-radius: 4rem;
  -webkit-border-radius: 4rem;
  -moz-border-radius: 4rem;
  -ms-border-radius: 4rem;
  -o-border-radius: 4rem;
}
.organization-chart .chart-dep3 > ul div::before {
  position: absolute;
  left: calc(50% - 0.5rem);
  bottom: 100%;
  width: 1px;
  height: 5rem;
  content: "";
  background-color: #c4cae0;
}
.organization-chart .chart-dep3 > ul ul {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding: 0;
  border-radius: 4rem;
  -webkit-border-radius: 4rem;
  -moz-border-radius: 4rem;
  -ms-border-radius: 4rem;
  -o-border-radius: 4rem;
}
.organization-chart .chart-dep3 > ul ul li {
  height: 6rem;
  line-height: 6rem;
  font-size: 1.8rem;
  font-weight: 300;
  text-align: center;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 6rem;
  -webkit-border-radius: 6rem;
  -moz-border-radius: 6rem;
  -ms-border-radius: 6rem;
  -o-border-radius: 6rem;
  margin-bottom: 0.5rem;
}
.organization-chart .chart-dep3 .right {
  position: absolute;
  flex-basis: 50%;
  margin-bottom: 8rem;
  right: 0;
  top: -9rem;
}
.organization-chart .chart-dep3 .right div {
  margin-bottom: 1rem;
  background-color: #363d4f;
  color: #fff;
}
.organization-chart .chart-dep3 .right div::before {
  display: none;
}
.organization-chart .chart-dep3 .right > li {
  width: 30rem;
}
.organization-chart .chart-dep3 .right ul li {
  height: 6rem;
  line-height: 6rem;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 6rem;
  -webkit-border-radius: 6rem;
  -moz-border-radius: 6rem;
  -ms-border-radius: 6rem;
  -o-border-radius: 6rem;
  margin-bottom: 0.5rem;
}

@media all and (max-width: 85.375rem) {
  .organization-chart-wrap {
    margin: 12rem auto 17rem;
    width: 120rem;
  }
  .organization-chart .chart-dep1 > div {
    width: 18rem;
    height: 18rem;
    line-height: 18rem;
    border-radius: 18rem;
    -webkit-border-radius: 18rem;
    -moz-border-radius: 18rem;
    -ms-border-radius: 18rem;
    -o-border-radius: 18rem;
  }
  .organization-chart .chart-dep2 div {
    width: 20rem;
    height: 6rem;
    line-height: 6rem;
    font-size: 2rem;
  }
  .organization-chart .chart-dep2 .left li:first-child {
    margin-left: 5rem;
  }
  .organization-chart .chart-dep2 .left li:first-child div {
    width: 20rem;
  }
  .organization-chart .chart-dep2 .left li:last-child div {
    width: 30rem;
  }
  .organization-chart .chart-dep2 .left li::after {
    top: 3.9rem;
  }
  .organization-chart .chart-dep2 .left::after {
    top: 2.9rem;
  }
  .organization-chart .chart-dep3::before {
    width: calc(100% - 28.8rem);
    left: calc(50% - 1.7rem);
  }
  .organization-chart .chart-dep3 > ul {
    width: 22%;
  }
  .organization-chart .chart-dep3 > ul div {
    height: 6rem;
    line-height: 6rem;
    font-size: 1.6rem;
  }
  .organization-chart .chart-dep3 > ul ul li {
    font-size: 1.6rem;
  }
  .organization-chart .chart-dep3 .right {
    top: -8rem;
  }
  .organization-chart .chart-dep3 .right > li {
    width: 24rem;
  }
  .organization-chart .chart-dep3 .right > li::after {
    top: 3.9rem;
  }
  .organization-chart .chart-dep3 .right ul li {
    font-size: 1.6rem;
  }
  .organization-chart::after {
    height: 41rem;
  }
}
@media all and (max-width: 64rem) {
  .organization .page-desc-wrap {
    font-size: 3rem;
  }
  .organization-chart-wrap {
    margin: 12rem auto 17rem;
    width: 90rem;
  }
  .organization-chart .chart-dep2 div {
    font-size: 1.8rem;
  }
  .organization-chart .chart-dep1::after {
    height: 50rem;
  }
  .organization-chart .chart-dep2 .left li:first-child {
    padding-right: 2rem;
  }
  .organization-chart .chart-dep2 .left li::after {
    top: 3.4rem;
  }
  .organization-chart .chart-dep3 {
    gap: 3rem;
  }
  .organization-chart .chart-dep3 > ul div {
    font-size: 1.4rem;
  }
  .organization-chart .chart-dep3 > ul ul li {
    font-size: 1.4rem;
  }
  .organization-chart .chart-dep3::before {
    width: calc(100% - 22.2rem);
  }
  .organization-chart .chart-dep3 .right {
    right: 2rem;
  }
  .organization-chart .chart-dep3 .right ul li {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .organization .name-bg {
    top: 7%;
  }
  .organization-chart-wrap {
    width: 90%;
    margin: 6rem auto 1rem;
  }
  .organization-chart {
    position: relative;
  }
  .organization-chart::after {
    height: 100%;
  }
  .organization-chart .chart-dep2 {
    display: block;
  }
  .organization-chart .chart-dep2 li::after {
    display: none;
  }
  .organization-chart .chart-dep2 .left {
    display: block;
  }
  .organization-chart .chart-dep2 .left li {
    margin: 0 auto 4rem;
    padding: 0 !important;
    padding-right: 0;
    width: 100%;
  }
  .organization-chart .chart-dep2 .left li div {
    width: 100% !important;
  }
  .organization-chart .chart-dep2 .left li:first-child {
    margin-left: 0;
  }
  .organization-chart .chart-dep2 .left::after {
    display: none;
  }
  .organization-chart .chart-dep3 {
    z-index: 10;
    display: block;
  }
  .organization-chart .chart-dep3::before {
    display: none;
  }
  .organization-chart .chart-dep3 > ul {
    width: 100%;
  }
  .organization-chart .chart-dep3 > ul div::before {
    display: none;
  }
  .organization-chart .chart-dep3 > ul ul {
    margin-bottom: 3rem;
  }
  .organization-chart .chart-dep3 > ul ul li:last-child {
    margin-bottom: 0;
  }
  .organization-chart .chart-dep3 > ul:first-child {
    padding-top: 13rem;
  }
  .organization-chart .chart-dep3 .right {
    top: -16rem;
    right: 0;
    padding-left: 0;
    margin-bottom: 6rem;
  }
  .organization-chart .chart-dep3 .right::after {
    display: none;
  }
  .organization-chart .chart-dep3 .right li {
    margin: 0 auto;
    padding-left: 0;
    width: 100%;
  }
  .organization-chart .chart-dep3 .right li div {
    width: 100%;
  }
  .organization-chart .chart-dep3 .right li ul li {
    background-color: #fff;
  }
}
/* 비즈니스 */
/* 인증 면허 */
.certificate-list {
  margin-bottom: 4rem;
}
.certificate-list.col-6 {
  display: grid;
  grid-template-columns: repeat(6, minmax(auto, 21rem));
  gap: 4rem;
}
.certificate-list .list-item {
  border: 1px solid #e5e5e5;
  height: 35.4rem;
}
.certificate-list .list-item .img-box {
  position: relative;
  padding-bottom: 130%;
  width: 100%;
  height: 27.5rem;
}
.certificate-list .list-item .img-box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.certificate-list .list-item .tit {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  height: 8rem;
  line-height: 1.2;
}

@media all and (max-width: 85.375rem) {
  .certificate-list .list-item {
    height: auto;
  }
  .certificate-list.col-6 {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .certificate-list.col-6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .certificate-list .list-item .img-box {
    height: auto;
  }
  .certificate-list .list-item .tit {
    height: 6rem;
    font-size: 1.4rem;
  }
}
/* 사업실적 */
.network .sec-tit-wrap {
  margin-bottom: 15rem;
}
.network .tit-wrap {
  padding-bottom: 4rem;
}
.network .table-wrap {
  padding-bottom: 5rem;
}
.network .tit-wrap .main-tit {
  font-size: 4rem;
}
.network .bus-table table td {
  line-height: 1.3;
}

@media all and (max-width: 63.9375rem) {
  .network .bus-table table td {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .network .bus-table table td {
    font-size: 1.3rem;
  }
}
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}

.picture .img-wrap {
  max-width: 33rem;
}

@media all and (max-width: 85.375rem) {
  .picture .grid-4 {
    gap: 3rem;
  }
}
@media all and (max-width: 64rem) {
  .network .sec-tit-wrap {
    margin-bottom: 8rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .network .tit-wrap {
    padding-bottom: 2rem;
  }
  .network .tit-wrap .main-tit {
    font-size: 3rem;
  }
  .picture .grid-4 {
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (max-width: 47.9375rem) {
  .network .bus-table th,
  .network .bus-table td {
    font-size: 1.4rem;
  }
  .network .tit-wrap .main-tit {
    font-size: 2.4rem;
  }
  .picture .grid-4 {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
/* 연구개발 */
/* 사업실적 */
/*데이터 로거 */
/* 수질 수위 측정기 */
/* 영상감지 장비 */
/* 유량계(레이더 유속/수위계)*/
/*전기비저항탐사*/
/* 솔루션 */
.solution-slider-wrap {
  overflow: hidden;
  position: relative;
  margin: 0 0 10rem;
  height: 55rem;
  width: 46.527778%;
  max-width: 67rem;
  background-color: #d2d7d8;
}

.solution .solution-slider-wrap {
  width: 100%;
  max-width: none;
}
.solution .tit-card .img-wrap {
  width: 100%;
  max-width: none;
}
.solution .img-wrap {
  margin-top: 8rem;
}
.solution .fig {
  margin-bottom: 8rem;
}
.solution .fig span {
  display: block;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
}
.solution .fig span::before {
  content: "";
  width: 1px;
  height: 1.9rem;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  right: -2.1rem;
}
.solution .fig span.be-none::before {
  display: none;
}
.solution .fig .caption {
  display: flex;
  gap: 4.2rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 1.2;
}
.solution .flex-wrap {
  gap: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0 !important;
}
.solution .flex-wrap .box {
  width: 100%;
}
.solution .flex-wrap .box .img-tit {
  width: 100%;
  padding: 1.6rem 4rem;
  margin-bottom: 1.5rem;
  line-height: 1;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  border-radius: 2.5rem;
  -webkit-border-radius: 2.5rem;
  -moz-border-radius: 2.5rem;
  -ms-border-radius: 2.5rem;
  -o-border-radius: 2.5rem;
  background: #0b786d;
  border: 1px solid #006258;
}

@media all and (max-width: 63.9375rem) {
  .solution .fig .caption {
    gap: 2.2rem;
    font-size: 1.8rem;
  }
  .solution .fig span {
    font-size: 2.5rem;
  }
  .solution .fig span::before {
    display: none;
  }
  .solution .flex-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem !important;
    place-items: center;
  }
  .solution .flex-wrap .img {
    display: flex;
    justify-content: center;
  }
}
@media all and (max-width: 47.9375rem) {
  .solution .fig {
    margin-bottom: 6rem;
  }
  .solution .fig .caption {
    flex-direction: column;
    font-size: 1.6rem;
    line-height: 1.5;
    align-items: flex-start;
  }
  .solution .fig span {
    font-size: 2.2rem;
  }
  .solution .img-wrap {
    margin-top: 6rem;
  }
  .solution .flex-wrap {
    gap: 2rem !important;
  }
  .solution .flex-wrap .box {
    padding: 0 !important;
  }
  .solution .flex-wrap .box .img-tit {
    font-size: 1.5rem;
  }
}
.solution-slider {
  height: inherit;
}
.solution-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.solution-slider .swiper-button-next,
.solution-slider .swiper-button-prev {
  width: 6rem;
  height: 6rem;
}
.solution-slider .swiper-button-prev {
  left: 0;
}
.solution-slider .swiper-button-prev::after {
  content: url("../img/icon/slider-prev.png");
}
.solution-slider .swiper-button-next {
  right: 0;
}
.solution-slider .swiper-button-next::after {
  content: url("../img/icon/slider-next.png");
}
.solution-slider .slick-dots {
  position: absolute;
}

.tit-card {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 5rem;
}
.tit-card .tit-wrap {
  padding-right: 2rem;
  flex: 1 1 0;
  font-size: 3.8rem;
  font-weight: 700;
}
.tit-card .tit-wrap .list {
  margin-top: 4rem;
}
.tit-card .tit-wrap .list li {
  position: relative;
  padding-left: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
.tit-card .tit-wrap .list li:last-child {
  margin-bottom: 2rem;
}
.tit-card .tit-wrap .list li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 3px;
  height: 3px;
  background: #000;
  margin-top: 0.6rem;
  margin-right: 1.1rem;
}
.tit-card .tit-wrap p {
  font-size: 1.6rem;
  margin-left: 1.4rem;
}
.tit-card .img-wrap {
  width: 71%;
  max-width: 101.5rem;
}
.tit-card .img-wrap .img-box2:last-child {
  margin-bottom: 0;
}
.tit-card .img-wrap.mt-none {
  margin-top: 0;
}
.tit-card:last-child {
  padding-bottom: 1rem;
}

.solution .tit-card .img-wrap .mb-25 {
  margin-bottom: 2.5rem;
}
.solution .tit-card .img-wrap .mh0 {
  min-height: 0;
  padding: 6rem 2rem;
}
.solution .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2.5rem;
}

@media all and (max-width: 47.9375rem) {
  .solution .solution-slider-wrap {
    margin-bottom: 8rem;
  }
  .solution .table-wrap {
    width: 100%;
    overflow-x: scroll;
  }
  .solution .table-wrap.t-flex {
    display: block;
  }
  .solution .table-wrap .sol-table {
    min-width: 51.5rem;
  }
}
.sol2 .tit-card .img-wrap .item-2 {
  height: 58rem;
}
.sol2 .tit-card .img-wrap .item-3 {
  height: 67rem;
}

.sol3 .tit-card .img-wrap {
  width: 100%;
}
.sol3 .figure-wrap {
  display: flex;
  justify-content: space-between;
}
.sol3 .figure-wrap .img-box {
  position: relative;
  padding-bottom: 55%;
  width: 49%;
  height: 0;
}
.sol3 .figure-wrap .img-box img {
  position: absolute;
  top: 0;
  padding: 5rem 0;
  height: 100%;
}

@media all and (max-width: 85.375rem) {
  .tit-card .img-wrap {
    width: 65%;
  }
}
@media all and (max-width: 64rem) {
  .solution-slider .swiper-button-next,
  .solution-slider .swiper-button-prev {
    width: 6rem;
    height: 6rem;
  }
  .solution-slider .swiper-button-prev::after {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
  }
  .solution-slider .swiper-button-next::after {
    transform: scale(0.7);
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
  }
}
@media all and (max-width: 63.9375rem) {
  .solution-slider .swiper-button-next,
  .solution-slider .swiper-button-prev {
    display: none;
  }
  .inner-nav {
    width: 100%;
  }
  .inner-nav ul {
    width: 100%;
  }
  .inner-nav ul li {
    width: 33.3333333333%;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
  .inner-nav ul li a {
    padding: 0 1rem;
    width: 100%;
    font-size: 1.4rem;
    white-space: nowrap;
  }
  .tit-card {
    flex-wrap: wrap;
  }
  .tit-card .tit-wrap {
    margin-bottom: 4rem;
    font-size: 2.7rem;
  }
  .tit-card .img-wrap {
    width: 100%;
  }
  .tit-card .img-wrap .img-box {
    margin-bottom: 2rem;
    padding: 3rem 2rem;
    height: auto;
    min-height: 0;
  }
  .sol2 .tit-card .img-wrap .item-2 {
    height: auto;
  }
  .sol2 .tit-card .img-wrap .item-3 {
    height: auto;
  }
  .sol3 .tit-card .figure-wrap .img-box {
    padding-bottom: 50%;
    height: 0;
  }
  .sol3 .tit-card .figure-wrap .img-box img {
    padding: 3rem 0;
  }
}
@media all and (max-width: 47.9375rem) {
  .solution-slider-wrap {
    height: 30rem;
  }
  .solution-slider-wrap .thumbsSlider {
    bottom: 1rem;
  }
  .solution-slider-wrap .thumbsSlider .swiper-slide {
    width: 4rem !important;
    height: 4rem;
  }
  .solution-slider-wrap .swiper-slide-thumb-active {
    border-width: 0.3rem;
  }
}
/* 공지사항 */
.border-top-1 {
  border-top: 1px solid #000;
}

.board-wrap {
  width: 100%;
}
.board-wrap .list-top {
  margin-bottom: 2rem;
  padding-top: 15rem;
}
.board-wrap .list-top.align-bottom {
  align-items: flex-end;
}
.board-wrap .list-tit {
  font-size: 3.5rem;
}
.board-wrap .list-info {
  font-weight: 700;
  color: #565656;
}
.board-wrap .list-info .all {
  margin-left: 0.5rem;
}

.board-num-list {
  margin-bottom: 4rem;
}
.board-num-list .list-item {
  display: flex;
  align-items: center;
  height: 9.4rem;
  justify-content: flex-start;
  padding: 3rem 0;
  border-bottom: 1px solid #ddd;
  color: #5f5f5f;
}
.board-num-list .list-item:hover {
  background-color: #fafafa;
}
.board-num-list .list-item .num {
  position: relative;
  width: 9rem;
  text-align: center;
  font-weight: 700;
  border-right: 1px solid #dcdcdc;
}
.board-num-list .list-item .list-txt {
  overflow: hidden;
  flex: 1 1 0;
  padding: 0 2rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.board-num-list .list-item .date {
  padding: 0 4rem;
}

.flag {
  display: inline-block;
  margin-left: 2rem;
  width: 6.5rem;
  height: 3.3rem;
  line-height: 3.3rem;
  text-align: center;
  vertical-align: middle;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
  background-color: #2f64de;
  border-radius: 1.8rem;
  -webkit-border-radius: 1.8rem;
  -moz-border-radius: 1.8rem;
  -ms-border-radius: 1.8rem;
  -o-border-radius: 1.8rem;
}

@media all and (max-width: 47.9375rem) {
  .flag {
    margin-left: 1rem;
  }
}
/* 공지사항 view */
.view .tit-wrap {
  margin-top: 15rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #bbbbbb;
}
.view .tit-wrap .tit {
  display: flex;
  align-items: center;
  font-size: 3.5rem;
  padding-bottom: 5rem;
}
.view .tit-wrap .date {
  font-size: 2rem;
  font-weight: 300;
}
.view .content-wrap {
  padding-top: 7rem;
  position: relative;
  border-bottom: 1px solid #bbbbbb;
}
.view .content-wrap .view-body {
  margin-bottom: 15rem;
}
.view .content-wrap .view-body > p {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.8;
}
.view .content-wrap .view-body div span,
.view .content-wrap .view-body div b,
.view .content-wrap .view-body div a {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.8;
}
.view .content-wrap .view-body div b {
  font-weight: 700;
}
.view .content-wrap .view-body td,
.view .content-wrap .view-body th {
  vertical-align: middle;
}
.view .content-wrap .img-wrap {
  display: flex;
  justify-content: center;
  padding-bottom: 6rem;
}
.view .content-wrap .file {
  padding-bottom: 3rem;
  font-size: 2rem;
  font-weight: 800;
}
.view .content-wrap .file .file-name {
  font-weight: 300;
  margin-left: 2rem;
}
.view .content-wrap .file .file-name:hover a {
  text-decoration: underline;
}
.view .btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
}
.view .btn-wrap .btn {
  width: 15rem;
  height: 6rem;
  background: #111111;
  color: #fff;
  border-radius: 3rem;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  -ms-border-radius: 3rem;
  -o-border-radius: 3rem;
  text-align: center;
  line-height: 6rem;
  font-size: 2rem;
}
.view .flag {
  margin-left: 0;
  margin-right: 4rem;
}
.view .grid-wrap {
  margin: 0 auto;
  max-width: 128rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
  place-items: center;
}
.view .grid-wrap .img-wrap {
  width: 29rem;
  display: flex;
  align-items: center;
  height: 29rem;
  padding: 0 !important;
}
.view .grid-wrap .img-wrap img {
  width: 100%;
  height: 100%;
}
.view .grid-wrap:last-of-type {
  margin-bottom: 4rem;
}

@media all and (max-width: 85.375rem) {
  .view .tit-wrap .tit {
    font-size: 3rem;
    padding-bottom: 3.6rem;
  }
  .view .tit-wrap .date {
    font-size: 1.6rem;
  }
  .view .content-wrap {
    padding-top: 6rem;
  }
  .view .content-wrap .view-body {
    margin-bottom: 10rem;
  }
  .view .content-wrap .view-body > p {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .view .content-wrap .view-body div span,
  .view .content-wrap .view-body div b,
  .view .content-wrap .view-body div a {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .view .content-wrap .file {
    font-size: 1.6rem;
  }
  .view .btn-wrap {
    margin-top: 4.8rem;
  }
  .view .btn-wrap .btn {
    width: 13rem;
    font-size: 1.5rem;
  }
  .view .grid-wrap .img-wrap {
    width: 27rem;
    height: 27rem;
  }
}
@media all and (max-width: 64rem) {
  .view .grid-wrap .img-wrap {
    width: 20rem;
    height: 20rem;
  }
}
@media all and (max-width: 64rem) {
  .view .grid-wrap .img-wrap {
    width: 20rem;
    height: 20rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .view .grid-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
  .view .grid-wrap .img-wrap {
    width: 21rem;
    height: 21rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .view .tit-wrap {
    flex-direction: column;
  }
  .view .tit-wrap .tit {
    font-size: 2.2rem;
    padding-bottom: 1.6rem;
  }
  .view .tit-wrap .date {
    font-size: 1.4rem;
    padding-bottom: 2rem;
  }
  .view .content-wrap {
    padding-top: 4rem;
  }
  .view .content-wrap .view-body {
    margin-bottom: 4rem;
  }
  .view .content-wrap .view-body > p {
    font-size: 1.4rem;
  }
  .view .content-wrap .view-body div span,
  .view .content-wrap .view-body div b,
  .view .content-wrap .view-body div a {
    font-size: 1.4rem;
  }
  .view .content-wrap .img-wrap {
    padding-bottom: 4rem;
  }
  .view .content-wrap .file {
    font-size: 1.4rem;
  }
  .view .btn-wrap {
    margin-top: 3rem;
  }
  .view .btn-wrap .btn {
    width: 12rem;
    height: 5rem;
    font-size: 1.4rem;
    line-height: 5rem;
  }
  .view .flag {
    margin-right: 2rem;
  }
  .view .grid-wrap {
    gap: 2rem;
    margin-bottom: 6rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .view .grid-wrap .img-wrap {
    padding-bottom: 0;
    width: 100%;
    height: 15rem;
  }
  .view .grid-wrap:last-of-type {
    margin-bottom: 2rem;
  }
}
/* 자료실 */
.card-list {
  margin-bottom: 4rem;
}
.card-list.col-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.5rem;
}
.card-list .list-item {
  padding: 5.5rem;
  padding-bottom: 3rem;
  border: 1px solid #e5e5e5;
}
.card-list .list-item .img-box {
  position: relative;
  width: 100%;
  height: 20rem;
  background-color: #f1f1f1;
}
.card-list .list-item .img-box img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-list .list-item .card-body {
  margin-top: 5.5rem;
}
.card-list .list-item .card-body .date {
  margin-bottom: 3rem;
  font-size: 1.8rem;
  color: #666;
}
.card-list .list-item .card-body .card-tit {
  overflow: hidden;
  margin-bottom: 3rem;
  font-size: 2.5rem;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.card-list .list-item .card-body .al-right {
  display: flex;
  justify-content: right;
}
.card-list .list-item .card-body .link-btn {
  color: #8a8a8a;
}
.card-list .list-item .card-body .link-btn .fi::before {
  color: #666;
}

@media all and (max-width: 63.9375rem) {
  .card-list.col-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .card-list .list-item {
    padding: 3.5rem;
  }
  .card-list .list-item .img-box {
    margin-bottom: 3.5rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .card-list.col-3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
  .card-list .list-item {
    padding: 3.5rem;
  }
  .card-list .list-item .img-box {
    margin-bottom: 3.5rem;
  }
}
/*
페이지네이션
*/
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
}
.pagination .btn {
  margin: 0 0.3rem;
  width: 3rem;
  height: 3rem;
  text-align: center;
}
.pagination .btn.des {
  opacity: 0.5;
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1.5rem;
}
.pagination ul li {
  margin: 0 0.5rem;
  height: inherit;
}
.pagination ul li a {
  display: block;
  padding: 0 1rem;
  height: 3rem;
  text-align: center;
  line-height: 3rem;
}
.pagination ul li a span {
  position: relative;
}
.pagination ul li.active a {
  font-weight: 800;
}
.pagination ul li.active a span::after {
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

@media all and (max-width: 63.9375rem) {
  .board-wrap .list-top {
    padding-top: 8rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .board-wrap .list-info {
    font-size: 1.6rem;
  }
  .board-num-list .list-item {
    flex-wrap: wrap;
    padding: 1.5rem 0;
    font-size: 1.4rem;
  }
  .board-num-list .list-item .num {
    width: 5rem;
  }
  .board-num-list .list-item .list-txt {
    padding: 0 1rem;
  }
  .board-num-list .list-item .date {
    margin-top: 0.5rem;
    padding: 0 1rem;
    width: 100%;
    text-align: right;
    font-size: 1.2rem;
  }
  .pagination .btn {
    margin: 0 0.3rem;
    width: 2.5rem;
    height: 2.5rem;
    text-align: center;
  }
  .pagination .btn.des {
    opacity: 0.5;
  }
  .pagination ul {
    font-size: 1.3rem;
  }
}
/* 뷰페이지 */
.view-wrap .view-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.view-wrap .view-header .content-info {
  margin-left: auto;
}
.view-wrap .view-header .content-info > span {
  margin: 0 1.5rem;
}
.view-wrap .view-header .content-info > span:last-child {
  margin-right: 0;
}
.view-wrap .view-body {
  padding: 5rem 0 4rem;
}
.view-wrap .view-body p {
  margin-bottom: 5rem;
}
.view-wrap .btn-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 2rem;
  height: 5rem;
}

.download-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 4rem 0;
}
.download-box .file-tit {
  margin-right: 1.5rem;
  font-weight: 700;
}
.download-box .download-file-btn {
  background-color: #e5e5e5;
  padding: 1rem 2rem;
  border-radius: 2rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
}
.download-box .download-file-btn .fi {
  margin-left: 1rem;
}

.return-list-btn {
  padding: 1.35rem 4.64rem;
  font-size: 1.8rem;
  color: #fff;
  background-color: #53c4c7;
  border-radius: 2.5rem;
  -webkit-border-radius: 2.5rem;
  -moz-border-radius: 2.5rem;
  -ms-border-radius: 2.5rem;
  -o-border-radius: 2.5rem;
}

@media all and (max-width: 64rem) {
  .view-wrap .view-header .subjuct {
    font-size: 2.3rem;
  }
  .view-wrap .view-header .content-info {
    font-size: 1.5rem;
  }
  .view-wrap .view-body p {
    font-size: 2rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .view-wrap .view-header {
    flex-wrap: wrap;
    padding: 2rem 0;
  }
  .view-wrap .view-header .subjuct {
    margin-bottom: 1.5rem;
    width: 100%;
    line-height: 1.5;
    font-size: 2rem;
  }
  .view-wrap .view-header .content-info {
    margin-left: 0;
  }
  .view-wrap .view-header .content-info > span:first-child {
    margin-left: 0;
  }
  .view-wrap .view-body {
    padding: 3rem 0 2rem;
  }
  .view-wrap .view-body p {
    margin-bottom: 2.5rem;
    font-size: 1.4rem;
  }
  .download-box {
    display: block;
  }
  .download-box .file-tit {
    margin-bottom: 2rem;
  }
  .return-list-btn {
    padding: 0 4.64rem;
    height: 4rem;
    line-height: 4.1rem;
    font-size: 1.6rem;
  }
}
/* 고객문의 */
/* inquiry */
.form-wrap {
  margin-top: 10rem;
  margin-bottom: 12rem;
  padding: 3.5rem 5rem 5rem;
  background-color: #fafafa;
}
.form-wrap form {
  margin: 0 auto;
  width: 100%;
  max-width: 94.5rem;
}
.form-wrap .input-group {
  padding: 2.8rem 5rem;
  border-bottom: 1px solid #ddd;
  font-size: 2rem;
}
.form-wrap .input-group > * {
  vertical-align: middle;
}
.form-wrap .input-group .input-style-1 {
  padding: 0 1rem;
  font-size: inherit;
  font-weight: 300;
  color: #999;
}
.form-wrap .input-tit {
  display: inline-block;
  margin-right: 2rem;
  min-width: 10rem;
}
.form-wrap .input-tit .req {
  position: relative;
}
.form-wrap .input-tit .req::before {
  position: absolute;
  left: -2rem;
  top: 0;
  content: url("../img/icon/req.png");
}
.form-wrap .input-tit .label {
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
.form-wrap .textarea {
  margin-top: 4rem;
}
.form-wrap .textarea .input-style-1 {
  padding: 0;
  width: 100%;
  height: 12rem;
  resize: vertical;
}
.form-wrap .btn-wrap {
  margin-top: 5rem;
  text-align: center;
}
.form-wrap .btn-wrap .submit-btn {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 3.5rem 2.5rem 5rem;
  font-size: 2.2rem;
  font-weight: 700;
  color: #000;
  border: 1px solid #7d7d7d;
  border-radius: 4rem;
  -webkit-border-radius: 4rem;
  -moz-border-radius: 4rem;
  -ms-border-radius: 4rem;
  -o-border-radius: 4rem;
}
.form-wrap .btn-wrap .submit-btn .fi {
  display: inline-block;
  margin-left: 2rem;
  width: 3rem;
  height: 3rem;
  background: url("../img/icon/link-arrow.png") center no-repeat;
  background-color: #000;
  border-radius: 3rem;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  -ms-border-radius: 3rem;
  -o-border-radius: 3rem;
}

@media all and (max-width: 63.9375rem) {
  .form-wrap {
    margin-top: 10rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .form-wrap {
    margin-top: 10rem;
    margin-bottom: 7rem;
    padding: 1.5rem 2rem 2rem;
  }
  .form-wrap .input-group {
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
  }
  .form-wrap .input-tit {
    margin-bottom: 1rem;
    padding-left: 1rem;
  }
  .form-wrap .btn-wrap .submit-btn {
    font-size: 1.6rem;
    padding: 1.5rem 2rem 1.5rem 3rem;
  }
  .form-wrap .btn-wrap .submit-btn .fi {
    width: 2rem;
    height: 2rem;
    background-size: 5px;
  }
  .form-wrap .textarea {
    margin-top: 0;
  }
}
/*product*/
/*데이터로거*/
.product .sec-1 {
  margin-top: 10rem;
  margin-bottom: 10.5rem;
}
.product .sec-1 .flex-wrap {
  justify-content: space-between;
  padding: 0;
}
.product .right .cont {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4rem;
}
.product .right .tit {
  display: block;
  width: 18.5rem;
  font-size: 1.7rem;
  line-height: 2.5rem;
  font-weight: 700;
}
.product .right .desc {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.5rem;
  line-height: 2.5rem;
}
.product .right .desc span {
  display: block;
}
.product .table-wrap {
  width: 52%;
}
.product .table-wrap .pro-table {
  width: 100%;
}
.product .table-wrap .pro-table table {
  border: none;
  background: #fff;
}
.product .table-wrap .pro-table th {
  background: #f3f6fb;
  border: none;
  font-size: 1.8rem;
  line-height: 1.2;
}
.product .table-wrap .pro-table .grey {
  background: #fbfcfd;
  font-weight: 400;
}
.product .table-wrap .pro-table td {
  height: auto;
  padding: 2rem;
  border: none;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.3;
}
.product .main-table-wrap .pro-table {
  width: 100%;
}
.product .main-table-wrap table {
  border: none;
  background: #fff;
}
.product .main-table-wrap .pro-table {
  position: relative;
}
.product .main-table-wrap .pro-table .wid-20p {
  width: 18%;
}
.product .main-table-wrap .pro-table th {
  background: none;
}
.product .main-table-wrap .pro-table th:first-child {
  position: sticky;
  z-index: 999;
  left: 0;
  background: #fff;
  text-align: left;
  padding: 1.6rem 1rem;
}
.product .main-table-wrap .pro-table thead th {
  background: #f1f2f5;
  color: #0d3181;
}
.product .main-table-wrap .pro-table thead th:first-child {
  color: #000;
}
.product .main-table-wrap .pro-table td,
.product .main-table-wrap .pro-table th {
  font-size: 1.6rem;
  line-height: 1.2;
  border: none;
  text-align: center;
}
.product .main-table-wrap .pro-table .flex-wrap {
  flex-wrap: nowrap;
  text-align: left;
  position: relative;
  z-index: 0;
}
.product .main-table-wrap .pro-table .block {
  display: block;
  width: 10rem;
  min-width: 10rem;
}
.product .main-table-wrap .pro-table .tac {
  text-align: center;
}
.product .function .table-wrap {
  width: 100%;
}
.product .sec-2 {
  width: 100%;
  margin: 0;
  background: #e5eaf6;
}
.product .sec-2 .inner {
  margin: 0 auto;
  padding: 17rem 0 15rem;
}
.product .sec-2 article {
  max-width: 122rem;
  margin: 0 auto;
}
.product .sec-2 .sec-tit {
  font-size: 5rem;
  text-align: center;
}
.product .sec-2 .article-tit {
  margin-bottom: 2rem;
  font-size: 3rem;
}
.product .sec-2 article {
  margin-bottom: 8.5rem;
}
.product .sec-2 article:last-child {
  margin-bottom: 0;
}
.product .sec-2 .features {
  margin-top: 8rem;
}
.product .sec-2 .box-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
}
.product .sec-2 .box-wrap > li {
  display: flex;
  align-items: center;
  width: 60rem;
  height: 9.5rem;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  background: #fff;
  border: 1px solid #c3cce1;
  font-size: 1.6rem;
  line-height: 1.5;
}
.product .sec-2 .box-wrap > li .num {
  display: block;
  text-align: center;
  width: 8rem;
  color: #2c6eff;
  font-weight: 800;
}
.product .sec-2 .box-wrap > li .num::before {
  content: "";
  width: 1px;
  height: 1.9rem;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.product .sec-2 .box-wrap > li p {
  margin-left: 3rem;
  padding-right: 2rem;
}
.product .sec-2 .function .box-wrap > li {
  height: 11rem;
}
.product .sec-2 .function .box-wrap > li p {
  word-break: keep-all;
}
.product .sec-2 .function .box-wrap > li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  padding-bottom: 0;
}
.product .sec-2 .function .box-wrap > li .icon::before {
  content: "";
  width: 1px;
  height: 1.9rem;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.product .sec-2 .function.composition .box-wrap {
  grid-template-columns: repeat(1, 1fr);
}
.product .sec-2 .function.composition .box-wrap li {
  width: 100%;
  line-height: 1.5;
}
.product .sec-2 .function.shop .box-wrap > li .prod {
  margin-top: 2rem;
  margin-bottom: 4.5rem;
  padding-left: 16.2rem;
  width: 100%;
  font-size: 1.7rem;
}
.product .sec-2 .function.shop .box-wrap > li .prod li {
  position: relative;
  display: flex;
  line-height: 1.6;
}
.product .sec-2 .function.shop .box-wrap > li .prod li::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background: #000;
  top: 1.2rem;
  left: -1.4rem;
}
.product .sec-2 .function.shop .box-wrap > li .prod .block {
  display: block;
}
.product .sec-2 .function.shop .box-wrap > li:last-child {
  flex-direction: column;
  min-height: 11rem;
  height: auto;
}
.product .sec-2 .function.shop .box-wrap > li:last-child .flex-wrap {
  width: 100%;
  margin-top: 3rem;
  align-items: center;
}
.product .sec-2 .function.shop .box-wrap > li .point {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c6eff;
}
.product .sec-2 .function.shop .box-wrap > li .contract {
  display: block;
  margin-left: 1.5rem;
  padding: 0.8rem 2.2rem;
  background: #2c6eff;
  font-size: 1.8rem;
  border-radius: 4rem;
  -webkit-border-radius: 4rem;
  -moz-border-radius: 4rem;
  -ms-border-radius: 4rem;
  -o-border-radius: 4rem;
  color: #fff;
}
.product .sec-2 .pub .box-wrap {
  grid-template-columns: repeat(1, 1fr);
}
.product .sec-2 .pub .box-wrap li {
  width: 80rem;
}
.product .sec-2 .table-wrap {
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  border: 1px solid #dfe4ef;
}
.product .sec-2 .pro-table td,
.product .sec-2 .pro-table th {
  border-right: 1px solid #dfe4ef;
  border-bottom: 1px solid #dfe4ef;
  text-align: center;
}
.product .icon-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.product .icon-box .icon {
  width: 29rem;
  height: 29rem;
  padding-top: 7rem;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  background: #fff;
  border: 1px solid #c3cce1;
}
.product .icon-box .icon .img-wrap {
  width: 10.4rem;
  height: 10.4rem;
  margin: 0 auto;
}
.product .icon-box .icon .txt {
  padding: 0 2rem;
  margin-top: 3.6rem;
  font-size: 1.8rem;
  line-height: 1.2;
  text-align: center;
}
.product .composition .article-tit {
  margin-top: 8rem;
}
.product .composition .flex-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
}
.product .composition .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product .composition .box .name {
  display: block;
  width: 39rem;
  height: 5rem;
  padding: 1.5rem 0 1.6rem 4rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1;
  background: #2f64de;
  border-radius: 2.5rem;
  -webkit-border-radius: 2.5rem;
  -moz-border-radius: 2.5rem;
  -ms-border-radius: 2.5rem;
  -o-border-radius: 2.5rem;
  border: 1px solid #003aba;
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
}
.product .composition .box .info {
  width: 39rem;
  height: 26.5rem;
  padding: 3.5rem 1rem 0 4rem;
  background: #fff;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  border: 1px solid #c3cce1;
}
.product .composition .box .info-desc {
  font-size: 1.8rem;
  line-height: 2.5rem;
}
.product .composition.com2 .flex-wrap {
  grid-template-columns: repeat(2, 1fr);
}
.product .composition.com2 .box .name {
  width: 60rem;
}
.product .composition.com2 .box .info {
  width: 60rem;
  height: 15rem;
}
.product .img-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  width: 100%;
  height: 30rem;
  padding: 0 4rem;
  margin-top: 2.5rem;
  background: #fff;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
  border: 1px solid #c3cce1;
}
.product .img-box .img-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product .img-box .img-wrap span {
  display: block;
  margin-top: 4.5rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
.product .img-box .img-wrap::before {
  content: "";
  width: 1px;
  height: 13.9rem;
  background: #e1e5f0;
  position: absolute;
  top: 2.2rem;
}
.product .img-box .img-wrap:first-child::before {
  display: none;
}
.product .mini-tit {
  display: block;
  width: 12rem;
  height: 5rem;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  background: #7babf5;
  border-radius: 2.5rem;
  -webkit-border-radius: 2.5rem;
  -moz-border-radius: 2.5rem;
  -ms-border-radius: 2.5rem;
  -o-border-radius: 2.5rem;
  border: 1px solid #699be7;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 5rem;
  text-align: center;
}

@media all and (max-width: 85.375rem) {
  .product .tit-wrap {
    padding-right: 1.5rem;
    font-size: 2.7rem;
  }
  .product .list-wrap {
    width: 80%;
    max-width: 101.5rem;
  }
  .product .list li {
    font-size: 1.7rem;
  }
  .product .flex-wrap {
    padding: 0 3rem 12.5rem;
  }
  .product .w-box {
    width: 29rem;
    height: 29rem;
  }
  .product .p-tit {
    padding-top: 2rem;
    font-size: 2.2rem;
  }
  .product .txt {
    font-size: 1.4rem;
  }
  .product .table-wrap {
    width: 60%;
  }
  .product .pro-table {
    width: 100%;
    max-width: 101.5rem;
  }
  .product .pro-table th,
  .product .pro-table td {
    font-size: 1.4rem;
  }
  .product .sec-tit-wrap .blue2 {
    margin-left: 0;
  }
  .product .sec-2 .inner {
    padding: 15rem 4rem 12rem;
  }
  .product .sec-2 .box-wrap li {
    width: 100%;
  }
  .product .right .tit {
    font-size: 1.6rem;
    width: 15.5rem;
  }
  .product .right .desc {
    font-size: 1.5rem;
  }
  .product .icon-box {
    gap: 0;
  }
  .product .icon-box .icon {
    width: 95%;
    height: auto;
  }
  .product .icon-box .icon .txt {
    margin-bottom: 2.4rem;
  }
  .product .composition .flex-wrap {
    padding: 0;
  }
  .product .composition .box .name {
    width: 95%;
  }
  .product .composition .box .info {
    width: 95%;
  }
  .product .composition.com2 .box .name {
    width: 95%;
  }
  .product .composition.com2 .box .info {
    width: 95%;
  }
  .product .function.shop .box-wrap > li:last-child .flex-wrap {
    padding: 0;
  }
  .solution-slider-wrap {
    width: 38.527778%;
    height: 50rem;
  }
}
@media all and (max-width: 64rem) {
  .product .sec-1 .flex-wrap {
    flex-direction: column;
  }
  .product .sec-2 .sec-tit {
    font-size: 4rem;
  }
  .product .sec-2 .features {
    margin-top: 6rem;
  }
  .product .sec-2 .article-tit {
    font-size: 2.4rem;
  }
  .product .sec-2 .box-wrap li {
    font-size: 1.6rem;
  }
  .product .sec-2 .box-wrap li p {
    margin-left: 2rem;
  }
  .product .sec-2 .function.shop .box-wrap > li .prod li {
    font-size: 1.5rem;
  }
  .product .sec-2 .function.shop .box-wrap > li .prod li::before {
    top: 1rem;
  }
  .product .sec-2 .function.shop .box-wrap > li .contract {
    margin-left: 1rem;
    font-size: 1.4rem;
  }
  .product .sec-2 .function.shop .box-wrap > li .point {
    display: block;
    font-size: 1.8rem;
  }
  .product .sec-2 .pub .box-wrap li {
    width: 100%;
  }
  .product .right .tit {
    min-width: 16.5rem;
    font-size: 1.8rem;
  }
  .product .solution-slider-wrap {
    width: 80%;
    max-width: none;
    height: auto;
    margin: 0 auto 10rem;
  }
  .product .icon-box .icon {
    padding-top: 5rem;
  }
  .product .icon-box .icon .txt {
    font-size: 1.6rem;
  }
  .product .table-wrap .pro-table th {
    font-size: 1.6rem;
  }
  .product .main-table-wrap {
    max-width: none;
    width: 100%;
  }
  .product .main-table-wrap .pro-table .flex-wrap {
    flex-direction: row;
    justify-content: center;
  }
  .product .composition .box .info-desc {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
@media all and (max-width: 63.9375rem) {
  .product .sec-1 {
    margin-top: 0;
  }
  .product .tit-wrap {
    padding-right: 1.5rem;
    font-size: 2.5rem;
  }
  .product .list-wrap {
    flex-direction: column;
    width: 100%;
  }
  .product .list li {
    font-size: 1.7rem;
  }
  .product .flex-wrap {
    padding: 0 0 12.5rem;
    justify-content: center;
    gap: 1rem;
  }
  .product .s-tit {
    font-size: 3rem;
  }
  .product .w-box {
    width: 24rem;
    height: 24rem;
  }
  .product .p-tit {
    font-size: 1.8rem;
  }
  .product .txt {
    font-size: 1.2rem;
  }
  .product .table-wrap {
    overflow-x: scroll;
  }
  .product .main-table-wrap .pro-table {
    min-width: 66.7rem;
  }
  .product .main-table-wrap .pro-table table th,
  .product .main-table-wrap .pro-table table td {
    font-size: 1.4rem !important;
    padding: 1rem !important;
    line-height: 1.3 !important;
  }
  .product .main-table-wrap .pro-table .block {
    width: 7.2rem;
    min-width: 7.2rem;
  }
  .product .pro-table {
    min-width: 66.7rem;
  }
  .product .pro-table table th,
  .product .pro-table table td {
    font-size: 1.4rem !important;
    padding: 1rem !important;
    line-height: 1.3 !important;
  }
  .product .sec-tit-wrap .blue2 {
    font-size: 1.6rem;
  }
  .product .sec-tit-wrap .blue2 .bg {
    width: 8rem;
    height: 3.4rem;
    line-height: 3.4rem;
  }
  .product .sec-2 .box-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  .product .sec-2 .function.shop .box-wrap > li:last-child .flex-wrap {
    justify-content: left;
  }
  .product .sec-2 .function.shop .box-wrap > li .contract {
    margin-left: 0;
    margin-right: 1rem;
    padding: 0.8rem 1.2rem;
  }
  .product .icon-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    place-items: center;
  }
  .product .composition .box .name {
    margin-top: 0;
    padding-left: 2rem;
    font-size: 1.8rem;
  }
  .product .composition .box .info {
    padding: 2.5rem 0 0 1.5rem;
  }
  .product .composition .box .info-desc {
    font-size: 1.4rem;
  }
  .product .img-box {
    padding: 0 2rem;
  }
  .product .mini-tit {
    width: 11rem;
    height: 4rem;
    margin-top: 2rem;
    line-height: 4rem;
    font-size: 1.8rem;
  }
  .product .solution-slider-wrap {
    width: 100%;
    height: 40rem;
  }
  .product .solution-slider img {
    width: auto;
  }
  .product .swiper-slide {
    text-align: center;
  }
}
@media all and (max-width: 47.9375rem) {
  .product .sec-1 {
    margin-bottom: 6.5rem;
  }
  .product .list li {
    margin-bottom: 1.5rem;
    height: auto;
    font-size: 1.4rem;
  }
  .product .list li span {
    margin-right: 1.5rem;
    min-width: 2rem;
  }
  .product .list li span::after {
    top: 0.5rem;
  }
  .product .flex-wrap {
    flex-direction: column;
    align-items: center;
  }
  .product .solution-slider-wrap {
    margin-bottom: 4rem;
    height: 30rem;
  }
  .product .tit-card {
    padding-bottom: 0;
  }
  .product .box {
    padding: 3rem 0;
    gap: 2rem;
  }
  .product .box .img-wrap {
    width: 12rem;
  }
  .product .pro-name {
    font-size: 1.8rem;
    padding-bottom: 1.2rem;
  }
  .product .tit {
    font-size: 1.5rem;
    padding-bottom: 1.2rem;
  }
  .product .com {
    font-size: 1.5rem;
  }
  .product .sec-tit-wrap .blue2 {
    flex-direction: column;
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  .product .sec-tit-wrap .blue2 .bg {
    margin-bottom: 2rem;
  }
  .product .sec-tit-wrap .blue2 .mgt {
    margin-top: 3rem;
  }
  .product .right .cont {
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .product .right .desc {
    flex-direction: column;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .product .sec-2 .inner {
    padding: 8rem 2rem 6rem;
  }
  .product .sec-2 article {
    margin-bottom: 6.5rem;
  }
  .product .sec-2 .sec-tit {
    font-size: 3rem;
  }
  .product .sec-2 .features {
    margin-top: 4rem;
  }
  .product .sec-2 .article-tit {
    font-size: 2rem;
    line-height: 1.3;
  }
  .product .sec-2 .box-wrap {
    gap: 1.2rem;
  }
  .product .sec-2 .box-wrap li {
    height: auto;
    padding: 2.5rem 0.5rem 2.5rem 0;
    line-height: 1.5;
  }
  .product .sec-2 .box-wrap li .num {
    width: 5rem;
    min-width: 5rem;
  }
  .product .sec-2 .function .box-wrap li {
    height: auto;
  }
  .product .sec-2 .function .box-wrap li .icon {
    max-width: 7rem;
    min-width: 6rem;
  }
  .product .sec-2 .function .box-wrap li .icon img {
    width: 50%;
  }
  .product .sec-2 .function.composition .box-wrap > li {
    width: 100%;
    height: auto;
    padding: 1.6rem 1rem 1.6rem 0;
    line-height: 1.5;
  }
  .product .sec-2 .function.composition .box-wrap > li .icon {
    min-width: 7rem;
  }
  .product .sec-2 .function.shop .box-wrap > li .prod {
    padding-left: 3.2rem;
    margin: 0;
    font-size: 1.5rem;
  }
  .product .sec-2 .function.shop .box-wrap > li .prod li {
    flex-direction: column;
    margin: 1.2rem 0 0 0;
    padding: 0;
    height: auto;
  }
  .product .sec-2 .function.shop .box-wrap > li:last-child .flex-wrap {
    margin-top: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .product .sec-2 .function.shop .box-wrap > li .contract {
    margin-left: 1rem;
  }
  .product .icon-box {
    grid-template-columns: repeat(1, 1fr);
  }
  .product .icon-box .icon {
    margin: 0 auto;
  }
  .product .composition .flex-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .product .composition .box {
    padding: 0;
    gap: 0;
    margin-top: 2rem;
  }
  .product .composition .box .name {
    width: 100%;
    margin-top: 0;
    padding-left: 2rem;
    font-size: 1.8rem;
  }
  .product .composition .box .info {
    width: 100%;
    padding: 2.5rem 0 0 1.5rem;
  }
  .product .composition .box .info-desc {
    font-size: 1.4rem;
  }
  .product .composition .box:first-child {
    margin-top: 0;
  }
  .product .composition.com2 .flex-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .product .composition.com2 .box .name {
    width: 100%;
  }
  .product .composition.com2 .box .info {
    width: 100%;
    height: auto;
    padding: 2.5rem 1.5rem 2.5rem 1.5rem;
  }
  .product .img-box {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 0;
    height: auto;
  }
  .product .img-box .img-wrap::before {
    display: none;
  }
  .product .img-box .img-wrap span {
    margin-top: 2.5rem;
    font-size: 1.6rem;
  }
  .product .img-box .img-wrap:first-child, .product .img-box .img-wrap:nth-child(2) {
    margin-bottom: 2rem;
  }
  .product .mini-tit {
    width: 10rem;
    font-size: 1.6rem;
  }
  .product .main-table-wrap .pro-table .wid-20p {
    width: 20%;
  }
  .product .main-table-wrap .pro-table th,
  .product .main-table-wrap .pro-table td {
    font-size: 1.4rem !important;
    padding: 1.6rem;
    height: auto;
  }
  .product .main-table-wrap .pro-table .flex-wrap {
    align-items: flex-start;
  }
}
.activity .flex-wrap {
  margin-top: 15rem;
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.6rem;
  place-items: center;
}
.activity li {
  position: relative;
  cursor: pointer;
}
.activity li img {
  height: 25rem;
}
.activity li .desc {
  display: block;
  width: 100%;
  max-width: 33.3rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: center;
}

@media all and (max-width: 85.375rem) {
  .activity li img {
    width: 26.9rem;
    height: 20.7rem;
  }
  .activity li .desc {
    max-width: 26.9rem;
  }
}
@media all and (max-width: 64rem) {
  .activity .flex-wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .activity .flex-wrap {
    margin-top: 8rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  .activity li img {
    width: 100%;
  }
  .activity li .desc {
    max-width: 35.5rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .activity .flex-wrap {
    gap: 1.4rem;
  }
  .activity li img {
    width: 100%;
    max-width: 15.3rem;
    height: 11.7rem;
  }
  .activity li .desc {
    max-width: 15.3rem;
    font-size: 1.4rem;
  }
}
.modal-wrap {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.modal-wrap .modal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  padding: 12.1rem 18rem;
  width: 90%;
  max-width: 90rem;
  background: #fff;
}
.modal-wrap .swiper-slide {
  width: 100%;
  height: 63.8rem;
  display: flex;
  justify-content: center;
}
.modal-wrap .swiper-slide img {
  height: 100%;
}
.modal-wrap .grid-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.modal-wrap .swiper-button-next,
.modal-wrap .swiper-button-prev {
  width: 10rem;
  height: 10rem;
  background-color: rgba(0, 0, 0, 0.05);
}
.modal-wrap .swiper-button-prev {
  left: 0;
}
.modal-wrap .swiper-button-prev::after {
  content: url("../img/icon/slider-prev.png");
}
.modal-wrap .swiper-button-next {
  right: 0;
}
.modal-wrap .swiper-button-next::after {
  content: url("../img/icon/slider-next.png");
}
.modal-wrap .swiper-button-next.swiper-button-disabled,
.modal-wrap .swiper-button-prev.swiper-button-disabled {
  pointer-events: auto;
}
.modal-wrap .data {
  display: block;
  padding-top: 3rem;
  font-size: 2.2rem;
  text-align: center;
  text-align: center;
}
.modal-wrap.active {
  display: block !important;
}

@media all and (max-width: 64rem) {
  .modal-wrap .modal {
    width: 85%;
    padding: 8.1rem 10rem;
  }
  .modal-wrap .swiper-slide {
    height: 44.8rem;
  }
  .modal-wrap .data {
    font-size: 2rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .modal-wrap .modal {
    width: 90%;
    padding: 4.1rem 5rem;
  }
  .modal-wrap .swiper-slide {
    height: 24.8rem;
  }
  .modal-wrap .data {
    padding-top: 2rem;
    font-size: 1.6rem;
  }
  .modal-wrap .swiper-button-next,
  .modal-wrap .swiper-button-prev {
    top: 45%;
    width: 5rem;
    height: 6rem;
    background-color: rgba(0, 0, 0, 0.05);
  }
}
.root_daum_roughmap {
  width: 100% !important;
  height: 100%;
}
.root_daum_roughmap .wrap_controllers {
  display: none;
}
.root_daum_roughmap .wrap_map {
  height: 100% !important;
}

.location .info {
  margin-top: 15rem;
}
.location .info .main-tit {
  font-size: 4rem;
}
.location .list {
  margin-top: 6rem;
  margin-bottom: 11rem;
}
.location .list li {
  display: flex;
  font-size: 2rem;
  line-height: 2;
}
.location .list li span {
  display: block;
  width: 19rem;
  min-width: 19rem;
  font-weight: 700;
}
.location .map-wrap {
  width: 100%;
  height: 50rem;
}

@media all and (max-width: 64rem) {
  .location .list {
    margin-top: 3rem;
    margin-bottom: 6rem;
  }
  .location .info {
    margin-top: 12rem;
  }
  .location .info .main-tit {
    font-size: 3rem;
  }
}
@media all and (max-width: 63.9375rem) {
  .location .list li {
    font-size: 1.6rem;
  }
  .location .info {
    margin-top: 8rem;
  }
  .location .info .main-tit {
    font-size: 2.4rem;
  }
  .location .map-wrap {
    height: 40rem;
  }
}
@media all and (max-width: 47.9375rem) {
  .location .list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
  }
  .location .list li {
    flex-direction: column;
    font-size: 1.5rem;
    word-break: keep-all;
  }
  .location .list li span {
    width: 100%;
    min-width: 10rem;
  }
  .location .info {
    margin-top: 6rem;
  }
  .location .map-wrap {
    height: 30rem;
  }
}/*# sourceMappingURL=style_en.css.map */