#header:before{
  width: 100%;
}
/* sub_header */
.sub_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #36B7FA;
  z-index: 12;
  transform: translateY(-100%);
  transition: transform .3s .3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

}

.sub_header.active {
  transform: translateY(0);
}

.sub_header .sh-ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub_header .sh-li {
  max-width: 170px;
  width: 33.333%;
}

.sub_header .sh-li a {
  width: 100%;
  padding: 27px 0;
  display: block;
}

.sub_header .sh-li.active a {
  font-weight: 700;
}

/* sub_visual */
.sub_visual {
  position: relative;
  border-bottom: 1px solid #CFCFCF;

}

.sub_visual .sub-vi-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
  background-color: #F5F5F5;
}

.sub_visual .sub-visual-txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sub_visual .sub-visual-txt .sub-tit-box {
  line-height: 1;
}

.sub_visual .text-up {
  position: relative;
  z-index: 10;
  opacity: 0;
  transform: translateY(20px);
  animation-name: fadeIn;
  animation-duration: .9s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.sub_visual .delay-03 {
  animation-delay: .3s;
}

.sub_visual .delay-06 {
  animation-delay: 0.6s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sub_visual .home-box {
  display: flex;
  align-items: center;
}

.sub_visual .home {
  padding: 10px 20px;
}

.sub_visual .click-box {
  position: relative;
}

.sub_visual .click-box:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: #858585;
  content: '';
}

.sub_visual .depth-box {
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: visibility .5s, opacity .5s;
}

.sub_visual .depth-box.active {
  opacity: 1;
  visibility: visible;
}

.sub_visual .depth-btn {
  padding: 10px 40px 10px 20px;
  display: block;
  background: url(/asset/img/sub/arw.svg)no-repeat center right 20px;
}

.sub_visual .depth-box a {
  display: block;
  padding: 10px 40px 10px 20px;
  white-space: nowrap;
}


@media all and (max-width: 1400px) {}

@media all and (max-width: 1200px) {}

@media all and (max-width: 1024px) {
  .sub_visual .home {
    padding: 5px 10px;
  }

  .sub_visual .depth-btn {
    padding: 5px 20px 5px 10px;
    background-position: center right 5px;
  }

  .sub_visual .depth-box a {
    padding: 5px 20px 5px 10px;
  }

  .sub_visual .click-box:before {
    height: 10px;
  }

  .sub_visual .depth-box {
    left: auto;
    right: 0;
  }

  .sub_header .sh-li a {
    padding: 10px 0;
  }
}

@media all and (max-width: 768px) {
  .sub_visual .sub-visual-txt {
    flex-direction: column;
    gap: 15px 0;
  }

  .sub_visual .sub-visual-txt .sub-tit-box {
    text-align: center;
  }

  .sub_visual .depth-box {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media all and (max-width: 576px) {
  .sub_visual .home img{
    width: 11px;
  }
}


/* Company > 회사소개 */
.intro_page .sec01 {
  background: url(/asset/img/sub/company/intro_bg01.jpg)no-repeat center center /cover;
}

.intro_page .sec01 .tag {
  padding: 5px 20px;
  border-radius: 50px;
  background-color: #fff;
  margin: 0 auto;
  width: fit-content;
}

.intro_page .sec02 .txt-box {
  background: url(/asset/img/sub/company/intro_logo01.png)no-repeat right bottom / 43%;
}

.intro_page .sec02 .tag {
  background-color: #36B7FA;
  border-radius: 50px;
  padding: 5px 20px;
  width: fit-content;
}



.intro_page .sec02 .mission-flex {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.intro_page .sec02 .mission-box {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
  height: 150px;
  transition: height .5s;
  display: flex;
}

.intro_page .sec02 .mission-box.bg01 {
  background-image: url(/asset/img/sub/company/intro_mission01.jpg);
}

.intro_page .sec02 .mission-box.bg02 {
  background-image: url(/asset/img/sub/company/intro_mission02.jpg);
}

.intro_page .sec02 .mission-block {
  height: 500px;
  padding: 50px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.intro_page .sec02 .mission-box.active {
  height: 500px;
}

.intro_page .sec02 .mission-box .txt {}

@media all and (max-width:1200px) {
  .intro_page .sec02 .mission-box {
    height: 90px;
  }

  .intro_page .sec02 .mission-box .tit {}

  .intro_page .sec02 .mission-box.active {
    height: 400px;
  }

  .intro_page .sec02 .mission-block {
    height: 400px;
    padding: 30px;
  }
}

@media all and (max-width:1024px) {

  .intro_page .sec02 .mission-box.active {
    height: 360px;
  }

  .intro_page .sec02 .mission-block {
    height: 360px;
  }
}

@media all and (max-width:768px) {
  .intro_page .sec02 .mission-box.active {
    height: 200px;
  }

  .intro_page .sec02 .mission-block {
    height: 200px;
    padding: 20px;
  }

  .intro_page .sec02 .mission-box .tit {}

  .intro_page .sec02 .mission-box {
    height: 75px;
  }

  .intro_page .sec02 .mission-box .txt {
    width: 100%;
  }
}

@media all and (max-width:576px) {
  .intro_page .sec02 .mission-box.active {
    height: 180px;
  }

  .intro_page .sec02 .mission-box {
    height: 65px;
  }

  .intro_page .sec02 .mission-block {
    height: 180px;
  }
}

.intro_page .sec03 {
  background-color: var(--color-point);
}

.intro_page .sec03 .circle-list {
  display: flex;
  gap: 24px;
}

.intro_page .sec03 .circle-box {
  background-color: #fff;
  border-radius: 20px;
  width: calc(33.333% - 16px);
}

.intro_page .sec03 .circle {
  width: fit-content;
  max-width: 90%;
  margin: 0 auto;
}

.intro_page .sec03 .circle-box:nth-child(2).in-view {
  transition-delay: .3s;
}

.intro_page .sec03 .circle-box:nth-child(3).in-view {
  transition-delay: .6s;
}

@media all and (max-width:768px) {
  .intro_page .sec03 .circle-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .intro_page .sec03 .circle-box {
    width: calc(50% - 12px);
  }

  .intro_page .sec03 .circle-box:nth-child(3).in-view {
    transition-delay: 0s;
  }

  .intro_page .sec03 .circle {
    max-width: 80%;
  }
}

/* Company > 연혁 */
.history_page .sec01 {
  background: url(/asset/img/sub/company/history_bg01.jpg)no-repeat center center /cover;
}

.history_page .sec02 .history-list {}

.history_page .sec02 .history-box {
  display: flex;
  background-color: #F3F5F6;
}

.history_page .sec02 .hb-left {
  width: 32%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 70px;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  min-height: 700px;
}

.history_page .sec02 .hb-left.bg01 {
  background-image: url(/asset/img/sub/company/history_img01.jpg);
}

.history_page .sec02 .hb-left.bg02 {
  background-image: url(/asset/img/sub/company/history_img02.jpg);
}

.history_page .sec02 .hb-right {
  width: 68%;
  padding: 70px;
}

.history_page .sec02 .tag {
  border-radius: 100px;
  background: linear-gradient(270deg, #B6A3FF 0%, #36B7FA 100%);
  padding: 10px 20px;
  width: fit-content;
}

.history_page .sec02 .hbr-line {
  width: 100%;
  height: 1px;
  background-color: #cfcfcf;
}

.history_page .sec02 .hbr-flex {
  display: flex;
}

.history_page .sec02 .hbr-tit {
  width: 120px;
  min-width: 120px;
}

.history_page .sec02 .hbr-flex+.hbr-flex {
  margin-top: 10px;
}

@media all and (max-width:1400px) {

  .history_page .sec02 .hb-left,
  .history_page .sec02 .hb-right {
    padding: 50px;
  }
}

@media all and (max-width:1200px) {

  .history_page .sec02 .hb-left,
  .history_page .sec02 .hb-right {
    padding: 30px;
  }

  .history_page .sec02 .hb-left {
    min-height: 650px;
  }
}

@media all and (max-width:1024px) {

  .history_page .sec02 .hb-left,
  .history_page .sec02 .hb-right {
    padding: 25px;
  }

  .history_page .sec02 .hb-left {
    min-height: auto;
  }

  .history_page .sec02 .hbr-tit {
    width: 90px;
    min-width: 90px;
  }
}

@media all and (max-width:768px) {
  .history_page .sec02 .history-box {
    flex-wrap: wrap;
  }

  .history_page .sec02 .hb-left,
  .history_page .sec02 .hb-right {
    width: 100%;
  }

  .history_page .sec02 .hb-left {
    border-radius: 20px 20px 0 0;
    padding: 30px 25px;
  }

  .history_page .sec02 .tag {
    padding: 5px 10px;
  }
}

@media all and (max-width:576px) {
  .history_page .sec02 .hbr-tit {
    width: 70px;
    min-width: 70px;
  }

  .history_page .sec02 .hb-left {
    padding: 20px 15px;
    border-radius: 10px 10px 0 0;
  }

  .history_page .sec02 .hb-right {
    padding: 15px;
  }
}

/* Company > ESG경영 */
.esg_page .sec01 {
  background: url(/asset/img/sub/company/esg_bg01.jpg)no-repeat center center /cover;

}

.esg_page .sec02 .esg_list {
  position: relative;
}

.esg_page .sec02 .esg_box {
  padding: 50px;
  border-radius: 20px;
  background-color: #F3F5F6;
  display: flex;
  align-items: center;
  gap: 80px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 1025px 이상에서만 Sticky Stacking 적용 */
@media all and (min-width: 1025px) {
  .esg_page .sec02 .esg_list {}

  .esg_page .sec02 .esg_box {
    position: sticky;
    transition: all 0.3s ease;
  }

  .esg_page .sec02 .esg_box:nth-child(1) {
    top: 120px;
  }

  .esg_page .sec02 .esg_box:nth-child(2) {
    top: 120px;
  }

  .esg_page .sec02 .esg_box:nth-child(3) {
    top: 220px;
  }
}

.esg_page .sec02 .esg_box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  width: 60px;
  height: 60px;
  background-color: #fff;
}

.esg_page .sec02 .esg_box .img-box {
  width: 40%;
}

.esg_page .sec02 .esg_box .txt-box {
  width: calc(60% - 80px);
}

@media all and (max-width:1200px) {
  .esg_page .sec02 .esg_box {
    padding: 30px;
    gap: 40px;
  }

  .esg_page .sec02 .esg_box .txt-box {
    width: calc(60% - 40px);
  }
}

@media all and (max-width:1024px) {
  .esg_page .sec02 .esg_box .icon {
    width: 50px;
    height: 50px;
  }

  .esg_page .sec02 .esg_box .icon img {
    width: 30px;
  }
}

@media all and (max-width:768px) {
  .esg_page .sec02 .esg_box {
    flex-direction: column;
    gap: 20px 0;
  }

  .esg_page .sec02 .esg_box .img-box {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .esg_page .sec02 .esg_box .txt-box {
    width: 100%;
    text-align: center;
  }

  .esg_page .sec02 .esg_box .icon {
    margin: 0 auto;
  }

}

@media all and (max-width:576px) {
  .esg_page .sec02 .esg_box {
    padding: 25px;
  }

  .esg_page .sec02 .esg_box .icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
  }

  .esg_page .sec02 .esg_box .icon img {
    width: 25px;
  }
}

/* product common */
.com-product-flex {
  display: flex;
  gap: 80px;
  padding: 50px;
  background-color: #F3F5F6;
  border-radius: 20px;
  align-items: center;
}
.com-product-flex.bg-white{background-color: #fff;}

.com-product-flex .cp-img {
  width: calc(42% - 40px);
}

.com-product-flex .cp-txt {
  width: calc(58% - 40px);
}

.com-product-flex.type02 .cp-img{
  width: calc(33.333% - 40px);
}
.com-product-flex.type02 .cp-txt{
  width: calc(66.666% - 40px);
}
.com-product-flex.type02 .date{
  padding: 5px 12px;
  background: linear-gradient(270deg, #B6A3FF 0%, #36B7FA 100%);
  width: fit-content;
  border-radius: 50px;
}


@media all and (max-width:1400px) {
  .com-product-flex {
    padding: 30px 25px;
    gap: 40px;
  }

  .com-product-flex .cp-img {
    width: calc(42% - 20px);
  }

  .com-product-flex .cp-txt {
    width: calc(58% - 20px);
  }

  .com-product-flex .cp-txt br.pc_only {
    display: none;
  }

  
  .com-product-flex.type02 .cp-img{
    width: calc(33.333% - 20px);
  }
  .com-product-flex.type02 .cp-txt{
    width: calc(66.666% - 20px);
  }
}

@media all and (max-width:1024px) {
  .com-product-flex {
    gap: 20px;
  }

  .com-product-flex .cp-img {
    width: calc(42% - 10px);
  }

  .com-product-flex .cp-txt {
    width: calc(58% - 10px);
  }

  .com-product-flex.type02 .cp-img{
    width: calc(33.333% - 10px);
  }
  .com-product-flex.type02 .cp-txt{
    width: calc(66.666% - 10px);
  }

}

@media all and (max-width:768px) {
  .com-product-flex {
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 15px;
  }
  .com-product-flex .cp-img{
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .com-product-flex .cp-txt{
    width: 100%;
    text-align: center;
  }
  
  .com-product-flex.type02 {
    flex-direction: column;
  }
  .com-product-flex.type02 .cp-img,
  .com-product-flex.type02 .cp-txt{
    width: 100%;
  }
  .com-product-flex.type02 .date{
    margin: 0 auto;
  }
}

/* product > cpm */
.cpm_page .svg-list{
  display: flex;
  gap: 24px;
}
.cpm_page .svg-list .svg-box{
  padding: 100px 10px;
  background-color: #F3F5F6;
  border-radius: 10px;
  width: calc(33.333% - 16px);
}
.cpm_page .svg-list .svg-ico{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.cpm_page .svg-list .svg-box.in-view:nth-child(2){transition-delay: .3s;}
.cpm_page .svg-list .svg-box.in-view:nth-child(3){transition-delay: .6s;}

@media all and (max-width:1200px){
  .cpm_page .svg-list .svg-box{
    padding: 50px 5px;
  }

}

@media all and (max-width:1024px){
  .cpm_page .svg-list{
    flex-wrap: wrap;
    justify-content: center;
  }
  .cpm_page .svg-list .svg-box{
    width: calc(50% - 12px);
    padding: 30px 5px;
  }
  .cpm_page .svg-list .svg-ico img{
    max-height: 190px;
  }
  .cpm_page .svg-list .svg-box.in-view:nth-child(3){transition-delay: 0s;}
}

@media all and (max-width:576px){
  .cpm_page .svg-list .svg-box{
    width: 100%;
    padding: 20px 3px;
  }
  .cpm_page .svg-list .svg-ico img{
    max-height: 130px;
  }
  .cpm_page .svg-list .svg-box.in-view:nth-child(2){transition-delay: 0s;}

}

.cpm_page .kidae-list{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.cpm_page .kidae-list .kidae-box{
  width: calc(50% - 12px);
  border-radius: 10px;
  background-color: #F3F5F6;
  overflow: hidden;
}

.cpm_page .kidae-list .kidae-box.in-view:nth-child(even){
  transition-delay: .3s;
}

.cpm_page .kidae-list .kidae-top{
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 50px;
}
.cpm_page .kidae-list .kidae-bot{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  background-color: #36B7FA;
}
.cpm_page .kidae-list .kd-flex{
  display: flex;
  align-items: center;
  gap: 20px;
}

@media all and (max-width:1200px){
  .cpm_page .kidae-list .kidae-top{
    padding: 30px;
  }
  .cpm_page .kidae-list .kidae-top{
    gap: 15px;
  }
}
@media all and (max-width:1024px){
  .cpm_page .kidae-list .kd-img{
    width: 130px;
  }
  .cpm_page .kidae-list .kidae-bot{
    padding: 15px 0;
  }
}

@media all and (max-width:768px){
  .cpm_page .kidae-list .kidae-top{
    flex-direction: column;
  }
  .cpm_page .kidae-list .kd-txt{
    width: 100%;
    text-align: center;
  }
  .cpm_page .kidae-list .kd-flex{
    flex-direction: column;
    gap: 10px;
  }
}


@media all and (max-width:576px){
  .cpm_page .kidae-list{
    gap: 10px;
  }
  .cpm_page .kidae-list .kidae-box{
    width: calc(50% - 5px);
  }
  .cpm_page .kidae-list .kd-img{
    width: 85px;
  }
  .cpm_page .kidae-list .kidae-bot{
    padding: 10px 0;
  }
  .cpm_page .kidae-list .kd-flex{
    gap: 10px;
  }
  .cpm_page .kidae-list .kidae-top{
    padding: 20px 15px;
  }
}

/* product 은행 slide */
.com-swiper-box{
  position: relative;
}
.com-swiper-box .com-swiper-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 180px);
  transform: translate(-50%,-50%);
  pointer-events: none;
  z-index: 2;
}
.com-swiper-box .com-swiper-btn .swiper-btn{
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
  cursor: pointer;
  pointer-events: auto;
  z-index: 2;
  border-radius: 50%;
  transform: translateY(-50%);
}
.com-swiper-box .com-swiper-btn .prev-btn{
  left: 0;
  background-image: url(/asset/img/sub/product/prev-btn.svg);

}
.com-swiper-box .com-swiper-btn .next-btn{
  right: 0;
  background-image: url(/asset/img/sub/product/next-btn.svg);

}

@media all and (max-width:1680px){
  .com-swiper-box .com-swiper-btn{
    width: calc(100% - 50px);
  }
}

@media all and (max-width:1200px){
  .com-swiper-box .com-swiper-btn .swiper-btn{
    width: 45px;
    height: 45px;
    background-size: 9px auto; 
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }
}



@media all and (max-width:1024px){
  .com-swiper-box .com-swiper-btn{
    width: calc(100% - 10px);
  }
  .com-swiper-box .com-swiper-btn .swiper-btn{
    width: 35px;
    height: 35px;
    background-size: 7px auto; 
  }
}

/* com-logo-list 공통 로고 리스트 */
.com-logo-list{
  display: flex;
  gap: 30px 24px;
  flex-wrap: wrap;
}
.com-logo-list .logo-box{
  width: calc(25% - 18px);
}

.com-logo-list .logo-box.in-view:nth-child(4n + 2){transition-delay: .1s;}
.com-logo-list .logo-box.in-view:nth-child(4n + 3){transition-delay: .2s;}
.com-logo-list .logo-box.in-view:nth-child(4n + 4){transition-delay: .3s;}

@media all and (max-width:1024px){
  .com-logo-list{
    gap: 20px 12px;
  }
  .com-logo-list .logo-box{
    width: calc(25% - 9px);
  }

}

@media all and (max-width:768px){
  .com-logo-list{
    gap: 15px 10px;
  }
  .com-logo-list .logo-box{
    width: calc(33.333% - 6.666px);
  }
  .com-logo-list .logo-box.in-view:nth-child(4n + 2){transition-delay: 0s;}
  .com-logo-list .logo-box.in-view:nth-child(4n + 3){transition-delay: 0s;}
  .com-logo-list .logo-box.in-view:nth-child(4n + 4){transition-delay: 0s;}
  .com-logo-list .logo-box.in-view:nth-child(3n + 2){transition-delay: .1s;}
  .com-logo-list .logo-box.in-view:nth-child(3n){transition-delay: .2s;}
}
@media all and (max-width:576px){
  .com-logo-list{
    gap: 10px 5px;
  }
  .com-logo-list .logo-box{
    width: calc(50% - 2.5px);
  }

  .com-logo-list .logo-box.in-view:nth-child(3n + 2){transition-delay: 0s;}
  .com-logo-list .logo-box.in-view:nth-child(3n){transition-delay: 0s;}
  .com-logo-list .logo-box.in-view:nth-child(even){transition-delay: .1s;}
}


/* PRODUCT > LOG */
.log_page .tap-click-box{
  display: flex;
  gap: 24px;
}
.log_page .tap-click-box .tc-left{
  width: calc(33.333% - 16px);
}
.log_page .tap-click-box .tc-right{
  width: calc(66.666% - 8px);
}
.log_page .tap-click-box .btn-list{
  display: flex;
  gap: 20px;
  height: 100%;
  flex-direction: column;
}
.log_page .tap-click-box .tc-num{
  background-color: #36B7FA;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.log_page .tap-click-box .btn{
  height: calc(33.333% - 13.333px);
  padding: 0 40px;
  border-radius: 10px;
  background-color: #F3F5F6;
  display: flex;
  align-items: center;
  gap: 20px;
}
.log_page .tap-click-box .btn.active{
  color: #fff;
  background-color: #36B7FA;
}
.log_page .tap-click-box .btn.active .tc-num{
  background-color: #fff;
  color: #36B7FA;
}
.log_page .tap-click-box .tab-list{
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #cfcfcf;
}
.log_page .tap-click-box .tab-box{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.log_page .tap-click-box .tab-box.active{
  opacity: 1;
  z-index: 2;
}
.log_page .tap-click-box .tab-box:first-child{
  position: relative;
}

@media all and (max-width:1200px){
  .log_page .tap-click-box .tc-num{
    width: 50px;
    height: 50px;
  }
  .log_page .tap-click-box .btn{
    gap: 10px;
    padding: 0 30px;
  }
}

@media all and (max-width:1024px){
  .log_page .tap-click-box .btn{
    padding: 0 20px;
  }
  .log_page .tap-click-box{
    gap: 20px;
  }
  .log_page .tap-click-box .tc-left{
    width: calc(33.333% - 10px);
  }
  .log_page .tap-click-box .tc-right{
    width: calc(66.666% - 10px);
  }
}

@media all and (max-width:768px){
  .log_page .tap-click-box{
    flex-direction: column;
  }
  .log_page .tap-click-box .tc-left,
  .log_page .tap-click-box .tc-right{
    width: 100%;
  }
  .log_page .tap-click-box .btn-list{
    flex-direction: row;
  }
  .log_page .tap-click-box .btn{
    height: 100%;
    flex-direction: column;
    padding: 10px 0;
    width: calc(33.333% - 13.333px);
    text-align: center;
  }
  .log_page .tap-click-box .tc-num{
    width: 45px;
    height: 45px;
  }
}

@media all and (max-width:576px){
  .log_page .tap-click-box .tc-num{
    width: 36px;
    height: 36px;
  }
  .log_page .tap-click-box .btn-list,
  .log_page .tap-click-box{
    gap: 10px;
  }
  .log_page .tap-click-box .btn{
    width: calc(33.333% - 6.666px);
  }
}

/* PRODUCT Search */
.search_page .bang-an-list{
  display: flex;
  gap: 24px;
}
.search_page .bang-an-list .bang-box{
  border-radius: 10px;
  background-color: #f3f5f6;
  padding: 50px 30px;
}

.search_page .bang-an-list .bang-box.in-view:nth-child(2){transition-delay: .3s;}
.search_page .bang-an-list .bang-box.in-view:nth-child(3){transition-delay: .6s;}
@media all and (max-width:1200px){
  .search_page .bang-an-list br.pc_only{display: none;}
  .search_page .bang-an-list .bang-box{
    padding: 30px 15px;
  }

}
@media all and (max-width:768px){
  .search_page .bang-an-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .search_page .bang-an-list .bang-box{
    width: calc(50% - 12px);
  }
  .search_page .bang-an-list .bang-box.in-view:nth-child(3){transition-delay: 0s;}

}
@media all and (max-width:576px){
  .search_page .bang-an-list .bang-box{
    width: 100%;
  }
  .search_page .bang-an-list .bang-iimg{
    display: flex;
    justify-content: center;
  }
  .search_page .bang-an-list .bang-box.in-view:nth-child(2){transition-delay: 0s;}
}

/* product use case */
.com-use-case.flex{
  display: flex;
  flex-wrap: wrap;
  gap: 50px 24px;
}
.com-use-case.flex  .use-case-box{
  width: calc(50% - 12px);
}
.com-use-case .use-case-box .img-box{
  aspect-ratio: 1/.542;
  border-radius: 10px;
  overflow: hidden;
}
.com-use-case .use-case-box .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.com-use-case .use-case-box .list{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.com-use-case .use-case-box .li-box{
  padding: 10px 20px;
  background-color: #f3f5f6;
  border-radius: 5px;
}



.com-use-case .com-use-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 180px);
  transform: translate(-50%,-50%);
  pointer-events: none;
  z-index: 2;
}
.com-use-case .com-use-btn .swiper-btn{
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #f3f5f6;
  cursor: pointer;
  pointer-events: auto;
  z-index: 2;
  border-radius: 50%;
  transform: translateY(-50%);
}
.com-use-case .com-use-btn .prev-btn{
  left: 0;
  background-image: url(/asset/img/sub/product/prev-btn.svg);

}
.com-use-case .com-use-btn .next-btn{
  right: 0;
  background-image: url(/asset/img/sub/product/next-btn.svg);

}

@media all and (max-width:1680px){
  .com-use-case .com-use-btn{
    width: calc(100% - 50px);
  }
}

@media all and (max-width:1200px){
  .com-use-case .com-use-btn .swiper-btn{
    width: 45px;
    height: 45px;
    background-size: 9px auto; 
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }
}



@media all and (max-width:1024px){
  .com-use-case .com-use-btn{
    width: calc(100% - 10px);
  }
  .com-use-case .use-case-box .list{
    gap: 5px;
  }
  .com-use-case .use-case-box .li-box{
    padding: 5px 10px;
  }
  .com-use-case .com-use-btn .swiper-btn{
    width: 35px;
    height: 35px;
    background-size: 7px auto; 
  }

  
.com-use-case.flex{
  gap: 30px 20px;
}
.com-use-case.flex  .use-case-box{
  width: calc(50% - 10px);
}
.com-use-case.flex  .use-case-box .mt-40{
  margin-top: 20px;
}
.com-use-case.flex  .use-case-box .mt-20{
  margin-top: 10px;
}
}

@media all and (max-width:768px){
  
.com-use-case.flex  .use-case-box{
  width: 100%;
}
.com-use-case.flex  .use-case-box .mt-40{
  margin-top: 10px;
}
.com-use-case.flex  .use-case-box .mt-20{
  margin-top: 5px;
}
}

/* partnership elastic */
.elastic_page .svg-list{
  display: flex;
  gap: 24px;;
}
.elastic_page .svg-box{
  padding: 50px 40px;
  border-radius: 10px;
  background-color: #3d3d3d;
  border: 1px solid #858585;
  width: calc(25% - 18px);
}

.elastic_page .svg-box.in-view:nth-child(2){transition-delay: .3s;}
.elastic_page .svg-box.in-view:nth-child(3){transition-delay: .6s;}
.elastic_page .svg-box.in-view:nth-child(4){transition-delay: .9s;}

.sticky-wrap-box{
  display: flex;
  position: relative;
}

.sticky-wrap-box .txt-bxo{
  position: sticky;
  top: 100px;
}
.sticky-wrap-box .lt-sticky{
  width: calc(100% - 1018px);
}
.sticky-wrap-box .rt-contents{
  width: 1018px;
}
.sticky-wrap-box .box-list{
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.sticky-wrap-box .box-box{
  width: calc(50% - 25px);
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  transition: box-shadow .5s, border-radius .5s;
}
.sticky-wrap-box .box-box:nth-child(even){
  transform: translateY(180px);
}
.sticky-wrap-box .box-box:hover{
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  border-radius: 0px;
}

.elastic_page .tit-box .img{
  display: flex;
  justify-content: center;
}
.elastic_page .tit-box .img img{
  max-width: 60%;
}

@media all and (max-width:1400px){
  .elastic_page .svg-box{
    padding: 30px 20px;
  }

  .sticky-wrap-box .lt-sticky{
    width: 20%;
  }
  .sticky-wrap-box .rt-contents{
    width: 80%;
  }
  .sticky-wrap-box .box-list{
    gap: 25px;
  }
  .sticky-wrap-box .box-box{
    width: calc(50% - 12.5px);
  }
  .sticky-wrap-box .box-box:nth-child(even){
    transform: translateY(100px);
  }
}


@media all and (max-width:1024px){
  .elastic_page .svg-box{
    padding: 20px;
  }
  .elastic_page .svg-list{
    gap: 20px;
    flex-wrap: wrap;
  }
  .elastic_page .svg-box{
    width: calc(50% - 10px);
  }
  .sticky-wrap-box .box-box{
    padding: 25px;
  }
}

@media all and (max-width:768px){
  .sticky-wrap-box .txt-bxo{
    top: 60px;
  }
  .sticky-wrap-box .box-box{
    width: 100%;
  }
  .sticky-wrap-box .box-box:nth-child(even){
    transform: translateY(0);
  }
  .sticky-wrap-box .lt-sticky{
    width: 100px;
  }
  .sticky-wrap-box .rt-contents{
    width: calc(100% - 100px);
  }
  .sticky-wrap-box .img img{
    height: 65px;
  }
}

@media all and (max-width:576px){
  .elastic_page .svg-list{
    gap: 10px;
  }
  .elastic_page .svg-box{
    width: 100%;
  }
  .sticky-wrap-box .img img{
    height: 50px;
  }

}



.ki-sul-list{
  display: flex;
  gap: 24px;
}
.ki-sul-list .kisul-box{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: calc(33.333% - 16px);
}

.ki-sul-list .kisul-box.in-view:nth-child(2){transition-delay: .3s;}
.ki-sul-list .kisul-box.in-view:nth-child(3){transition-delay: .6s;}
.ki-sul-list .kisul-box .img-box{
  width: 100%;
  height: 100%;
}
.ki-sul-list .kisul-box .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ki-sul-list .kisul-box .air-txt{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 10px;
  top: 0;
  left: 0;
}

@media all and (max-width:1024px){
 .ki-sul-list{
    gap: 20px;
  }
  .ki-sul-list .kisul-box {
    width: calc(33.333% - 13.333px);
  }
  .ki-sul-list .kisul-box .air-txt{
    padding: 30px 10px;
  }

}
@media all and (max-width:768px){
  
  .ki-sul-list{
    flex-wrap: wrap;
    justify-content: center;
  }
  .ki-sul-list .kisul-box {
    width: calc(50% - 10px);
  }
  .ki-sul-list .kisul-box.in-view:nth-child(3){transition-delay: 0s;}
}
@media all and (max-width:576px){
  
  .ki-sul-list .kisul-box {
    width: 100%;
  }
  .ki-sul-list .kisul-box.in-view:nth-child(2){transition-delay: 0s;}

}

.elastic_page .ela-table-box table{
  width: 100%;
  border: none;
  border-collapse: collapse;
}
.elastic_page .ela-table-box th{
  background-color: #0b476f;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
}
.elastic_page .ela-table-box tr{
  background-color: #F3F5F6;
}
.elastic_page .ela-table-box tr.bg{
  background-color: #E5E9EB;
}
.elastic_page .ela-table-box th,
.elastic_page .ela-table-box td{
  border: 1px solid #cfcfcf;
  padding: 12px 30px;
}

.elastic_page .ela-table-box td{
  font-size: 1.8rem;
}
@media all and (max-width:1024px){
  
.elastic_page .ela-table-box{
  overflow-x: auto;
}
  .elastic_page .ela-table-box table{
    min-width: 1000px;
  }

}
@media all and (max-width:768px){
  
.elastic_page .ela-table-box th,
.elastic_page .ela-table-box td{
  padding: 8px 20px;
}
.elastic_page .ela-table-box th{
  font-size: 1.8rem;
}
.elastic_page .ela-table-box td{
  font-size: 1.6rem;
}
  .elastic_page .ela-table-box table{
    min-width: 800px;
  }

}


/* partnership > confluent */
.confluent_page .sec01 .img{
  display: flex;
  justify-content: center;
}
.confluent_page .sec01 .img img{
  max-width: 75%;
}

@media all and (max-width:1400px){
  .confluent_page .sticky-wrap-box .lt-sticky{
    width: 22%;
  }
}
@media all and (max-width:768px){
  .confluent_page .sticky-wrap-box .lt-sticky{
    width: 150px;
  }
}

.confluent_page .number-list .number-box {
  padding: 50px;
  background-color: #3D3D3D;
  border: 1px solid #858585;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
}
.confluent_page .number-list .num-box{
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 420px;
}
.confluent_page .number-list .num{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media all and (max-width:1200px){
  .confluent_page .number-list .num-box{
    min-width: 300px;
  }
  .confluent_page .number-list .number-box{
    padding: 40px;
  }
}

@media all and (max-width:1024px){
  .confluent_page .number-list .num-box{
    min-width: 260px;
    gap: 10px;
  }
  .confluent_page .number-list .num{
    width: 30px;
    height: 30px;
  }
  .confluent_page .number-list .number-box{
    padding: 30px;
  }
}
@media all and (max-width:576px){
  
  .confluent_page .number-list .num-box{
    min-width: none;
    gap: 5px;
  }
  .confluent_page .number-list .number-box{
    flex-direction: column;
    gap: 15px 0;
    padding: 20px;
  }
  .confluent_page .number-list .num{
    width: 25px;
    height: 25px;
  }
}


/* 채용정보 > career */
.career_page .sec01{
  background: url(/asset/img/sub/career/career_bg01.jpg)no-repeat center center /cover;
  overflow: hidden;
}

.career_page .circle-list{
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.career_page .circle-list:before,
.career_page .circle-list:after{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100vw;
  height: 2px;
  background-color: #fff;
  content: '';
}
.career_page .circle-list:before{right: 100%;}
.career_page .circle-list:after{left: 100%;}
.career_page .circle-box{
  width: calc(33.333% + 50px);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #fff;
  padding: 50px;
}
.career_page .circle-box:nth-child(2){
  margin: 0 -50px;
}


@media all and (max-width:1400px){
  .career_page .circle-box br.pc_only{display: none;}

}

@media all and (max-width:1024px){

  .career_page .circle-box{
    width: calc(33.333% + 25px);
    padding: 25px;
  }
  .career_page .circle-box:nth-child(2){
    margin: 0 -25px;
  }
}

@media all and (max-width:768px){
  
  .career_page .circle-list{
    flex-wrap: wrap;
    justify-content: center;
  }
  .career_page .circle-box{
    width: 50%;
    padding: 20px;
  }
  .career_page .circle-box:nth-child(1){
    margin-right: -10px;
  }
  .career_page .circle-box:nth-child(2){
    margin: 0 0 0 -10px;
  }
  .career_page .circle-box:nth-child(3){
    margin-top: -65px;
  }
  .career_page .circle-list:before, .career_page .circle-list:after{content: none;}
}

@media all and (max-width:576px){
  .career_page .circle-box{
    padding: 25px;
    width: 100%;
    width: 65%;
  }
  .career_page .circle-box:nth-child(1){
    margin: 0;
  }
  .career_page .circle-box:nth-child(2){
    margin: -15px 0;
  }
  .career_page .circle-box:nth-child(3){
    margin:0;
  }

}

.career_page .arw-list{
  display: flex;
  padding: 40px;
  gap: 80px;
  background-color: #F3F5F6;
}
.career_page .arw-box{
  width: calc(25% - 60px);
  aspect-ratio: 1/1;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px 0;
}
.career_page .arw-box + .arw-box:before{
  position: absolute;
  content: '';
  left: -40px;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background:#fff url(/asset/img/sub/career/career_arw.svg)no-repeat center center;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.10);
}

.career_page .arw-box.in-view:nth-child(2){transition-delay: .3s;}
.career_page .arw-box.in-view:nth-child(3){transition-delay: .6s;}
.career_page .arw-box.in-view:nth-child(4){transition-delay: .9s;}

@media all and (max-width:1200px){
  .career_page .arw-list{
    padding: 30px;
    gap: 40px;
  }
  .career_page .arw-box{
    width: calc(25% - 30px);
  }
  .career_page .arw-box + .arw-box:before{
    left: -20px;
    width: 30px;
    height: 30px;
    background-size: 7px;
  }
}

@media all and (max-width:1024px){
  .career_page .arw-list{
    padding: 20px;
  }
}

@media all and (max-widtH:768px){
  .career_page .arw-list{
    flex-wrap: wrap;
    gap: 40px;
  }
  .career_page .arw-box{
    width: calc(50% - 20px);
  }
  .career_page .arw-box:nth-child(3):before{
    top: -20px;
    left: auto;
    right: -20px;
    transform: translate(50%,-50%) rotate(135deg);
  }
  
.career_page .arw-box.in-view:nth-child(2){transition-delay: .3s;}
.career_page .arw-box.in-view:nth-child(3){transition-delay: 0s;}
.career_page .arw-box.in-view:nth-child(4){transition-delay: .3s;}
}
@media all and (max-widtH:576px){
  .career_page .arw-list{
    gap: 30px 25px;
  }
  .career_page .arw-box + .arw-box:before{
    width: 20px;
    height: 20px;
    background-size: 5px;
    left: -12.5px;
  }
  .career_page .arw-box:nth-child(3):before{
    top: -15px;
    right: -12.5px;
    left: auto;
  }
  .career_page .arw-box{
    width: calc(50% - 12.5px);
  }
}

.career_page .jakyeok-list{
  display: flex;
}
.career_page .jak-box{
  width: 20%;
}

.career_page .jak-box.in-view:nth-child(2){transition-delay: .3s;}
.career_page .jak-box.in-view:nth-child(3){transition-delay: .6s;}
.career_page .jak-box.in-view:nth-child(4){transition-delay: .9s;}
.career_page .jak-box.in-view:nth-child(5){transition-delay: 1.2s;}

.career_page .jak-box .icon{
  margin: 0 auto;
  width: fit-content;
}
.career_page .jakyeok-btn{
  display: flex;
  justify-content: center;
  gap: 20px;
}
.career_page .jakyeok-btn .btn{
  width: 300px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #36B7FA;
  border-radius: 10px;
}

@media all and (max-width:1200px){
  .career_page .jakyeok-list{
    flex-wrap: wrap;
    justify-content: center;
  }
  .career_page .jak-box{
    width: 33.333%;
  }

  .career_page .jak-box.in-view:nth-child(2){transition-delay: .3s;}
  .career_page .jak-box.in-view:nth-child(3){transition-delay: .6s;}
  .career_page .jak-box.in-view:nth-child(4){transition-delay: 0s;}
  .career_page .jak-box.in-view:nth-child(5){transition-delay: .3s;}
}
@media all and (max-width:768px){
  .career_page .jakyeok-list{
    gap: 10px 0;
  }
  .career_page .jak-box{
    width: 50%;
  }
  .career_page .jak-box .icon{
    max-width: 70%;
  }

  .career_page .jakyeok-btn{
    gap: 10px;
  }
  .career_page .jakyeok-btn .btn{
    height: 50px;
    gap: 10px;
  }
  
  .career_page .jak-box.in-view:nth-child(2){transition-delay: .3s;}
  .career_page .jak-box.in-view:nth-child(3){transition-delay: 0s;}
  .career_page .jak-box.in-view:nth-child(4){transition-delay: .3s;}
  .career_page .jak-box.in-view:nth-child(5){transition-delay: 0s;}
}