/* 회사소개 */
.content .text-box{
  margin-bottom: 80px;
}
.p160{
  padding: 160px 0;
}
.pb160{
  padding-bottom: 160px;
}
.desc-wrap{
  display: flex;
  justify-content: space-between;
}
.desc-wrap .text-box .title-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.desc-wrap .text-box .slogan {
  color: #FFF;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.07rem;
}


@media all and (max-width: 1350px) {
  .desc-wrap .col-right{
max-width: none !important;  }
  .desc-wrap {
    flex-direction: column;
    align-items: flex-start;
}
}
@media all and (max-width: 1024px) {
  .desc-wrap .text-box .slogan {
    font-size: 3.2rem;
}
}
@media all and (max-width: 768px) {
  .desc-wrap .text-box .slogan {
    font-size: 2.6rem;
}
}
@media all and (max-width: 460px) {
  .desc-wrap .text-box .slogan {
    font-size: 2.0rem;
}
}





.desc-wrap .col-right{
  display: flex;
  flex-direction: column;
  gap: 23px;
  max-width: 720px;
  width: 100%;
  margin-top: 40px;
}

.desc-wrap .col-right strong{
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 150%; 
  letter-spacing: -0.03rem;
}
.desc-wrap .col-right p{
  color: rgba(255, 255, 255, 0.80);
  font-size: 1.13rem;
  line-height: 160%;
  letter-spacing: -0.02rem;
}
.bg-area{
  padding: 86px 0 147px;
}
.tit-wrap{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tit-wrap h3{
  color: var(--black);
}

.ct-core-val{
  background-color: #0D0D22;
}

.crop-bd{
  position: relative;
  padding: 20px;
}

.crop-bd::before{
  position: absolute;
  inset: 0;
  border: 1px solid var(--white);
  clip-path: polygon(0% 0%, 0% 100%, 20px 100%, 20px calc(100% - 20px), 0 calc(100% - 20px), 0 20px, 20px 20px, 20px 0, calc(100% - 20px) 0, calc(100% - 20px) 20px, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 20px calc(100% - 20px), 20px 100%, 100% 100%, 100% 0%);
  content: "";
  pointer-events: none;
  transition: clip-path .3s ease;
}
.val-list{
  display: grid;
  grid-template-columns: repeat(4,1fr);

}
.val-list li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 398px;
  width: 100%;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.val-list li .thumb{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;

}

.val-list li .thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 1.5s;
}

.val-list li .og-txt{
  position: relative;
  z-index: 61;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.val-list li .og-txt span{
  color: var(--white);
  text-align: center;
  font-size: 1.63rem;
  font-weight: 700;
  line-height: 150%; 
  letter-spacing: -0.03rem;
}
.val-list li .og-txt strong{
  color:  rgba(255, 255, 255, 0.80);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.03rem;
}
.val-list li .hover-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  color: var(--white);
  text-align: center;
  font-size: 1.63rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; 
}

.val-list li::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 60;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.02) 100%), #0D0D22;
  opacity: 1;
  transition: all 0.3s;
}
@media all and (max-width:1200px) {
  .val-list {
    grid-template-columns: repeat(2, 1fr);
}
.val-list li {
  max-width: none !important;
}
}
@media all and (min-width:768px) {
  .val-list li:hover .og-txt{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .val-list li:hover .hover-txt {
    opacity: 1;
    visibility: visible;
  }
  .val-list li:hover::before {
    opacity: 0;
  }
  
  .val-list li:hover .thumb img{
    transform: scale(1.3);
    transition: all 5.5s;
  }
} 

@media all and (max-width:768px) {
  .val-list li .hover-txt {
    font-size: 1rem;
}
.val-list li .og-txt span {
  font-size: 1.2rem;
}
.val-list li.active .og-txt{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.val-list li.active .hover-txt {
  opacity: 1;
  visibility: visible;
}
.val-list li.active::before {
  opacity: 0;
}

.val-list li.active .thumb img{
  transform: scale(1.3);
  transition: all 5.5s;
}
.ct-loca .map-thumb{
  height: 380px !important;
}




}
@media all and (max-width:425px) {
  .val-list li .og-txt span {
    font-size: 1rem;
}
.val-list li .og-txt strong {
  font-size: 1.15rem;
}
.val-list li .hover-txt {
  font-size: 0.88rem;
}
}
.ct-loca .flex{
  display: flex;
  gap: 80px;
  color: #FFF;
}

.ct-loca .flex .tit{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 48px 0;

}
.ct-loca .flex .tit h3{
font-size: 2rem;
font-weight: 700;
line-height: 120%; 
letter-spacing: -0.04rem;
}
.ct-loca .loca-info-list{
  border-top: 1px solid rgba(255, 255, 255, 0.20);
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
 
}
.ct-loca .loca-info-list li+li{
  border-top: 1px solid rgba(255, 255, 255, 0.20);
}
.ct-loca .loca-info-list li div{
  color: rgba(255, 255, 255, 0.80);
  font-size: 1.13rem;
  line-height: 140%; 
  letter-spacing: -0.04rem;
}
.ct-loca .loca-info-list li{
  display: flex;
  padding: 30px 0;
}
.ct-loca .loca-info-list li span{
  display: inline-block;
  min-width: 100px;
  flex-shrink: 0;
  font-size: 1.13rem;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.04rem;
}
.ct-loca .flex>div{
  flex: 1;
}
.ct-loca .map-thumb{
  position: relative;
  width: 100%;
  height: 480px;
}
.ct-loca .map-thumb .og-img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all 0.3s;
  z-index: 2;
  object-fit: cover;
}
.ct-loca .root_daum_roughmap .wrap_btn_zoom,
.ct-loca .root_daum_roughmap .cont .section_address{
  display: none !important;
}

#daumRoughmapContainer1779756263617 .wrap_map,
#daumRoughmapContainer1779779008030 .wrap_map{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;

}
#daumRoughmapContainer1779756263617,
#daumRoughmapContainer1779756263617 .wrap_map,
#daumRoughmapContainer1779779008030, .wrap_map,
#daumRoughmapContainer1779779008030{
  width: 100%;
  height: 100%;
}

.ct-loca .tit .thumb{
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  cursor: pointer;
}

.ct-loca .tit .thumb img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ct-loca .tit .thumb img{
  transition: all 0.3s;
}
.ct-loca .tit .thumb img.pin-blue{
  opacity: 1;
}
.ct-loca .tit .thumb img.pin-white{
  opacity: 0;
}

@media all and (max-width:1050px) {
  .ct-loca .flex {
    flex-direction: column;
}
}
.ct-loca .flex>div.on .og-img{
  opacity: 0;
  }

  .ct-loca .flex>div.on #daumRoughmapContainer1779756263617,
  .ct-loca .flex>div.on #daumRoughmapContainer1779779008030{
    z-index: 5;
  }
  .ct-loca .flex>div.on .tit .thumb img.pin-blue{
    opacity: 0;
  }
  .ct-loca .flex>div.on .tit .thumb img.pin-white{
    opacity: 1;
  }

