.syllabus_v2 .container_v2 .syllabus_v2_title {
  text-align: center;
}

.syllabus_v2 .container_v2 .syllabus_v2_title h2 {
  text-align: left;
}

.syllabus_v2 .container_v2 .syllabus_v2_title p {
  font-family: var(--font-outfit);
  font-size: 17px;
  font-weight: 500;

  line-height: 23.8px;
  color: #134C8F;
  text-align: start;
}

.syllabus_v2 .container_v2 .syllabus_v2_title:has(p) {
  margin-bottom: 40px;
}

.syllabus_v2 .container_v2 .syllabus_v2_container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.syllabus_v2 .container_v2 .faq_item {
  width: 100%;
}

.syllabus_v2 .container_v2 .faq_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-primary-mid);
  border-radius: 12px;
  padding: 12px 16px;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  min-height: 50px;
}

.syllabus_v2 .container_v2 .faq_header img[data="notshow"] {
  display: none;
}

.syllabus_v2 .container_v2 .faq_header.active img[data="show"] {
  display: none;
}

.syllabus_v2 .container_v2 .faq_header.active img[data="notshow"] {
  display: block;
}

.syllabus_v2 .container_v2 .faq_header img {
  width: 16px;
  height: auto;
}

.syllabus_v2 .container_v2 .faq_header h3 {
  font-family: var(--font-outfit);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  margin: 0;
  padding-right: 18px;
}

.syllabus_v2 .container_v2 .dropdown_body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.syllabus_v2 .container_v2 .dropdown_body p {
  font-family: var(--font-outfit);
  font-size: 17px !important;
  font-weight: 500 !important;
  line-height: 24px !important;
  padding: 1.6rem 1.2rem 1.2rem 1.2rem;
}

.syllabus_v2 .container_v2 .dropdown_body p a {
  color: #45b8ac;
  font-weight: 500;
}

.syllabus_v2_container_table {
  padding-top: 8px;
  padding-bottom: 16px;
}

.syllabus_v2_container_table table {
  width: 100%;
  border-collapse: collapse;
  display: table;
  overflow-x: visible;
  white-space: normal;
}

.syllabus_v2_container_table thead th {
  text-align: left;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  padding: 12px;
  border: unset;
  background: unset;
}

.syllabus_v2_container_table thead th:nth-child(2),
.syllabus_v2_container_table thead th:nth-child(3) {
  text-align: center;
  width: 80px;
}

.syllabus_v2_container_table tbody tr:hover td {
  background: initial;
}

.syllabus_v2_container_table tbody tr:nth-child(odd) {
  background-color: #F2F3F6 !important;
}

.syllabus_v2_container_table tbody tr:nth-child(even) {
  background-color: #ffffff;
}

.syllabus_v2_container_table tbody td {
  padding: 8px 12px;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;

  border: unset;
  text-align: start;
}

.syllabus_v2_container_table tbody td:nth-child(2),
.syllabus_v2_container_table tbody td:nth-child(3) {
  text-align: center;
}

@media (min-width: 768px) {
  .syllabus_v2 .container_v2 .syllabus_v2_title h2 {
    text-align: start;
  }

  .syllabus_v2 .container_v2 .faq_item {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .syllabus_v2 .container_v2 .syllabus_v2 {
    margin-block: 48px;
  }

  .syllabus_v2 .container_v2 .syllabus_v2_title h2 {
    max-width: 780px;
  }

  .syllabus_v2 .container_v2 .dropdown_body p {
    padding: 1.6rem 1.2rem 1.2rem 1.2rem;
  }

  .syllabus_v2_container_table {
    padding: 16px;
  }
}