#support .intro_box_2 {
  flex-direction: row;
  justify-content: space-between;
  gap: 60px;
}
#support .intro_box_2::after {
  content: "";
  width: 92px;
  height: 102px;
  aspect-ratio: 1/1;
  background: url(../img/hou_icon.svg) center no-repeat;
  background-size: 100%;
}
#support table .tr_bg_blue {
  background: #F3F9FF;
}
#support img {
  width: auto;
}
#support .support_list_des {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 15px;
  flex-wrap: wrap;
}
#support .support_list_des img {
  width: 100%;
}
#support .support_list_des .support_list_des_box {
  width: calc(33.333% - 10px);
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  align-self: stretch;
  gap: 15px;
  border-radius: 10px;
  border: 1px solid #C2D4E8;
  background: rgba(255, 255, 255, 0.8);
}
#support .support_list_des .support_list_des_box .support_height {
  display: flex;
  align-items: center;
  height: 100px;
}
#support .support_list_des .support_list_des_box > p {
  width: 100%;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  background: #F4F6F8;
  font-size: 1rem;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.54px;
}
#support .support_list_des .support_list_des_box > a {
  display: flex;
  width: 190px;
  height: 40px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  background: #042E6F;
}
#support .support_list_des .support_list_des_box > a .support_btn {
  color: #FFF;
  font-family: "Hakgyoansim Allimjang";
  font-size: 0.89rem;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
}

@media (max-width: 1280px) {
  #support .support_list_des .support_list_des_box {
    width: calc(50% - 10px);
  }
}
@media (max-width: 1023px) {
  #support .intro_box_2::after {
    content: none;
  }
  #support .support_list_des .support_list_des_box > p {
    font-size: 0.89rem;
  }
}
@media (max-width: 767px) {
  #support .intro_box_2::after {
    content: none;
  }
  #support .support_list_des .support_list_des_box {
    width: 100%;
  }
}