@media all and (max-width:768px) {
  .ct-loca .flex .tit h3 {
    font-size: 1.6rem;
}
}

/* CEO 인사말 */
.cont-intro{
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.cont-intro>div{
  flex: 1;
  width: 100%;
}


.cont-intro .col-left img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cont-intro .col-right p{
  color: rgba(255, 255, 255, 0.80);
font-size: 1.13rem;
line-height: 150%; 
letter-spacing: -0.72px;
}
.cont-intro .col-right .flex{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 120px;
}

.cont-intro .flex strong{
  color: var(--white);
font-size: 1.38rem;
font-weight: 600;
line-height: 150%;
letter-spacing: -0.06rem;
}



@media all and (max-width: 1500px) {
  .cont-intro {
    align-items: flex-start;
  }
}

@media all and (max-width: 1200px) {
  .cont-intro {
    flex-direction: column;
}
}

/* 연혁 */
.sub-page section.history-box {
  position: relative;
}

.history-lnb {
  position: sticky;
  top: 90px;
  transition: .3s;
  z-index: 99;
  background: var(--white);
}

.history-lnb.top {
  top: 0;
}

.history-lnb ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  border-bottom: 1px solid var(--coloree);
}

.history-lnb ul li a {
  position: relative;
  display: block;
  padding-block: 1.625rem;
  color: var(--coloraa);
  font-size: 1.125rem;
  line-height: 160%;
  letter-spacing: -0.0225rem;
  box-sizing: border-box;
  transition: .3s;
}

.history-lnb ul li:hover a {
  color: var(--color27);
  font-weight: 400;
}

.history-lnb ul li.active a {
  color: var(--color27);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.0225rem;
}

.history-lnb ul li a::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-100%);
  width: 100%;
  height: 1px;
  background: transparent;
  transition: .3s;
}

.history-lnb ul li.active a::after {
  background: var(--color27);
}

/* 연혁 콘텐츠 */
.history-box {
  position: relative;
  height: auto;
}

.history-list {
  position: relative;
}

.history-list::before {
  content: "";
  position: absolute;
  top: var(--line-start, 0);
  bottom: var(--line-end, 0);
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(255, 255, 255, 0.20);
  z-index: 0;
}

.history-list::after {
  content: "";
  position: absolute;
  top: var(--line-start, 0);
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: var(--line-progress, 0px);
  background: var(--color27);
  z-index: 1;
  pointer-events: none;
}

.history-decade-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding-bottom: 3.75rem;
}

.history-decade-wrap:first-child {
  padding-top: 0;
}

.history-decade-wrap:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.history-decade-left {
  position: relative;
  height: 100%;
  padding-right: 4rem;
}

.decade-title-box {
  position: sticky;
  top: calc( 90px + 5.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transition: .3s;
}

.decade-title-box.top {
  top: 5.5rem;
}

.decade-title {
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin-bottom: 5rem;
  color: var(--white);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: -0.07rem;
}

.decade-desc {
  margin-bottom: 7.6875rem;
  color: var(--color44);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.025rem;
}

.swiper.history-swiper {
  position: relative;
  max-width: 37.5rem;
  width: 100%;
  margin: 0;
}

.history-swiper .swiper-slide {
  overflow: hidden;
}

.history-swiper .swiper-pagination {
  position: static;
  margin-top: 1.25rem;
}

.history-swiper .swiper-pagination-bullet {
  width: 0.375rem;
  height: 0.375rem;
  background: var(--coloree);
  opacity: 1;
  transition: background 0.2s;
}

.history-swiper .swiper-pagination-bullet-active {
  background: rgba(39, 196, 213, 0.20);
}

.history-decade-right {
  position: relative;
  margin-left: 12.5rem;
  padding-bottom: 6.25rem;
}
.history-decade-right.bd-btm{
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.history-timeline {
  position: relative;
}

.history-timeline::before {
  display: none;
}

/* 연도 블록 */
.timeline-year-block {
  position: relative;
  margin-bottom: 3.75rem;
}

.timeline-year-block:last-child {
  margin-bottom: 0;
}


/* ── timeline dot ── */
.timeline-year-block .history-dot {
  position: absolute;
  width: 2rem;
  height: 2rem;
  top: 0.5rem;
  left: -13.5rem;
  z-index: 10;
  transition: .3s;
}

.timeline-year-block .history-dot i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  border: 2px solid var(--white);
  background-color: var(--color02);
  box-sizing: border-box;
  transition: all 0.3s;
}

.timeline-year-block .history-dot .circle {

  background: rgba(39, 196, 213, 0.20);
  border-radius: 50%;
  animation-fill-mode: both;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: .3s;
}

.timeline-year-block.active .history-dot i {
  border: 2px solid var(--color27);
  background-color: var(--white);
}

.timeline-year-block.active .history-dot .circle {
  animation: history-circle 3s cubic-bezier(1, 2, 0.66, 3) infinite;
}

.timeline-year-block .history-dot .circle:nth-child(2) {
  animation-delay: 0.8s;
}

.timeline-year-block .history-dot .circle:nth-child(3) {
  animation-delay: 1.6s;
}

@keyframes history-circle {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

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

/* 연도 레이블 */
.year-label {
  margin-bottom: 1.88rem;
  color: var(--white);
  font-size: 1.88rem;
  font-weight: 700;
  line-height: 150%; 
  letter-spacing: -0.04rem;
}

/* 이벤트 목록 */
.year-events {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.year-events li {
  display: flex;
  align-items: baseline;
  /* gap: 1.5rem; */
}

/* 월 표시: 숫자 텍스트 */
.event-month {
  flex-shrink: 0;
  min-width:3.13rem;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  line-height: 150%; 
  letter-spacing: -0.02rem;
}

/* 이벤트 텍스트: 앞에 • 불릿 */
.event-text {
  position: relative;
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.80);
  font-size: 1rem;
  line-height: 150%; 
  letter-spacing: -0.02rem;
  padding-left: 0.94rem;
}

.event-text::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color27);
}

@media (max-width: 1500px) {
  .history-decade-right {
    margin-left: 4.5rem;
  }
  .timeline-year-block .history-dot {
    left: -5.5rem;
  }
}
@media (max-width: 1400px) {

  .decade-title,
  .swiper.history-swiper {
   max-width: 450px;
}
}
@media (max-width: 1200px) {
  .history-decade-wrap {
    grid-template-columns: 1fr;
    padding-block: 3rem;
    gap: 2.5rem;
    padding-left: 20px;
  }

  .history-decade-left {
    padding-right: 0;
  }

  .decade-title-box {
    align-items: center;
  }

  .decade-desc {
    margin-bottom: 4rem;
    text-align: center;
  }

  .decade-title-box {
    position: static;
  }

  .history-list::before,
  .history-list::after {
    left: 1.875rem;
    transform: translateX(0);
  }

  .history-decade-right {
    padding-left: 4.4rem;
    margin-left: 0;
  }

  .timeline-year-block .history-dot {
    left: -6rem;
  }
  .history-decade-wrap:last-child .history-decade-right {
    border-bottom: none;
}
}

