@charset "UTF-8";
/* =========
color
========= */
/* =========
fonts
========= */
/* =========
미디어쿼리 pc, tablet, mobile 중단점
========= */
.intro_box_2 {
  flex-direction: row;
  justify-content: space-between;
  gap: 60px;
}
.intro_box_2::after {
  content: "";
  width: 130px;
  height: 130px;
  aspect-ratio: 1/1;
  background: url("../img/ico_cyber.svg") center no-repeat;
  background-size: 100%;
}

.sub_con_shortcut {
  display: flex;
  flex-direction: row;
  gap: 15px;
  width: 100%;
}
.sub_con_shortcut .shortcut_box {
  border-radius: 10px;
  border: 1px solid #c2d4e8;
  display: flex;
  padding: 40px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex: 1 0 0;
  width: calc(50% - 7.5px);
}
.sub_con_shortcut .shortcut_box:first-child {
  background: #f3f9ff;
}
.sub_con_shortcut .shortcut_box:first-child .cyber_btn {
  background: #042e6f;
}
.sub_con_shortcut .shortcut_box:last-child {
  background: #f3f3ff;
}
.sub_con_shortcut .shortcut_box:last-child .cyber_btn {
  background: #338;
}
.sub_con_shortcut .cyber_tit {
  color: var(--Gray-txt, #222);
  font-family: "Hakgyoansim-Allimjang";
  font-size: 1.444rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 36.4px */
}
.sub_con_shortcut .cyber_btn {
  color: #fff;
  text-align: center;
  font-family: "Hakgyoansim-Allimjang";
  font-size: 1.444rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 36.4px */
  border-radius: 999px;
  display: flex;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.sub_con_shortcut .cyber_btn span {
  display: block;
  width: 14px;
  height: 14px;
  background: url("../img/ico_arrow.svg") center no-repeat;
}

.counsel {
  display: flex;
  gap: 10px;
}
.counsel .contact_box {
  width: calc(50% - 5px);
  flex-basis: auto;
}
.counsel .contact_box p {
  font-family: "Pretendard";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.54px;
  color: var(--Base-text, #222);
}
.counsel .contact_box .counsel_tel,
.counsel .contact_box .counsel_mail {
  font-weight: 600;
  display: flex;
  gap: 10px;
  align-items: center;
}
.counsel .contact_box .counsel_tel::before,
.counsel .contact_box .counsel_mail::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.counsel .contact_box .counsel_tel::before {
  background: url("../img/ico_tel.svg") center no-repeat;
}
.counsel .contact_box .counsel_mail::before {
  background: url("../img/ico_mail.svg") center no-repeat;
}

.howto {
  display: flex;
  padding: 10px 20px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 10px;
  border: 1px solid var(--Border-Stroke, #d6dde6);
  background: #f3f9ff;
}
.howto p {
  color: var(--Text-Primary, #333);
  text-align: center;
  /* Body/M_SB */
  font-family: "Pretendard";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: -0.54px;
}

.definition {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.definition ul {
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 10px;
  border: 1px solid var(--Border-Stroke, #d6dde6);
  background: #fff;
}
.definition li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: #333;
  /* Body/M */
  font-family: "Pretendard";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.54px;
}
.definition li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #042e6f;
  flex-shrink: 0;
}

.sub_goto_btn::after {
  background: url("../img/ico_download.svg") center no-repeat;
}

@media (max-width: 1280px) {
  .sub_con_shortcut .cyber_tit {
    font-size: 1.222rem;
  }
  .sub_con_shortcut .cyber_btn {
    font-size: 1.222rem;
  }
}
@media (max-width: 1023px) {
  .sub_con_shortcut .cyber_tit {
    font-size: 1.111rem;
  }
  .sub_con_shortcut .cyber_btn {
    font-size: 1.111rem;
  }
  .counsel {
    flex-direction: column;
    align-items: center;
  }
  .counsel .contact_box {
    width: fit-content;
  }
}
@media (max-width: 767px) {
  .intro_box_2::after {
    content: none;
  }
  .sub_con_shortcut {
    flex-direction: column;
    align-items: center;
  }
  .sub_con_shortcut .shortcut_box {
    width: 80%;
  }
  .counsel .contact_box {
    flex-direction: column;
    gap: 5px;
    padding: 15px 20px;
    width: 100%;
  }
  .counsel .contact_box p {
    font-size: 0.889rem;
  }
  .howto p {
    font-size: 0.889rem;
  }
  .definition li {
    font-size: 0.889rem;
  }
}