.section-2-wrapper {
  /* layout */
  position: relative;
  display: flex;
  flex-direction: column;

  /* typography */
  text-align: center;
}

.section-2-content-wrapper {
  /* layout */
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 120px;
  margin-bottom: 120px;

  /* responsive */
  @media screen and (max-width: 860px) {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}

.section-2-title {
  /* typography */
  color: var(--Black-Text, #343434);
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;

  /* responsive */
  @media screen and (max-width: 860px) {
    font-size: 20px;
    line-height: 28px;
  }
}

.section-2-subtitle {
  /* layout */
  margin-top: 24px;

  /* typography */
  color: var(--gray-70, #6e6e6e);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;

  /* responsive */
  @media screen and (max-width: 860px) {
    margin-top: 12px;

    font-size: 14px;
    line-height: 22px;
  }
}

.section-2-subtitle-bold {
  /* typography */
  color: var(--Black-Text, #343434);
  font-weight: 700;
}

.section-2-clickable-wrapper {
  /* layout */
  margin-top: 40px;
  width: 1180px;
  height: 420px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
  box-sizing: border-box;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 50px;
  padding-right: 50px;

  /* style */
  border-radius: 9999px;
  border: 1px solid rgba(39, 181, 183, 0.2);
  background: var(--primary_light, #f0fbfb);

  /* responsive */
  @media screen and (max-width: 1200px) {
    width: 100%;
    height: 220px;
    column-gap: 8px;
    padding-left: 20px;
    padding-right: 20px;

    border-radius: 0px;
    border: none;
    background: none;
  }
}

.section-2-clickable-item {
  /* layout */
  position: relative;
  width: 340px;
  height: 340px;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding-block: 30px;

  /* style */
  border-radius: 9999px;
  background: var(--white, #fff);
  box-shadow: 0px 8px 40px 0px #d7edee;
  cursor: pointer;

  /* animation */
  transition: 0.3s ease;

  /* responsive */
  @media screen and (max-width: 1200px) {
    width: 90px;
    height: 220px;

    border-radius: 12px;
    background: var(--white, #fff);
    box-shadow: 0px 4px 12px 0px #eaf1f1;
    border: 0px solid #c8eded;
  }
}

.content-default,
.content-clicked {
  /* layout */
  position: absolute;
  min-width: 70px;

  /* style (initial only) */
  opacity: 0;
  visibility: hidden;

  /* animation */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.content-default {
  /* layout */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* typography */
  color: var(--Black-Text, #343434);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;

  /* responsive */
  @media screen and (max-width: 1200px) {
    font-size: 16px;
    line-height: 26px;
  }
}

.content-default-img {
  /* layout */
  width: 100px;
  height: 100px;
  margin-bottom: 24px;

  /* responsive */
  @media screen and (max-width: 1200px) {
    width: 40px;
    height: 40px;
  }
}

.content-clicked {
  /* layout */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}

.clicked-title {
  /* typography */
  color: var(--Black-Text, #343434);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;

  /* responsive */
  @media screen and (max-width: 1200px) {
    font-size: 16px;
    line-height: 24px;
  }
}

.clicked-subtitle {
  /* layout */
  margin-top: 16px;

  /* typography */
  color: var(--gray-70, #6e6e6e);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;

  /* responsive */
  @media screen and (max-width: 1200px) {
    margin-top: 8px;

    font-size: 12px;
    line-height: 18px;
  }
}

.clicked-list {
  /* layout */
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  row-gap: 12px;
  margin-top: 30px;

  /* responsive */
  @media screen and (max-width: 1200px) {
    margin-top: 20px;
    align-items: center;
    row-gap: 0px;
  }
}

.clicked-list-item {
  /* layout */
  display: flex;
  flex-direction: row;

  /* typography */
  color: var(--Black-Text, #343434);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;

  /* responsive */
  @media screen and (max-width: 1200px) {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
  }
}

.clicked-list-item-bullet {
  /* layout */
  width: 20px;
  height: 20px;
  margin-right: 4px;

  /* responsive */
  @media screen and (max-width: 1200px) {
    display: none;
  }
}