@media (max-width: 768px) {
  .history-decade-right {
    padding-left: 1rem;
}
.timeline-year-block .history-dot {
  left: -3.2rem;
}
  .history-lnb ul {
    gap: 0;
  }

  .history-list {
    margin-block: 3rem;
  }

  .history-list::before,
  .history-list::after {
    left: 1.25rem;
  }

  .swiper.history-swiper {
    width: calc(100% - 20px) !important;
  }

  .decade-title {
    font-size: 2.5rem;
  }


  .year-label {
    font-size: 1.375rem;
  }

  .event-text,
  .event-month {
    font-size: 1rem;
  }

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

}

/* 인증현황 */
.certi-list{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 60px 32px;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid  rgba(255, 255, 255, 0.20);
  margin-top: 40px;
  padding: 60px 0;
}
.certi-list li{
  min-width: 0;
  cursor: pointer;
}
.certi-list .thumb{
  position: relative;
  padding: 60px 70px;
  background: #0D0D22;
}
.certi-list .thumb img{
  aspect-ratio: 45/64;
  max-width: 225px;
  width: 100%;
  object-fit: cover;
}

.certi-list .thumb::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(/image/sub/view_icon.png) no-repeat center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 99;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s linear;
}
.certi-list strong{
  display: block;
  margin: 30px 0 20px;
  color: rgba(255, 255, 255, 0.80);
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.02rem;
}
.certi-list h3{
  color: var(--white);
  font-size: 1.38rem;
  font-weight: 600;
  line-height: 140%; 
  letter-spacing: -0.06rem;
  transition: all 0.3s;
  word-break: break-all;
}
.img-popup {
  position: fixed;
  top: calc(50% + 20px);
  left: 50%;
  width: 500px;
  max-height: 800px;
  transform: translate(-50%, -50%);
  z-index: 10000;
  display: none;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px); 
}
.img-popup .btn-close{
  position: absolute;
  right: 0;
  top: -40px;
  z-index: 999;
}
.img-popup img {
  width: 100%;
  display: block;
}

.img-popup-mask {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, .8);
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  opacity: 0;
  cursor: pointer;
}

@media all and (max-width:1400px) {
  .certi-list {
    grid-template-columns: repeat(3, 1fr) ;
  }
}
@media all and (max-width:1024px) {
  .certi-list {
    grid-template-columns: repeat(2, 1fr) ;
  }
  .certi-list .thumb img {
    max-width: none !important;
}
.certi-list .thumb {
  padding: 40px;
}
}
@media all and (max-width:768px) {
  .certi-list {
    grid-template-columns: repeat(1, 1fr) ;
  }
}
@media all and (min-width:768px) {

  .certi-list li:hover .thumb::after {
   opacity: 1;
  }
  .certi-list li:hover h3{
    color: var(--color27);
  }
}

    @media all and (max-width:568px) {
      .img-popup {
        width: calc(100% - 40px);
    }
    }


    .no-result{
      text-align: center;
      color: #F6F6F6;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .certi-list .no-result{
      grid-column: 1 / -1;
    }

    .certi-list:has(.no-result){
      border-top: 0;
      border-bottom: 0;
      padding: 120px 0;
    }

