/* 종합 컨설팅 */
#consolting {
  width:100%;
  display:flex;
  justify-content: space-between;
  margin-top:140px;
  position:relative;
}
.con_left {
  width:25%;
  position:sticky;
  align-self: flex-start;
  height:auto;
  top:32px;
}
.con_category > li > a {
  font-size:26px;
  font-weight: 700;
  color:var(--color-cc);
  cursor: pointer;
  transition: .3s;
}
.con_category > li.choice a {
  color:black;
}
.con_category > li:not(:first-of-type) {
  padding-top:36px;
}
.con_category > li:not(.choice):hover a {
  color:#999;
}

/* right */
.con_right {
  width:75%;
}
.round_title8 {
  padding-left:8px;
}


/**/
/**/
/**/
/* start */
.aftercare_container {
  width:100%;
  display:flex;
  gap:24px;
  flex-wrap:wrap;
}
.ac_box {
  width:48.8%;
  padding:52px 42px;
  border-radius: 20px; 
  color:white;

  background-color:black;
  background-position: center;
  background-size:cover;
  transition:.3s;

  position:relative;
  overflow:hidden;
}
.ac_overlay {
  position:absolute;
  width:100%;
  height:100%;
  top:0;left:0;
  background-color:black;
  opacity: 0.1;
  transition:.3s;
}
.ac_overlay_text {
  position:relative;
  z-index:2;
}
.ac_box:hover .ac_overlay {
  opacity:1;
  cursor: pointer;
}
.ac_box:hover .ac_overlay_text {
  cursor: pointer;
}
.ac_box:hover h2 {
  color:#2cbd2c;
}
.acBox1 {
  background-image:url("../images/afterCare_list1.png");
}
.acBox2 {
  background-image:url("../images/afterCare_list2.png");
}
.acBox3 {
  background-image:url("../images/afterCare_list3.png");
}
.acBox4 {
  background-image:url("../images/afterCare_list4.png");
}
.acBox5 {
  background-image:url("../images/afterCare_list5.png");
}
.acBox6 {
  background-image:url("../images/afterCare_list6.png");
}
.acBox7 {
  background-image:url("../images/afterCare_list7.png");
}
.ac_box h2 {
  font-size:26px;
  font-weight: 700;
  transition:.3s;
}

/*  li */
.ac_box .liDot {
  color:white;
  margin-top:80px;
}
.ac_box .liDot > li {
  display:flex;
  margin-top:8px;
  font-weight: 400;
  word-break: keep-all;
}
.ac_box .liDot > li::before {
  content: "";
  display:block;
  width:4px;
  height:4px;
  border-radius: 90px;
  background-color:white;
  margin-top:9px;
  margin-left:6px;
  margin-right:12px;
}

/* 태블릿 (769px ~ 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #consolting {
    margin-top: 100px !important;
    gap: 30px !important;
  }
  
  .con_left {
    width: 28% !important;
  }
  
  .con_category > li > a {
    font-size: 22px !important;
  }
  
  .con_category > li:not(:first-of-type) {
    padding-top: 28px !important;
  }
  
  .con_right {
    width: 72% !important;
  }
  
  .aftercare_container {
    gap: 20px !important;
  }
  
  .ac_box {
    width: 48.5% !important;
    padding: 40px 30px !important;
  }
  
  .ac_box h2 {
    font-size: 22px !important;
  }
  
  .ac_box .liDot {
    margin-top: 60px !important;
  }
  
  .ac_box .liDot > li {
    font-size: 14px !important;
    margin-top: 6px !important;
  }
}

/* 모바일 (max-width: 768px) */
@media screen and (max-width: 768px) {
  #consolting {
    flex-direction: column !important;
    margin-top: 80px !important;
    gap: 40px !important;
  }
  
  .con_left {
    width: 100% !important;
    position: static !important;
    top: auto !important;
  }
  
  .con_category {
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
  }
  
  .con_category > li > a {
    font-size: 20px !important;
  }
  
  .con_category > li:not(:first-of-type) {
    padding-top: 0 !important;
  }
  
  .con_right {
    width: 100% !important;
  }
  
  .aftercare_container {
    flex-direction: column !important;
    gap: 20px !important;
  }
  
  .ac_box {
    width: 100% !important;
    padding: 30px 25px !important;
  }
  
  .ac_box h2 {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }
  
  .ac_box .liDot {
    margin-top: 40px !important;
  }
  
  .ac_box .liDot > li {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-top: 6px !important;
  }
  
  .ac_box .liDot > li::before {
    margin-top: 7px !important;
  }
}

/* 소형 모바일 (max-width: 375px) */
@media screen and (max-width: 375px) {
  #consolting {
    margin-top: 60px !important;
    gap: 30px !important;
  }
  
  .con_category {
    gap: 20px !important;
  }
  
  .con_category > li > a {
    font-size: 18px !important;
  }
  
  .aftercare_container {
    gap: 15px !important;
  }
  
  .ac_box {
    padding: 25px 20px !important;
  }
  
  .ac_box h2 {
    font-size: 18px !important;
  }
  
  .ac_box .liDot {
    margin-top: 30px !important;
  }
  
  .ac_box .liDot > li {
    font-size: 13px !important;
    line-height: 1.4 !important;
    margin-top: 5px !important;
  }
  
  .ac_box .liDot > li::before {
    width: 3px !important;
    height: 3px !important;
    margin-top: 6px !important;
    margin-right: 10px !important;
  }
}