.intro_02 {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  gap: 60px;
  .mission,
  .vision {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    align-items: center;
    text-align: center;
    .tit {
      h3 {
        font-size: 2rem;
        font-weight: 600;
        position: relative;
        padding-bottom: 10px;
      }
      h3::after {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 4px;
        content: '';
        display: block;
      }
    }
    span {
      font-size: 1.5rem;
      word-break: keep-all;
    }
  }
  .mission {
    .tit {
      color: var(--main-blue-normal);
      h3::after {
        background-color: var(--main-blue-normal);
      }
    }
  }
  .vision {
    .tit {
      color: var(--green-normal);
      h3::after {
        background-color: var(--green-normal);
      }
    }
  }
  .value {
    display: flex;
    gap: 10px;
    margin: 30px 0;
    .tit {
      width: 20%;
      min-width: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-right: 2px dotted var(--dark-lighter);
      h3 {
        margin-bottom: 0;
        font-weight: 600;
        color: var(--dark-normal);
      }
    }
    .value_items {
      display: flex;
      width: calc(80% - 10px);
      justify-content: space-evenly;
      gap: 10px;
      .value_item {
        width: 200px;
        height: 200px;
        display: flex;
        border-radius: 100px;
        align-items: center;
        justify-content: center;
        border: 3px solid var(--main-blue-normal);
        padding: 30px;
        background-color: var(--main-blue-light);
        h4 {
          margin-bottom: 0;
          font-size: 2rem;
          font-weight: 600;
          color: var(--main-blue-normal);
        }
      }
      .value_item:nth-child(2) {
        border: 3px solid var(--green-normal);
        background-color: var(--green-light);
        h4 {
          color: var(--green-normal);
        }
      }
      .value_item:nth-child(3) {
        border: 3px solid var(--purple-normal);
        background-color: var(--purple-light);
        h4 {
          color: var(--purple-normal);
        }
      }
    }
  }
  .strategy {
    display: flex;
    gap: 10px;
    align-items: stretch;
    .stg_head {
      display: flex;
      gap: 10px;
      flex-direction: column;
      width: 20%;
      min-width: 120px;
      .stg_head_goal {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 120px;
        background-color: var(--main-blue-normal);
        border-radius: 5px;
        padding: 10px;
        text-align: center;
        h3 {
          margin-bottom: 0;
          color: var(--white);
          white-space: nowrap;
        }
      }
      .stg_head_work {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--main-blue-dark);
        border-radius: 5px;
        padding: 10px;
        text-align: center;
        height: calc(100% - 130px);
        h3 {
          margin-bottom: 0;
          color: var(--white);
          white-space: nowrap;
        }
      }
    }
    .stg_body {
      display: flex;
      gap: 10px;
      .stg_item {
        display: flex;
        gap: 10px;
        flex-direction: column;
        .stg_item_g {
          display: flex;
          justify-content: center;
          align-items: center;
          height: 120px;
          background-color: var(--main-blue-light);
          border-radius: 5px;
          padding: 10px;
          text-align: center;
          h4 {
            word-break: keep-all;
            margin-bottom: 0;
          }
        }
        .stg_item_w_bx {
          display: flex;
          flex-direction: column;
          gap: 10px;
          height: calc(100% - 130px);
          .stg_item_w {
            background-color: var(--light-light-active);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 10px;
            padding: 10px;
            align-items: center;
            text-align: center;
            h5 {
              word-break: keep-all;
            }
            span.num {
              color: var(--main-blue-normal);
              font-weight: 600;
            }
          }
        }
      }
    }
  }
}
@media (max-width: 991.98px) {
  .intro_02 {
    .value {
      flex-direction: column;
      gap: 20px;
      align-items: center;
      .tit {
        border-bottom: 2px dotted var(--dark-lighter);
        border-right: 0;
        padding: 0 0 10px 0;
      }
    }
    .strategy {
      flex-direction: column;
      .stg_head {
        flex-direction: row;
        width: 100%;
        .stg_head_goal {
          height: auto;
          width: 30%;
        }
        .stg_head_work {
          width: calc(70% - 10px);
          height: auto;
        }
      }
      .stg_body {
        display: flex;
        flex-direction: column;
        .stg_item {
          flex-direction: row;
          .stg_item_g {
            height: auto;
            width: 30%;
          }
          .stg_item_w_bx {
            width: calc(70% - 10px);
            .stg_item_w {
              height: auto;
            }
          }
        }
      }
    }
  }
}