/* 찾아오시는 길 */
.loca iframe{
  width: 100%;
  height: 480px;
}
.faq_list{
  border-top: 1px solid #000;
}
.faq_list li+li{
  border-top: 1px solid #DDD;
}
.faq_list .info{
  padding: 60px 0;
  display: flex;
  align-items: center;
  gap: 80px;
}
.faq_list .sub{
  padding-bottom: 60px;
}
.faq_list .info .left{
  aspect-ratio: 480/320;
  max-width: 480px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.faq_list .info .left img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq_list .tit-wrap{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.faq_list p+p{
  margin-top: 24px;
}
.faq_list p{
  color: #444;
font-size: 1.13rem;
line-height: 100%; 
letter-spacing: -0.04rem;
}
.faq_list span{
  display: inline-block;
  min-width: 80px;
  margin-right: 20px;
  color: #222;
font-size: 1.13rem;
font-weight: 600;
line-height: 100%; 
letter-spacing: -0.04rem;
}

.loca-tag{
  position: relative;
  width: 48px;
height: 48px;
}
.faq_item .og,
.faq_item .hover {
  position: absolute;
  left: 0;
  top: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 기본 상태 */
.faq_item .hover {
  opacity: 1;

  pointer-events: none;
}

.faq_item .og {
  opacity: 0;

}

/* 열렸을 때 (.on) */
.faq_item.on .hover {
  opacity: 0 !important;
  pointer-events: none;
}

.faq_item.on .og {
  opacity: 1 !important;
  pointer-events: auto;
}




/* 보도자료 */
.gal-list{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 60px 30px;
  padding-top: 60px;

}

.gal-list .thumb{
  overflow: hidden;
}
.gal-list .thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gal-list strong{
  color:var(--color27);
  font-size: 16px;
  font-weight: 700;
  line-height: 100%; 
  letter-spacing: -0.32px;
  margin-top: 36px;
  display: block;
}
.gal-list p{
  color:var(--white);
font-size: 1.38rem;
font-weight: 600;
line-height: 150%;
letter-spacing: -0.06rem;
margin: 16px 0;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
transition: all 0.3s;
min-height: 67px;
}
.gal-list .datetime{
  color:var(--white40);
font-size: 1rem;
font-weight: 500;
line-height: 100%; 
letter-spacing: -0.04rem;
}


.gal-list li .thumb {
  position: relative;
  aspect-ratio: 25/18;
  max-width: 518px;
  width: 100%;
  position: relative;
  background: color-mix(in srgb, #fff, transparent 96%);
}

.gal-list li .thumb-inner {
  position: absolute;
  inset: 0;
  scale: .85;
  clip-path: polygon(0% 6%, 100% 6%, 100% 94%, 0% 94%);
  transition: scale .35s ease, clip-path .35s ease;
}

.gal-list li .thumb-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.gal-list li:hover .thumb .thumb-inner {
  scale: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}





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

}

@media all and (max-width:1024px) {
  .gal-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width:768px) {
  .gal-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .gal-list li .thumb {
   max-width: none !important;
  }
}

/* 문의하기 */
.inquiry-wrap{
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
.inquiry-wrap .text-box .slogan {
  white-space: nowrap;

}
.cont-inquiry{
  max-width: 700px;
  width: 100%;
}
.cont-inquiry h3{
  color: var(--white);
  margin-bottom: 48px;
}
.cont-inquiry .col-left strong{
  color: #FFF;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 150%; 
  letter-spacing: -0.04rem;
  display: block;
  margin-bottom: 20px;
}
.cont-inquiry .col-left span{
  color: rgba(255, 255, 255, 0.60);
  font-size: 1.25rem;
  line-height: 150%; 
  letter-spacing: -0.03rem;
}
.cont-inquiry .col-right{
  flex: 1;
}

.form .form__full{
  display: flex;
  flex-direction: column;
}
.form__half{
display: flex;
gap: 30px;
}
.form__half>div{
  flex: 1;
}
.form__tit{
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 100%; 
}
.cont-inquiry .deco{
  color: var(--color27);
}
.form__input{
  padding: 24px 0 48px 0;
  width: 100%;
}
.form__full .form__input select{
  height: 60px;
  padding: 20px;
  width: 100%;
  background: url(/image/common/ar-down.svg) no-repeat 97% 50%;
  outline: none;
  color: #FFF;
  font-size: 1.06rem;
  line-height: 100%;
  background-color: #0D0D22;
}
.form__half .form__input input,
.form__full .form__input input{
  height: 60px;
  padding: 20px;
  background-color: #0D0D22;
  width: 100%;

}

.form select,
.form input{
  outline: none;
}

.form textarea,
.form .form__input input{
  color: var(--white);
  font-size: 1.06rem;
  font-weight: 400;
  line-height: 100%; 
}
.form textarea::placeholder,
.form .form__input input::placeholder{
  color: var(--white40);
  font-size: 1.06rem;
  font-weight: 400;
  line-height: 100%; 
}

  .form textarea{
    resize: none;
    outline: none;
    height: 240px;
    width: 100%;
    padding: 17px 20px;
    background-color: #0D0D22;
  }

  .form__full .w-620{
    display: flex;
    align-items: center;
    max-width: 620px;
    width: 100%;
    gap: 10px;
  }
  
  .agreement h4{
    color: var(--white);
    padding-top: 72px;
  }

  #agreemt{
    background: #0D0D22;
    padding: 20px;
    color:var(--white80);
    font-size: 0.94rem;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    height: 240px;
    margin: 40px 0 24px;
  }

  #agreemt .scroll {
    overflow-y: auto;
    height: 100%;
  }
  #agreemt .scroll::-webkit-scrollbar {
    width: 4px;
  }
  
  #agreemt .scroll::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 50px;
  }
  
  #agreemt .scroll::-webkit-scrollbar-thumb {
    background: var(--white);
  }
  
  #agreemt .scroll ul{
    list-style: disc ;
    padding-left: 40px;
  }
  #agreemt .scroll ol{
    list-style-type: decimal;
    padding-left: 40px;
  }

    #agreemt .scroll ol,
    #agreemt .scroll ul{
    padding-left: 20px;
  }
    #agreemt .scroll ol li,
    #agreemt .scroll ol,
    #agreemt .scroll ul,
    #agreemt .scroll ul li{
    list-style: disc !important; 
    }
  .chk input[type="checkbox"] {
    display: none;
  }

  .chk input[type="checkbox"]+label {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: var(--white);
    font-size: 0.94rem;
    line-height: 100%;
  }

  .chk input[type="checkbox"]+label::before {
    content: "";
    display: flex;
    width: 24px;
    height: 24px;
    background: url(/image/common/uncked-icon.svg)no-repeat center;
    transition: all 0.2s;
  }

  .chk input[id="agree01"]:checked+label::before {
    background: url(/image/common/cked-icon.svg)no-repeat center;
  }

  .file-box {
    display: flex;
    gap: 10px;
  }
  
  .file-box .file-name {
    flex: 1;
  }
  
  .file-box .file-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid var(--color27);
    background: var(--color27);
    cursor: pointer;
    white-space: nowrap;
    color: var(--white);
    font-size: 1.06rem;
    font-weight: 500;
    line-height: 100%;
    width: 130px;
  }
  
  .file-box .file-hidden {
    display: none;
  }

  .cont-inquiry .btn-area{
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.btn-submit{
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 81px;
  background: var(--color02);
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.72px;
  padding: 21px 70px;
}

@media all and (max-width: 1200px) {
  .inquiry-wrap {
    flex-direction: column;
    gap: 80px;
}
.content .inquiry-wrap .text-box{
  margin-bottom: 0px !important;
}
.content .inquiry-wrap .title-box{
  margin-bottom: 0px !important;
}
.cont-inquiry {
  max-width: unset !important;
}
}


/* K02 기술 */

.sub-intro-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.sub-intro-list li:last-child {
  grid-column: 1 / -1;
}
.sub-intro-list li{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 80px 60px;
  overflow: hidden;
}
.sub-intro-list li .outline-btn{
  margin-left: auto;
}
.sub-intro-list li .thumb{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.sub-intro-list li .thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub-intro-list li .txt{
  position: relative;
  z-index: 5;
}
.sub-intro-list li .txt h2{
  color: #FFF;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 140%;
  letter-spacing: -0.05rem;
  margin-bottom: 1.5rem;
}
.sub-intro-list li .txt p{
  color: rgba(255, 255, 255, 0.80);
  font-size: 18px;
  font-weight: 600;
  line-height: 140%; 
  letter-spacing: -0.36px;
  margin-bottom: 50px;
}
.sub-intro-list li .txt .outline-btn{
  margin-left: auto;
}

@media all and (max-width: 1500px) {
  .sub-intro-list li .txt h2 {
    font-size: 2.2rem;
  }
  
}


@media all and (max-width: 1300px) {
  .sub-intro-list li {
    padding: 40px;
  }
  .sub-intro-list li .txt h2 {
    font-size: 2.0rem;
  }
}

@media all and (max-width: 1024px) {
  .sub-intro-list {
    grid-template-columns: repeat(1, 1fr);
}

.sub-intro-list li .txt h2 {
  font-size: 1.7rem;
}
}




/* 입증된 방호 기술 */
.flex-wrap{
  display: flex;
  gap: 88px;
}

.flex-wrap .col-right{
  min-width: 0;
  width: 100%;
}
.flex-wrap .col-left{
  position: sticky;
  top: 200px;
  max-width: 344px;
  width: 100%;
  height: 100%;
}

.flex-wrap .col-left .slide-tab a.active::after{
  background-color: #fff;
}
.flex-wrap .col-left .slide-tab a.active{
  background: var(--color27);
}

@media all and (max-width: 1400px) {
  .flex-wrap .col-left {
    max-width: 270px;
  }
}

@media all and (max-width: 1024px) {
  .flex-wrap .col-left {
    display: none;
  }
}



.cont-certi-tech + .cont-certi-tech{
  margin-top: 160px;
}
@media all and (max-width: 768px) {
  .cont-certi-tech + .cont-certi-tech{
    margin-top: 120px;
  }
}

.spec-list {
  margin-top: 80px;
}
.spec-list>li {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.spec-list>li+li{
  margin-top: 40px;
}
.spec-list li strong{
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
  line-height: 140%; 
  letter-spacing: -0.04rem;
}
.spec-list li p{
  color: var(--color27);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 160%; 
  letter-spacing: -0.03rem;
  padding: 16px 0 24px;
}
.dot-list li{
  position: relative;
  padding-left: 12px;
  color:  rgba(255, 255, 255, 0.80);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: -0.02rem;
}
.dot-list.white li{
  color: #fff;
}
.dot-list li.ml15{
  margin-left: 15px !important;
  color:  rgba(255, 255, 255, 0.80) !important;
}
.dot-list li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 4px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.40);
}

.main-tech-list.type02>li.on {
  width: 40%;
}
.main-tech-list.type02>li>a {
  height: 520px;
}

@media all and (max-width: 1300px) {
  .main-tech-list.type02>li>a {
    height: 620px;
}


}




.step-list{
  margin-top: 80px;
}

.step-list .step-item{
  display: flex;
  gap: 150px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.step-list .title{
  color: var(--color27);
  font-size: 32px;
  font-weight: 700;
  line-height: 140%; 
  letter-spacing: -0.64px;
  min-width: 280px;
  padding: 30px 0;
}
.step-list .step-item>ul{
  width: 100%;
  overflow-x: auto;
}
.step-list .step-item>ul>li.bd-top{
  border-top: 1px solid rgba(255, 255, 255, 0.20);
}
.step-list .step-item>ul>li{
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 140%; 
  letter-spacing: -0.03rem;
  padding: 30px 0;
}
.step-list .step-item>ul>li.has-dot{
  padding: 30px 0 24px !important;
}
.step-list .dot-list {
  padding-bottom: 30px;
}
.step-list .dot-list.type02{
  padding-bottom: 32px !important;
}

.step-list .step-item>ul>li+li{
  border-top: 1px solid rgba(255, 255, 255, 0.20);
}


@media all and (max-width: 1400px) {
  .main-tech-list>li>a .box-open {
    padding: 40px;
}
.main-tech-list>li>a .box-open h4 {
  font-size: 2.0rem;
}
.main-tech-list .dot-list li {
  font-size: 1.25rem;
}
}

@media all and (max-width: 1100px) {
  .main-tech-list.type02{
    display: none;
  }
  .step-list .step-item {
    flex-direction: column;
    gap: 0;
  }
  .step-list {
  margin-top: 40px;
}
.content .text-box {
  margin-bottom: 40px;
}

}
@media all and (max-width: 768px) {
  .step-list .step-item>ul>li {
    font-size: 1.3rem;
}
.step-list .title {
  padding: 60px 0 40px;
  font-size: 26px;
}

.spec-list li strong {
  font-size: 1.8rem;
}
.spec-list li p {
  font-size: 1.3rem;
}

}
@media all and (max-width: 460px) {
  .spec-list li strong {
    font-size: 1.6rem;
  }

}




/* 자체 역량 M&S, 최적 설계 */
.ms-step-list{
  display: flex;
}

.ms-step-list li{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #0D0D22;
  padding: 80px 0;
  transition: all 0.3s;
}
.ms-step-list li span{
  color:  rgba(255, 255, 255, 0.80);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 160%; 
  letter-spacing: -0.03rem;
}
.ms-step-list li strong{
  color: var(--white);
  text-align: center;
  font-size: 1.44rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.03rem;
}

.ms-step-list li.active{
  background-color: var(--color27);
}

.step-list.type02 .step-item>ul>li {
  color: #FFF;
  font-size: 2rem;
  font-weight: 500;
  line-height: 140%; 
  letter-spacing: -0.04rem;
  padding: 40px 0;
}
.img-grid02{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
  padding-bottom: 40px;
}
.img-grid03{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  padding-bottom: 40px;
}
.img-grid03 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-grid04{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  padding-bottom: 40px;
}

@media all and (max-width: 1100px) {
  .step-list.type02 .title {
    padding: 60px 0 0px;
}
}
@media all and (max-width: 1024px) {
  .ms-step-list {
    flex-direction: column;
  }
  .ms-step-list li {
    padding: 60px 0;
}
}

@media all and (max-width: 768px) {
  .img-grid04,
  .img-grid03,
  .img-grid02 {
    gap: 20px;
    grid-template-columns: repeat(2,1fr);
}
}


/* 테스트 수행 능력 */

.step-list.type02 .step-item>ul>li strong{
  color: #FFF;
  font-size: 2rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.04rem;
}
.step-list.type02 .step-item>ul>li p{
  color:  #27C4D5;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.03rem;
  margin-top: 16px;
}




/* 개발 및 공급 실적 */
.supply-list{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
}

.supply-list>li{
  padding: 40px;
  background:#0D0D22;
  min-width: 0;
}

.supply-list>li p{
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 150%; 
  letter-spacing: -0.03rem;
}

.supply-list>li .dot-list{
  margin-top: 24px;
}

.title-box .desc{
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.03rem;
}
@media all and (max-width: 768px) {
  .title-box .desc{
    font-size: 1.3rem;
  }
  .flex-wrap .col-left {
    display: none;
  }
  .app-list{
    grid-template-columns: repeat(1,1fr) !important;
  }
  .supply-list{
    grid-template-columns: repeat(1,1fr);
  }
  .img-grid03 li.full {
    grid-column: 1 / -1;
  }
}
@media all and (max-width: 620px) {
  .supply-list>li {
    padding: 30px;
}
.supply-list>li p {
  font-size: 1.3rem;
}
}
/* K03 차량 */

/* 군용차량 */
.certi-slide .swiper-slide{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  background: #0D0D22;
  padding: 48px;
  aspect-ratio: 1 / 1;

}
.certi-slide .swiper-slide p{
  color:#FFF;
  font-size: 1.38rem;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.03rem;
  width: 100%;
  margin-top: auto;
}

.certi-slide {
  padding-bottom: 160px !important; 
}
.certi-slide .swiper-wrapper{
  margin-bottom: 80px;
}

.certi-slide .swiper-scrollbar {
  position: static !important;
  height: 2px;
  background: #0D0D22;
  max-width: 1632px;
  width: 100%;
  margin: 0 auto;
  border-radius: 0;
}

.certi-slide .swiper-scrollbar-drag {
  background: var(--color27);
  border-radius: 0;
}



.sub-tab{
  display: flex;
}

.sub-tab button{
  flex: 1;
  background-color: #0D0D22;
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.44px;
  padding: 25px 0;
  transition: all 0.3s;
}

.btn-tab{
  display: flex;
  background-color: #fff;
  padding: 8px;
}
.btn-tab button{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px;
  color: #AAA;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%; 
  letter-spacing: -0.36px;
  transition: all 0.3s;
}
.btn-tab button.active{
  color: var(--white);
  background-color: var(--color27);
}
.sub-tab button.active{
  background-color: var(--color27);
  }
/* .point-part */


.point-part .car-main{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.point-part .btn-tab{
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: calc(100% - 50px);
}
.point-part{
  position: relative;
}
.point-part .dot_mark {
  position: absolute;
  z-index: 10;
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  animation-fill-mode: both;
  transition: transform 0.3s ease;
  transform-origin: center center;
  opacity:1;
  width: 1.8rem;
  height: 1.8rem;
  transition: .3s;
  cursor: pointer;
}
.point-part .dot_mark  i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color27);
  box-sizing: border-box;
  transition: all 0.3s;
  will-change: width, height;
}

.point-part .dot_mark .circle {
  background: rgba(39, 196, 213, 0.60);
  border-radius: 50%;
  animation-fill-mode: both;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  animation: history-circle 4s cubic-bezier(1, 2, 0.66, 3) infinite;
  will-change: transform;
}
.point-part .dot_mark.active .circle {
  transform: scale(3);
}

.point-part .dot_mark .thumb{
  transition: transform 0.3s ease;
  transform-origin: center center;
  opacity: 0;
  transition: all 0.3s;
}
.point-part .dot_mark.active .thumb{
  position: relative;
  z-index: 20;
  opacity: 1;
}
.point-part .dot_mark.active .thumb{
  opacity: 1;
}
.point-part .dot_mark.active  i {
  width: 40px;
  height: 40px;
}
.point-part .dot_mark .circle:nth-child(2) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.point-part .dot_mark .circle:nth-child(3) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.point-part .dot_mark .circle:nth-child(4) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.point-part .dot_mark .circle:nth-child(5) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

@keyframes history-circle {
  0% {
    transform: scale(0);
    opacity: 0.0;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    transform: scale(var(--scale-end, 1));
    opacity: 0;
  }
}
.point-part .dot_mark.active .circle {
  --scale-end: 2.5;
}

/* t01 */
.point-part .dot_mark.pt01{
  top: 47.88%;
  left: 43.83%;
  transform: translate(-43.83%, -47.88%);
}
.point-part .dot_mark.pt02{
  top: 34.39%;
  left: 61.75%;
  transform: translate(-61.75%, -34.39%);
}
/* t02 */
.point-part .dot_mark.pt03{
  top: 50.30%;
  left: 43.83%;
  transform: translate(-43.83%, -50.30%);
}

.point-part .dot_mark.pt04{
  top: 73.79%;
  left: 39.33%;
  transform: translate(-39.33%, -73.79%);
}
.point-part .dot_mark.pt05{
  top: 63.18%;
  left: 57.67%;
  transform: translate(-57.67%, -63.18%);
}
.point-part .dot_mark.pt06{
  top: 62.12%;
  left: 61.83%;
  transform: translate(-61.83%, -62.12%);
}
.point-part .dot_mark.pt07{
  top: 53.18%;
  left: 70.92%;
  transform: translate(-70.92%, -53.18%);
}
/* t03 */
.point-part .dot_mark.pt08{
  top: 58.33%;
  left: 27.75%;
  transform: translate(-27.75%, -58.33%);
}
/* t04 */
.point-part .dot_mark.pt09{
  top: 49.70%;
  left: 48.83%;
  transform: translate(-48.83%, -49.70%);
}





/* 차륜형 */
/* t01 */
.point-part .dot_mark.pt10{
  top: 43.33%;
  left: 41.33%;
  transform: translate(-41.33%, -43.33%);
}
.point-part .dot_mark.pt11{
  top: 26.82%;
  left: 62.75%;
  transform: translate(-62.75%, -26.82%);
}
/* t02 */
.point-part .dot_mark.pt12{
  top: 63.18%;
  left: 30.17%;
  transform: translate(-30.17%, -63.18%);
}
.point-part .dot_mark.pt13{
  top: 47.27%;
  left: 41.33%;
  transform: translate(-41.33%, -47.27%);
}
.point-part .dot_mark.pt14{
  top: 55.61%;
  left: 54.33%;
  transform: translate(-54.33%, -55.61%);
}
.point-part .dot_mark.pt15{
  top: 53.03%;
  left: 61.83%;
  transform: translate(-61.83%, -53.03%);
}
.point-part .dot_mark.pt16{
  top: 42.58%;
  left: 67.58%;
  transform: translate(-67.58%, -42.58%);
}
/* t03 */
.point-part .dot_mark.pt17{
  top: 57.88%;
  left: 28.08%;
  transform: translate(-28.08%, -57.88%);
}
/* t04 */
.point-part .dot_mark.pt18{
  top: 46.06%;
  left: 31.67%;
  transform: translate(-31.67%, -46.06%);
}




@media all and (min-width:768px) {
  .btn-tab button:hover{
    color: var(--white);
    background-color: var(--color27);
  }
  .sub-tab button:hover{
    background-color: var(--color27);
    }
}


/* 레이어팝업 */


.layer-popup {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}

.layer-popup.active {
  display: flex;
}

.popup-inner {
  
  background: #0D0D22;
  width: 1000px;
  padding: 48px;
  position: relative;
}

.popup-item {
  display: none;
}

.popup-item.active {
  display: block;
}

.popup-item h2{
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
  line-height: 100%; 
  letter-spacing: -0.04rem;
}
.popup-item strong{
  color: var(--color27);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.03rem;
  display: block;
  margin: 16px 0 24px;
}



.layer-popup .close-now {
  top: 48px;
  right: 48px;
  cursor: pointer;
}


.spec-list.type02>li {
    padding-bottom: 0px;
    border-bottom: none;
}
.spec-list.type02 .dot-list  li{
  padding-left: 0;
}
.spec-list.type02 .dot-list  li::before{
   display: none;
}

.spec-list.grid02{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 0 40px;
  margin-top: 40px;
} 
.spec-list.grid02>li {
  padding-top: 40px;
  padding-bottom: 24px;
}
.spec-list.grid02>li+li {
  margin-top: 0;
}




@media all and (max-width: 768px) {
  .spec-list.grid02 {
    grid-template-columns: repeat(1, 1fr);
}
}





@media all and (max-width: 1610px) {
  .flex-wrap.type02 .col-left{
    display: none;
  }
  .point-part .btn-tab {
    width: calc(100% - 50px) !important;
    max-width: none !important;
}
/* .cont-certi-tech .flex>div {
  flex: inherit !important;
} */
.certi-slide .swiper-scrollbar {
max-width: none !important;
width: calc(100% - 40px) !important;
}

}



@media all and (max-width: 1300px) {
  .cont-certi-tech .flex>div {
    flex: 1 !important;
  }
}
@media (max-width: 1024px) {
  
  .btn-tab {
    position: relative; 
    display: flex !important;
    flex-direction: column-reverse;
    width: 100%; 
    z-index: 10;
    overflow: hidden;
    height: auto;
    max-height: 80px;
    min-height: 80px !important;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .btn-tab.open {
    max-height: 500px;
  }

  .btn-tab button {
    width: 100%;
    background: #fff;
    font-size: 20px; 
    font-weight: 600;
    color: #aaa;
    cursor: pointer;
    border: none;
    outline: none;
    padding: 0 32px;
    height: 64px;
    min-height: 64px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    font-size: 1.06rem;
    visibility: hidden;
    pointer-events: none;
    order: 2;
    transition: opacity 0.2s ease, visibility 0.2s ease, background 0.2s;
  }

  .btn-tab button::after {
    content: "";
    width: 4px;
    height: 4px;
    border: 2px solid var(--color27);
    border-radius: 50%;
    background: transparent;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
  }

  .btn-tab button.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    order: 1;
    background: #21b2c6;
  }

  .btn-tab button.active::after {
    background: var(--white);
    border: 2px solid var(--white);
  }

  .btn-tab.open button {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media all and (max-width: 860px) {
  
}
@media all and (max-width: 768px) {
  .popup-item h2 {
    font-size: 1.5rem;
}
.popup-item strong {
  font-size: 1.2rem;
}
.btn-tab button {
  font-size: 14px !important;
}
}
@media all and (max-width: 500px) {
  .certi-slide .swiper-slide {
    padding: 30px;
  }
  .certi-slide .swiper-slide p {
    font-size: 1rem;
}
}





/* 민수차량 */


.g-thumb{
  display: flex;
  justify-content: flex-end;
}

.cont-certi-tech .desc{
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
  line-height: 100%; 
  letter-spacing: -0.04rem;
  margin-bottom: 60px;
}
.cont-certi-tech .desc p:not(.sub){
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
  line-height: 140%; 
  letter-spacing: -0.04rem;
}
.cont-certi-tech .desc p.sub{
  color: var(--white80);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 140%; 
  letter-spacing: -0.03rem;
  margin-top: 16px;
}


.cont-certi-tech .flex{
  display: flex;
}
.cont-certi-tech .flex>div{
  flex: 1;
  align-items: stretch;
}
.cont-certi-tech .flex .thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cont-certi-tech .grdnt-step .step{
  position: relative;
  padding: 32px;
}
.cont-certi-tech .grdnt-step .step::before{
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--color27);
}
.cont-certi-tech .grdnt-step .step strong{
  position: relative;
  z-index: 5;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  line-height: 140%; 
  letter-spacing: -0.4px;
}
.cont-certi-tech .grdnt-step .step:nth-child(1)::before{opacity: 0.18;}
.cont-certi-tech .grdnt-step .step:nth-child(2)::before{opacity: 0.36;}
.cont-certi-tech .grdnt-step .step:nth-child(3)::before{opacity: 0.54;}
.cont-certi-tech .grdnt-step .step:nth-child(4)::before{opacity: 0.72;}
.cont-certi-tech .grdnt-step .step:nth-child(5)::before{opacity: 0.9;}
.cont-certi-tech .grdnt-step .step:nth-child(6)::before{opacity: 1;}

.cont-certi-tech .grdnt-step .step .dot-list{
  padding-top: 10px;
}

.unit-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
  border-top: 1px solid #27C4D5;
}
.unit-grid.type02{
  grid-template-columns: repeat(2,1fr);
  margin-top: 80px;
}
.unit-grid.type02 .con {
  padding: 0px !important;
}
.unit-grid .unit-item {
  border-right: 1px solid rgba(255, 255, 255, 0.20);
}


@media all and (max-width: 1024px) {
  .cont-certi-tech .flex {
    flex-direction: column;
  }
  .unit-grid {
    grid-template-columns: repeat(1, 1fr);
}
.unit-grid:not(.type02) .unit-item{
  border-right: none !important;
}
.popup-inner {
  width: calc(100% - 40px);
}
.layer-popup .close-now {
  top: 55px;
}













}

@media all and (max-width: 768px) {
  .unit-grid.type02{
    grid-template-columns: repeat(1,1fr);
  }
  
.unit-grid.type02 .unit-item:nth-child(1n) {
  border-right: none;
}
.unit-grid.type02 .con {
  padding: 0px 60px 0px;
}
}


.unit-grid.type02 .unit-item:nth-child(2n) {
  border-right: none;
}
.unit-grid .unit-item:nth-child(3n) {
  border-right: none;
}
.unit-grid .unit-item{
  display: flex;
  flex-direction: column;
}
.unit-grid .unit-item .con{
  flex: 1;
}
.unit-grid .title{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 26px 0;
background: #0D0D22;
text-align: center;
color:  #fff;
font-size: 15px;
font-weight: 700;
line-height: 100%;
letter-spacing: -0.4px;
border-top: 1px solid rgba(255, 255, 255, 0.20);
border-bottom: 1px solid  rgba(255, 255, 255, 0.20);
}
.unit-grid .badge{
  display: inline-block;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background:  #fff;
  color: #000016;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.32px;
}
.unit-grid .badge.active{
  background:  #27C4D5;
  color: #fff;
}
.unit-grid .con{
  padding: 0px 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start
}
.unit-grid .thumb{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 215px;
}

@media (min-width: 1611px) {
  #busi030204 table,
  #busi020104 table{
    max-width: 1200px;
  }
  #busi020103 {
    max-width: 1200px;
    width: 100%;
  }
}



 .form-table.type02 tbody td{
  padding: 24px 20px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.36px;
}
 .form-table.type02 th{
  padding: 26px 0 !important;
 
}

 .form-table.type02 th{
  font-size: 20px;
  font-weight: 700;
  line-height: 140%; 
  letter-spacing: -0.4px;
}






