/*-------------------------------------------------

Title       : Sub07
Author      : EASESOFT
Create Date : 2025-09

-------------------------------------------------*/
.c070000 .labeling .box {
  position: relative;
}
.c070000 .labeling .cont_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.c070000 .labeling .img {
  width: 10rem;
  margin: 0 auto;
}
.c070000 .labeling .popup {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 80%;
  padding: 2.4rem;
  border-radius: 1.6rem;
  background: #FFFFFF;
  border: 1px solid #dddddd;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}
.c070000 .labeling .cont_box:hover + .popup {
  opacity: 1;
  visibility: visible;
}
.c070000 .numbering .list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem 2.4rem;
  border: 1px solid #dddddd;
  padding: 4rem;
  margin-top: 2rem;
  border-radius: 1.6rem;
}
.c070000 .numbering .list a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1.6rem;
}
.c070000 .numbering .list i {
  flex: none;
}
.c070000 .numbering .list img {
  width: 5rem;
}
.c070000 .group .title1 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.c070000 .group .title1 i {
  flex: none;
}
.c070000 .group .title1 img {
  width: 5rem;
}

/*-------------------------------------------------

Responsive

-------------------------------------------------*/
/* Media Query */
@media (max-width: 1024px) {
  .c070000 .labeling .img {
    width: 8rem;
  }
  .c070000 .labeling .popup {
    width: 95%;
  }
  .c070000 .numbering .list {
    grid-template-columns: 1fr;
    padding: 3.2rem;
  }
  .c070000 .btn_box .btn {
    white-space: inherit;
    word-break: keep-all;
  }
}