@media all and (max-width: 768px) {
  #busi020204 .form-table tbody td,
  #busi020104 .form-table tbody td{
  padding: 18px 15px!important;
}
#busi020204 .form-table th,
#busi020104 .form-table th{
  padding: 18px 15px!important;
 
}
#busi020204 .form-table tbody td,
#busi020104 .form-table tbody td,
#busi020204 .form-table th,
#busi020104 .form-table th{
  font-size: 16px;
}

}

/* busi0202 */
.video-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
  align-items: stretch;
}

.video-grid .item{
  overflow: hidden;
  height: 100%;
  cursor: pointer;
}
.video-grid .item.playing .thumb video{
  cursor: default;
}
.video-grid .con{
  padding: 40px 36px;
  background:  #0D0D22;
  height: 100%;
}
.video-grid .con .title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.video-grid .con .title h3{
  color: #FFF;
font-size: 24px;
font-weight: 700;
line-height: 140%;
letter-spacing: -0.48px;
}
.video-grid .con p{
  color: rgba(255, 255, 255, 0.80);
  font-size: 18px;
  font-weight: 400;
  line-height: 140%; 
  letter-spacing: -0.36px;
  min-height: 50px;
}
.btn-thumb{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
background: var(--color27);
transition: all 0.3s;
}


.video-grid .thumb{
  position: relative;
  aspect-ratio: 600 / 400;
  /* max-width: 580px; */
  width: 100%;
}
.video-grid .thumb img,
.video-grid .thumb video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-grid .thumb img {
  opacity: 1;
  transition: opacity .3s;
}
.video-grid .thumb img.click{
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.video-grid .thumb video {
  display: block;
  min-width: 580px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.video-grid .item.playing .thumb img {
  opacity: 0;
}

.video-grid .item.playing  img.click,
.video-grid .item.playing .thumb video {
  opacity: 1;
  pointer-events: auto;
}

.vd-pz {
  display: none;
}

.video-grid .item.playing .vd-play {
  display: none;
}

.video-grid .item.playing .btn-thumb{
  background: var(--white);
}
.video-grid .item.playing .vd-pz {
  display: block;
}
#busi020202 .step-list .title {
  min-width: 200px;

}
#busi020202 .step-list .step-item {
gap: 0;
}

.ms-step-list.type02 li{
  padding: 52px 20px !important;
}

.ms-step-list.type02 li span{
  font-size: 1.13rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.02rem;
}
.ms-step-list.type02 li strong{
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 150%; 
  letter-spacing: -0.03rem;
}


.vi-prt-list{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.vi-prt-list li{
  display: flex;
}
.vi-prt-list li .thumb{
  max-width: 540px;
  width: 100%;
}
.vi-prt-list li .thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vi-prt-list li .txt{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  background-color: #0D0D22;
  padding: 84px 60px;
}
.vi-prt-list li .txt h3{
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 100%; 
  letter-spacing: -0.03rem;
}
.vi-prt-list li .txt p{
  color: rgba(255, 255, 255, 0.80);
  font-size: 1.13rem;
  font-weight: 400;
  line-height: 160%; 
  letter-spacing: -0.02rem;
}

.capt{
  color:  rgba(255, 255, 255, 0.80);
  font-size: 1.13rem;
  font-weight: 400;
  line-height: 160%; 
  letter-spacing: -0.02rem;
  margin-top: 40px;
}




@media all and (max-width: 1300px) {
  .vi-prt-list li .txt {
    min-width: 650px;
  }
}
@media all and (max-width: 1024px) {
  .vi-prt-list li {
    display: flex;
    flex-direction: column;
}
.vi-prt-list li .thumb {
  max-width: none !important;
}
.vi-prt-list li .txt {
  min-width: unset !important;
}
}
@media all and (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
}
}
@media all and (max-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(1, 1fr);
}

.ms-step-list {
  display: flex;
  flex-direction: column;
}
.video-grid .con .title h3 {
  font-size: 20px;
}
.vi-prt-list li .txt {
  padding: 40px 20px;
}
}








/* busi_0401 */

.spec-list.type03 li strong{
  color: #fff;
font-size: 28px;
font-weight: 700;
line-height: 140%;
letter-spacing: -0.56px;
}
.spec-list.type03 li p{
  color:  rgba(255, 255, 255, 0.80) !important;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.4px;
  padding: 24px 0 0 !important;
}

.app-list{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
}
.app-list li .txt{
padding: 36px;
background:  #0D0D22;
color: #FFF;
font-size: 24px;
font-weight: 700;
line-height: 100%; 
letter-spacing: -0.48px;
}
@media all and (max-width:768px) {
    .app-list li .txt {
      font-size: 20px;
      line-height: 140%;
  }
}

/* busi_0407 */

.form-table.type02 thead th {
  padding: 26px 20px;
  font-size: 20px;
  font-weight: 700;
}

.form-table.type02 tbody td {
  padding: 26px 15px;
  color:  rgba(255, 255, 255, 0.80);
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%; 
  letter-spacing: -0.36px;
}


.title-area{
  margin-top: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
  background: #0D0D22;
  border-top: 2px solid var(--color27);
}
.title-area>*{
  color:#FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%; 
  letter-spacing: -0.4px;
  padding: 0px 20px;
}
.busi-item span:not(.title){
  text-align: center;
   line-height: 140%;
   word-break: break-all;
}
.title-area,
.busi-item {
  display: grid;
  grid-template-columns:240px 1fr 1fr;
  align-items: center;
  padding: 26px 0px;
  border-bottom: 1px solid #414141;
  text-align: center;
}
.busi-item>*{
  color:  rgba(255, 255, 255, 0.80);
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 100%; 
  letter-spacing: -0.36px;
  padding: 0px 20px;
}





.sub-4depth-list.type02{
  background: none;
  display: grid;
  grid-template-columns: repeat(11,1fr);
  margin-bottom: 25px;
  gap: 15px;
}
.sub-4depth-list.type02 li{
  min-width: 112px;
}
.layer{
  position: relative;
  border-top: 1px solid #CECECE;
  margin-bottom: 85px;
}
.layer button{
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  border: 1px solid #CECECE;
  background: #FFF;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%; 
  letter-spacing: -0.64px;
  padding: 7px 60px;
}

@media (max-width: 1700px) {
  .sub-4depth-list.type02 {
    background: none;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 768px) {
  .sub-4depth-list.type02{
    display: flex;
  }
  .layer {
    display: none;
  }
  .need-scroll{
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .title-area,
  .busi-item {
    grid-template-columns:120px 1fr 1fr;
  }
  .need-scroll::-webkit-scrollbar {
    height: 5px;
  }

  .need-scroll::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 50px;
  }

  .need-scroll::-webkit-scrollbar-thumb {
    background-color: var(--white);
    border-radius: 100px;
  
  }
  .content.min-h{
    min-height: 1100px !important;
  }
  .sub-4depth-list.type02 {
   
    background-color: #F6F6F6 !important;
  }
}

@media (max-width: 460px) {
  .title-area,
  .busi-item {
    grid-template-columns:80px 1fr 1fr;
  }
}

.privacy-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  color:  #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.32px;
  margin-bottom: 60px;
  margin-top: 120px;
}

.privacy-select select {
  height: 50px;
  width: 240px;
  padding: 0 20px;
  background-image: url(/image/common/select_arrow_white.png);
  background-position: center right 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  color: #FFF;
  background-color: #0D0D22;
}

.privacy-desc {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%; 
  letter-spacing: -0.4px;
  margin-bottom: 80px;
}

.accordion-wrap {
  border-top: 1px solid #27C4D5;
}
.accordion-wrap .accordion-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 60px;
  gap: 25px;
  cursor: pointer;
}
.accordion-wrap .accordion-head p {
  color:  #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 140%; 
  letter-spacing: -0.03rem;
}
.accordion-wrap .accordion-head .icon{
  margin-left: auto;
}
.accordion-wrap .accordion-head.on i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.accordion-wrap .accordion-desc {
  background: #0D0D22;
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
  padding: 60px;
  display: none;
  color: #FFF;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
}
.accordion-wrap .accordion-desc li h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.accordion-wrap .accordion-desc li p {
  color: #434343;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6em;
}
.accordion-wrap .accordion-desc li:not(:last-child) {
  margin-bottom: 35px;
}

@media (max-width: 640px) {
  .accordion-wrap .accordion-desc,
  .accordion-wrap .accordion-head {
    padding: 20px 25px !important;
  }
  .accordion-wrap .accordion-head p {
    font-size: 17px;
  }
  .accordion-wrap .accordion-desc {
    font-size: 15px;
  }
}

@media (max-width: 460px) {
  .privacy-select {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
  }
}








.video-thumb{
  width: 100%;
height: 720px;
}
.video-thumb video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.step-item .flex-wrap{
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .video-thumb{
    height: 500px;
  }
}
@media (max-width: 768px) {
  .video-thumb{
    height: 400px;
  }
  .step-item .flex-wrap{
    gap: 20px;
  }
}



.img-thumb{
  margin-bottom: 40px;
}
.main-tech-list.type02 a{
  cursor: auto;
}