:root {
  --text: #646464;
  --purple: #7b2b82;
  --header_bg2: #81338a;
  --header_bg1: #6c2a73;
  --white: white;
  --shadow: rgba(0, 0, 0, .18);
  --frontpage_btn_purple1: #b18edc;
  --frontpage_btn_purple2: #842bd8;
  --frontpage_line: #a865aa;
  --black: black;
}

body {
  color: var(--text);
  font-family: Noto Sans HK, Microsoft JhengHei, MHei, Hei, Verdana, Geneva, sans-serif; 
  font-size: 19.5px;
  line-height: 34.5px;
}

h1 {
  color: var(--purple);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 48px;
}

p {
  margin-bottom: 0;
  padding-top: 30px;
}

a {
  color: var(--purple);
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
}

.page_container {
  flex-flow: column;
  width: 100%;
  min-height: 90vh;
  display: flex;
}

.header_container {
  z-index: 33;
  background-image: linear-gradient(180deg, var(--header_bg2), var(--header_bg1));
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.header_container.in_menu {
  background-image: none;
}

.header_container.for_home {
  background-image: linear-gradient(#ffe8ff, #fff);
}

.header_side {
  justify-content: flex-start;
  align-items: center;
  width: 195px;
  padding-left: 27px;
  padding-right: 27px;
  display: flex;
}

.landing_header_logo_block {
  margin-left: auto;
  margin-right: auto;
  padding-top: 18px;
  padding-bottom: 18px;
}

.landing_header_logo_img {
  height: 36px;
  display: block;
}

.lang_dropdown {
  width: 100%;
  font-size: 15px;
  line-height: 21px;
  display: block;
}

.lang_dropdown_toggle {
  border: 1px solid var(--white);
  color: var(--white);
  border-radius: 18px;
  justify-content: flex-start;
  align-items: center;
  padding: 6px;
  transition: all .3s;
  display: flex;
  background-color:transparent;
  width:100%;
  max-width:150px;
}

.lang_dropdown_toggle:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, .66);
}

.lang_dropdown_toggle.w--open {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.lang_dropdown_toggle.for_home {
  border-color: var(--purple);
  color: var(--text);
  background-color:transparent;
  width:100%;
  max-width:150px;
}

.lang_dropdown_toggle.for_home:hover {
  color: var(--purple);
  border-color: rgba(123, 43, 130, .66);
}

.lang_dropdown_icon {
  flex: none;
  width: 24px;
  margin-right: auto;
  display: block;
}

.lang_dropdown_arrow {
  flex: none;
  height: 6px;
  margin-left: auto;
  margin-right: 6px;
  display: block;
}

.lang_dropdown_toggle_text {
  padding-bottom: 3px;
}

.bg_img {
  z-index: -99;
  background-image: url('../../img/bg_img.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.page_container_in {
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.footer_container {
  color: var(--header_bg1);
  text-align: center;
  padding: 42px 30px 72px;
  font-size: 15px;
  line-height: 21px;
}

.footer_container.for_home {
  color: var(--text);
  background-image: linear-gradient(#ffe8ff, #fff);
  padding-top: 18px;
  padding-bottom: 21px;
  line-height: 27px;
}

.terms_of_use_container {
  box-shadow: 0 3px 9px 0 var(--shadow);
  background-color: #fff;
  background-image: url('../../img/bg_magnifier.jpg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 24px;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1080px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 72px 60px 96px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.terms_of_use_container_in {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.terms_of_use_text_link_row {
  width: 100%;
  padding-top: 18px;
  display: flex;
}

.terms_of_use_text_link {
  text-decoration: underline;
}

.terms_of_use_text_link:hover {
  color: var(--header_bg1);
}

.terms_of_use_btn_row {
  width: 100%;
  padding-top: 30px;
  display: flex;
}

.terms_of_use_btn {
  color: var(--white);
  background-color: #6f0072;
  background-image: linear-gradient(90deg, #7601e8, rgba(118, 1, 232, 0));
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 12px 42px 15.6px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  display: flex;
}

.terms_of_use_btn:hover {
  background-color: #7601e8;
}

.terms_of_use_btn_arrow {
  margin-top: 0;
  margin-bottom: -3px;
  margin-left: 6px;
  font-size: 18px;
}

.terms_of_use_close_btn {
  border-bottom-left-radius: 24px;
  width: 72px;
  height: 72px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.terms_of_use_close_btn:hover {
  background-color: rgba(129, 51, 138, .18);
}

.terms_of_use_close_btn_line {
  background-color: var(--text);
  height: 2px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 30%;
  right: 30%;
  transform: rotate(45deg);
}

.terms_of_use_close_btn_line.second {
  transform: rotate(135deg);
}

.header_title_btn {
  color: var(--white);
  max-width: 114px;
  padding-bottom: 3px;
  font-size: 18px;
  line-height: 24px;
  display: block;
}

.header_center_container {
  margin-left: auto;
  margin-right: auto;
  padding-top: 9px;
  padding-bottom: 9px;
}

.header_center_block {
  background-color: rgba(255, 255, 255, .18);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 6px;
  display: flex;
}

.header_center_btn {
  color: var(--white);
  border-radius: 999px;
  padding: 6px 15px 9px;
  font-size: 15px;
  line-height: 21px;
}

.header_center_btn:hover {
  background-color: rgba(255, 255, 255, .18);
}

.header_center_btn.w--current {
  color: var(--purple);
  background-color: #fff;
  font-weight: 700;
}

.header_center_line {
  opacity: .66;
  background-color: #fff;
  flex: none;
  width: 1px;
  height: 27px;
  margin-left: 6px;
  margin-right: 6px;
}

.bold_text {
  font-weight: 700;
}

.mobile_menu_trigger_btn {
  z-index: 3;
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 66px;
  margin-left: -24px;
  display: none;
  position: relative;
}

.mobile_menu_trigger_btn:hover {
  opacity: .66;
}

.mobile_menu_trigger_btn.in_menu {
  display: flex;
}

.mobile_menu_trigger_btn_line {
  background-color: #fff;
  width: 42%;
  height: 1px;
  margin-top: 3px;
  margin-bottom: 3px;
}

.mobile_menu_trigger_btn_line.in_menu {
  width: 36%;
  margin-top: -.5px;
  margin-bottom: -.5px;
  transform: rotate(45deg);
}

.mobile_menu_trigger_btn_line.in_menu.second {
  transform: rotate(135deg);
}

.lang_dropdown_link {
  border-bottom: 1px solid var(--purple);
  color: var(--text);
  text-align: center;
  background-color: #fff;
  padding: 9px 12px 12px;
}

.lang_dropdown_link:hover {
  color: var(--header_bg2);
  background-color: rgba(255, 255, 255, .93);
}

.lang_dropdown_list.w--open {
  box-shadow: 0 3px 6px 0 var(--shadow);
  background-color: #fff;
  /* background-color: rgba(0, 0, 0, 0); */
}

.mobile_menu_container {
  z-index: 99;
  background-color: rgba(108, 42, 115, .93);
  flex-flow: column;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
  overflow: auto;
}

.mobile_menu_container_in {
  margin-top: auto;
  margin-bottom: auto;
  padding: 36px 60px 96px;
}

.mobile_menu_btn_row {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 6px;
  display: flex;
}

.mobile_menu_btn {
  color: var(--white);
  border-radius: 999px;
  padding: 6px 60px 9px;
}

.mobile_menu_btn:hover {
  opacity: .66;
}

.mobile_menu_btn.w--current {
  color: var(--purple);
  background-color: #fff;
  font-weight: 700;
}

.mobile_menu_line {
  opacity: .66;
  background-color: #fff;
  width: 100%;
  max-width: 270px;
  height: 1px;
  margin: 6px auto 18px;
}

.frontpage_container {
  box-shadow: 0 3px 9px 0 var(--shadow);
  background-color: #fff;
  background-image: url('../../img/bg_magnifier.jpg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 24px;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1080px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.frontpage_btn_row {
  z-index: 3;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.frontpage_btn {
  background-image: linear-gradient(180deg, var(--frontpage_btn_purple1), var(--frontpage_btn_purple2));
  color: var(--white);
  border-radius: 99px;
  width: 100%;
  max-width: 270px;
  padding: 3.6px;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
  position: relative;
}

.frontpage_btn:hover {
  opacity: .85;
}

.frontpage_btn_in {
  background-image: linear-gradient(180deg, var(--frontpage_btn_purple2), var(--frontpage_btn_purple1));
  text-align: center;
  border-radius: 999px;
  padding: 10.5px 10.5px 14.1px;
}

.frontpage_btn_in.course {
  padding-left: 72px;
}

.frontpage_btn_icon_block {
  background-color: #cfd4e0;
  border-bottom: 1.8px solid #9ba1b6;
  border-radius: 999px;
  width: 90px;
  height: 90px;
  margin-top: -45px;
  margin-right: -45px;
  padding: 3.6px;
  display: flex;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.frontpage_btn_icon_block_in {
  background-image: linear-gradient(135deg, #b1b3c7, #fcfcfd);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.frontpage_btn_icon_img {
  width: 75%;
  display: block;
}

.frontpage_line_row {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: 9px;
  padding-bottom: 9px;
  display: flex;
}

.frontpage_line_row.second {
  margin-bottom: -24px;
}

.frontpage_line_row.third {
  margin-top: -24px;
}

.frontpage_vertical_line {
  background-color: var(--frontpage_line);
  width: 2px;
  height: 36px;
  position: relative;
}

.frontpage_vertical_line.longer {
  height: 60px;
}

.frontpage_line_arrow {
  width: 18px;
  max-width: none;
  margin: -1px -8px;
  display: block;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.frontpage_line_arrow.down {
  top: auto;
  bottom: 0;
}

.frontpage_line_arrow.horizontal {
  width: auto;
  height: 18px;
  margin: -8px -1px;
}

.frontpage_line_arrow.horizontal.right {
  left: auto;
  right: 0;
}

.frontpage_course_line_center {
  background-color: var(--frontpage_line);
  flex: 1;
  height: 2px;
  margin-left: 9px;
  margin-right: 9px;
  position: relative;
}

.frontpage_course_line_right {
  background-color: var(--frontpage_line);
  width: 60px;
  height: 2px;
  margin-left: 9px;
  position: relative;
}

.frontpage_course_line_right.second_row {
  width: 30px;
  margin-right: 30px;
}

.frontpage_course_line_left {
  background-color: #a865aa;
  width: 60px;
  height: 2px;
  margin-right: 9px;
  position: relative;
}

.frontpage_course_line_left.second_row {
  width: 30px;
  margin-left: 30px;
}

.frontpage_line_corner1 {
  background-color: var(--frontpage_line);
  width: 2px;
  height: 90px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.frontpage_line_corner2 {
  background-color: var(--frontpage_line);
  width: 2px;
  height: 90px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.frontpage_last_row_line_left {
  flex: 1;
  height: 36px;
  margin-right: 9px;
  position: relative;
}

.frontpage_last_row_line_right {
  flex: 1;
  height: 36px;
  margin-left: 9px;
  position: relative;
}

.frontpage_last_row_line {
  background-color: var(--frontpage_line);
  height: 2px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.frontpage_last_row_line.down {
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.frontpage_last_row_line.right_up {
  right: 30px;
}

.frontpage_last_row_line.left_up {
  left: 30px;
}

.frontpage_last_row_vertical_line {
  background-color: var(--frontpage_line);
  width: 2px;
  height: 90px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.frontpage_last_row_vertical_line.longer {
  height: 165px;
}

.frontpage_last_row_vertical_line.left {
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.frontpage_between_course_line_row {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 9px 69px;
  display: flex;
}

.frontpage_between_course_block {
  justify-content: center;
  align-items: stretch;
  width: 270px;
  display: flex;
}

.frontpage_between_course_block_line {
  background-color: var(--frontpage_line);
  width: 2px;
  height: 36px;
}

.frontpage_between_course_line_row_in {
  flex: 1;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.frontpage_between_course_cross_line {
  background-color: var(--frontpage_line);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 9%;
  right: 9%;
  transform: rotate(18deg);
}

.frontpage_between_course_cross_line.second {
  transform: rotate(-18deg);
}

 .inner_page_container {
  box-shadow: 0 3px 9px 0 var(--shadow);
  background-color: #fff;
  background-image: url('../../img/bg_magnifier.jpg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 24px;
  flex: 1;
  width: 100%;
  max-width: 1590px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px;
  padding-left: 60px;
  position: relative;
  overflow: hidden;
}

.content_col_container {
  box-shadow: 0 3px 9px 0 var(--shadow);
  background-color: #fff;
  background-image: url('../../img/bg_magnifier.jpg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 24px;
  flex: 1;
  width: 100%;
  max-width: 1080px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px;
  padding-left: 60px;
  position: relative;
  overflow: hidden;
}

.content_1col_block {
  width: 100%;
  padding-top: 30px;
  padding-right: 60px;
}

.inner_page_title {
  margin-bottom: -18px;
  padding-top: 42px;
  padding-right: 60px;
  position: relative;
}

.content_2col_container {
  width: 100%;
  padding-top: 30px;
  display: flex;
}

.content_2col_block {
  width: 100%;
  padding-right: 60px;
}

.paragraph_level1 {
  color: var(--purple);
  margin-bottom: -12px;
  font-size: 33px;
  font-weight: 200;
  line-height: 51px;
}

.paragraph_level2 {
  font-size: 24px;
  font-weight: 300;
  line-height: 39px;
}

.purple_text {
  color: var(--purple);
}

.preface_img_container {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-top: 60px;
  padding-right: 60px;
  display: flex;
}

.preface_img {
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.paragraph_subtitle {
  z-index: 3;
  color: var(--purple);
  margin-bottom: -18px;
  font-size: 24px;
  font-weight: 600;
  line-height: 39px;
  position: relative;
}

.inner_page_container_in {
  padding-top: 60px;
  padding-right: 60px;
}

.centered_text {
  text-align: center;
}

.generic_table_cell {
  border-bottom: 1px solid #bfbfbf;
  border-right: 1px solid #bfbfbf;
  width: 100%;
  padding: 9px 15px 12px;
  line-height: 28.5px;
}

.generic_table_cell.course_detail_first_row {
  color: var(--purple);
  text-align: center;
  font-weight: 700;
}

.generic_table_cell.point_form {
  border-bottom-color: rgba(0, 0, 0, 0);
  padding-top: 0;
}

.generic_table_cell.point_form.last {
  border-bottom-color: #bfbfbf;
}

.generic_table_cell.preface_1st {
  padding-left: 30px;
}

.generic_table_cell.preface_2nd {
  flex: none;
  width: 38%;
}

.generic_table_cell.course_detail {
  border-bottom: 0 rgba(0, 0, 0, 0);
  border-right: 0 rgba(0, 0, 0, 0);
  flex-flow: column;
  flex: none;
  width: 50%;
  padding: 0;
  display: flex;
}

.generic_text_link {
  color: var(--purple);
}

.generic_text_link:hover {
  color: var(--header_bg1);
  text-decoration: underline;
}

.subject_listing_cell {
  width: 100%;
  padding-top: 6px;
  font-weight: 700;
  line-height: 28.5px;
  display: flex;
}

.subject_listing_link {
  color: var(--text);
  font-weight: 700;
}

.subject_listing_link:hover {
  color: var(--purple);
}

.subject_listing_link.sub_chapter {
  color: #a8a8a8;
  font-weight: 400;
}

.subject_listing_link.sub_chapter:hover {
  color: var(--purple);
}

.course_detail_banner_container {
  z-index: 3;
  color: var(--white);
  position: relative;
}

.course_detail_breadcrumb_row {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 18px;
  padding-right: 48px;
  font-size: 16.5px;
  line-height: 25.5px;
  display: flex;
}

.course_detail_banner_bg {
  z-index: -1;
  background-color: var(--purple);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: -60px;
  right: 0%;
}

.course_detail_title {
  color: var(--white);
  text-align: center;
  padding-bottom: 60px;
  padding-right: 60px;
}

.course_detail_breadcrumb_link {
  color: var(--white);
  margin-top: 6px;
  margin-right: 12px;
}

.course_detail_breadcrumb_link:hover {
  opacity: .75;
}

.course_detail_breadcrumb_arrow {
  color: var(--white);
  margin-top: 6px;
  margin-right: 12px;
}

.course_detail_intro_row {
  width: 100%;
  padding-top: 48px;
  padding-right: 60px;
}

.course_detail_intro_text {
  color: var(--purple);
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 18px;
}

.course_detail_table_subtitle {
  padding-bottom: 6px;
  font-size: 22.5px;
  font-weight: 700;
  line-height: 31.5px;
}

.generic_table_point_form_block {
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 9px;
  display: flex;
}

.generic_table_point_form_dot {
  background-color: var(--text);
  border-radius: 99px;
  flex: none;
  width: 6px;
  height: 6px;
  margin-top: 12px;
  margin-right: 9px;
}

.home_footer_link {
  color: var(--text);
  display: inline-block;
}

.home_footer_link:hover {
  color: var(--purple);
}

.home_container {
  background-image: linear-gradient(165deg, #450b52, #41082b);
  flex-flow: column;
  flex: 1;
  padding-left: 42px;
  display: flex;
  position: relative;
}

.home_bg_container {
  z-index: 0;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.home_bg_floor_block {
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.home_bg_floor_img {
  width: 100%;
  max-width: none;
  min-height: 105px;
  display: block;
}

.home_bg_curtain {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: -18%;
  right: auto;
}

.home_bg_curtain.right {
  left: auto;
  right: -18%;
}

.home_container_in {
  z-index: 11;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding-bottom: 90px;
  display: flex;
  position: relative;
}

.home_stele_block {
  flex-flow: column;
  padding-top: 60px;
  padding-right: 42px;
  display: flex;
}

.home_stele_block_in {
  flex-flow: column;
  flex: 1;
  min-width: 300px;
  max-width: 39vh;
  display: flex;
}

.home_stele_block_in:hover {
  color: var(--white);
}

.home_stele_block_in.coming_soon {
  opacity: .75;
  filter: grayscale(75%);
  color: var(--text);
}

.home_stele_img_block {
  flex-flow: column;
  padding-bottom: 12px;
  padding-right: 12px;
  display: flex;
  position: relative;
}

.home_stele_img_block.second {
  padding-left: 12px;
  padding-right: 0;
}

.home_stele_img1 {
  z-index: 3;
  border-radius: 75px;
  width: 100%;
  max-width: none;
  display: block;
  position: relative;
}

.home_stele_img1_bg {
  background-image: url('../../img/home_stele_bg.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 75px;
  position: absolute;
  top: 12px;
  bottom: 0%;
  left: 12px;
  right: 0%;
}

.home_stele_btn_row {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 24px;
  display: flex;
}

.home_stele_btn {
  background-color: #fff;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  padding: 6px 48px 9px;
  display: flex;
  position: relative;
}

.home_stele_btn.coming_soon {
  background-color: #d9d9d9;
}

.home_stele_btn_arrow {
  z-index: 3;
  margin-top: 0;
  margin-bottom: -1.8px;
  margin-left: 6px;
  font-size: 15px;
  position: relative;
}

.home_stele_btn_text {
  z-index: 3;
  position: relative;
}

.home_stele_btn_bg {
  background-color: var(--purple);
  opacity: 0;
  border-radius: 99px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.home_stele_img2_bg {
  background-image: url('../../img/home_stele_bg.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 75px;
  position: absolute;
  top: 12px;
  bottom: 0%;
  left: 0;
  right: 12px;
}

.generic_table_row {
  flex: 1;
  width: 100%;
  display: flex;
}

.generic_table_row.light_grey_bg {
  background-color: rgba(245, 245, 245, .72);
}

.generic_table_row.purple_bg {
  background-color: var(--purple);
  color: var(--white);
}

.generic_table_container {
  border-top: 1px solid #bfbfbf;
  border-left: 1px solid #bfbfbf;
  width: 100%;
  margin-top: 30px;
}

.course_listing_container {
  flex-flow: wrap;
  width: 100%;
  /* padding-top: 30px; */
  display: flex;
}

.course_listing_half {
  flex-flow: wrap;
  align-content: flex-start;
  width: 50%;
  display: flex;
}

.course_listing_col {
  width: 100%;
  padding-right: 60px;
}

.course_listing_title {
  color: var(--purple);
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
}

.course_listing_row {
  width: 100%;
  line-height: 28.5px;
  display: flex;
}

.course_listing_number {
  flex: none;
  width: 75.75px;
  padding-top: 6px;
  font-weight: 700;
}

.course_listing_subtitle {
  width: 100%;
}

.course_listing_block {
  padding-top: 36px;
}

@media screen and (min-width: 1280px) {
  body {
    font-size: 21px;
    line-height: 36px;
  }

  h1 {
    font-size: 48px;
    line-height: 54px;
  }

  .header_side {
    width: 210px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .header_center_container {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .header_center_btn {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 18px;
    line-height: 24px;
  }

  .header_center_line {
    margin-left: 9px;
    margin-right: 9px;
  }

  .mobile_menu_line {
    max-width: 300px;
  }

  .frontpage_btn {
    max-width: 300px;
    font-size: 27px;
    line-height: 33px;
  }

  .frontpage_btn_in {
    padding: 12px 12px 15.6px;
  }

  .frontpage_last_row_vertical_line.longer {
    height: 180px;
  }

  .frontpage_between_course_block {
    width: 300px;
  }

  .inner_page_title {
    padding-top: 48px;
  }

  .paragraph_level1 {
    font-size: 36px;
    line-height: 54px;
  }

  .paragraph_level2, .paragraph_subtitle {
    font-size: 27px;
    line-height: 42px;
  }

  .generic_table_cell, .subject_listing_cell {
    line-height: 30px;
  }

  .course_detail_breadcrumb_row {
    font-size: 18px;
    line-height: 27px;
  }

  .course_detail_table_subtitle {
    font-size: 24px;
    line-height: 33px;
  }

  .home_bg_curtain {
    display: flex;
    left: 0%;
  }

  .home_bg_curtain.right {
    right: 0%;
  }

  .home_bg_curtain_img {
    display: block;
  }

  .home_stele_img1, .home_stele_img1_bg, .home_stele_img2_bg {
    border-radius: 90px;
  }

  .course_listing_col {
    width: 50%;
  }

  .course_listing_title {
    font-size: 27px;
    line-height: 36px;
  }

  .course_listing_row {
    line-height: 30px;
  }

  .course_listing_number {
    width: 81px;
  }
}

@media screen and (max-width: 991px) {
  body {
    font-size: 18px;
    line-height: 30px;
  }

  h1 {
    font-size: 36px;
    line-height: 40.8px;
  }

  p {
    padding-top: 24px;
  }

  .header_side {
    width: 180px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .header_side.terms_of_use_left {
    display: none;
  }

  .landing_header_logo_block {
    margin-left: 24px;
    padding-top: 19.5px;
    padding-bottom: 19.5px;
  }

  .landing_header_logo_img {
    height: 30px;
  }

  .lang_dropdown {
    font-size: 13.5px;
    line-height: 18.3px;
  }

  .lang_dropdown_toggle {
    border-radius: 15.9px;
    padding: 5.4px;
  }

  .lang_dropdown_icon {
    width: 21px;
  }

  .lang_dropdown_arrow {
    height: 5.4px;
    margin-right: 4.8px;
  }

  .lang_dropdown_toggle_text {
    padding-bottom: 2.4px;
  }

  .page_container_in {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer_container {
    padding: 33px 24px 60px;
    font-size: 15px;
    line-height: 19.8px;
  }

  .footer_container.for_home {
    padding-top: 16.5px;
    padding-bottom: 19.2px;
    line-height: 25.5px;
  }

  .terms_of_use_container {
    border-radius: 18px;
    margin-top: 24px;
    padding: 60px 42px 72px;
  }

  .terms_of_use_container_in {
    padding-bottom: 36px;
  }

  .terms_of_use_text_link_row {
    padding-top: 15px;
  }

  .terms_of_use_btn_row {
    padding-top: 24px;
  }

  .terms_of_use_btn {
    padding: 10.5px 30px 13.5px;
    font-size: 21px;
    line-height: 26.6px;
  }

  .terms_of_use_btn_arrow {
    font-size: 15px;
  }

  .terms_of_use_close_btn {
    border-bottom-left-radius: 18px;
    width: 60px;
    height: 60px;
  }

  .header_title_btn {
    max-width: 108px;
    padding-bottom: 2.4px;
    font-size: 16.5px;
    line-height: 21.9px;
  }

  .header_center_block {
    display: none;
  }

  .mobile_menu_trigger_btn {
    height: 60px;
    display: flex;
  }

  .mobile_menu_container_in {
    padding: 30px 42px 84px;
  }

  .mobile_menu_btn_row {
    padding-bottom: 4.8px;
  }

  .mobile_menu_btn {
    padding: 5.4px 48px 8.1px;
  }

  .mobile_menu_line {
    max-width: 240px;
  }

  .frontpage_container {
    border-radius: 18px;
    margin-top: 24px;
    padding: 42px 39px;
  }

  .frontpage_btn {
    max-width: 240px;
    padding: 3px;
    font-size: 21px;
    line-height: 26.4px;
  }

  .frontpage_btn_in {
    padding: 9px 9px 12px;
  }

  .frontpage_btn_in.course {
    padding-left: 54px;
  }

  .frontpage_btn_icon_block {
    border-bottom-width: 1.5px;
    width: 69px;
    height: 69px;
    margin-top: -34.5px;
    margin-right: -34.5px;
    padding: 3px;
  }

  .frontpage_line_row {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .frontpage_line_row.second {
    margin-bottom: -21px;
  }

  .frontpage_line_row.third {
    margin-top: -21px;
  }

  .frontpage_vertical_line {
    height: 30px;
  }

  .frontpage_vertical_line.longer {
    height: 48px;
  }

  .frontpage_line_arrow {
    width: 15px;
    margin-left: -6.5px;
    margin-right: -6.5px;
  }

  .frontpage_line_arrow.horizontal {
    height: 15px;
    margin-top: -6.5px;
    margin-bottom: -6.5px;
  }

  .frontpage_course_line_right {
    width: 36px;
  }

  .frontpage_course_line_right.second_row {
    width: 21px;
    margin-right: 21px;
  }

  .frontpage_course_line_left {
    width: 36px;
  }

  .frontpage_course_line_left.second_row {
    width: 21px;
    margin-left: 21px;
  }

  .frontpage_line_corner1, .frontpage_line_corner2 {
    height: 75px;
  }

  .frontpage_last_row_line_left, .frontpage_last_row_line_right {
    height: 27px;
  }

  .frontpage_last_row_line.right_up {
    right: 21px;
  }

  .frontpage_last_row_line.left_up {
    left: 21px;
  }

  .frontpage_last_row_vertical_line {
    height: 75px;
  }

  .frontpage_between_course_line_row {
    padding: 6px 45px;
  }

  .frontpage_between_course_block {
    width: 240px;
  }

  .frontpage_between_course_block_line {
    height: 30px;
  }

  .frontpage_between_course_cross_line {
    left: 6%;
    right: 6%;
    transform: rotate(12deg);
  }

  .frontpage_between_course_cross_line.second {
    transform: rotate(-12deg);
  }

 .content_col_container, .inner_page_container {
    border-radius: 18px;
    margin-top: 24px;
    padding-bottom: 42px;
    padding-left: 42px;
  }

  .inner_page_title {
    margin-bottom: -12px;
    padding-top: 33px;
    padding-right: 42px;
  }

  .content_2col_container {
    padding-top: 18px;
  }

 .content_1col_block, .content_2col_block {
    padding-right: 42px;
  }

  .paragraph_level1 {
    margin-bottom: -10.5px;
    font-size: 30px;
    line-height: 45px;
  }

  .paragraph_level2 {
    font-size: 21px;
    line-height: 34.5px;
  }

  .preface_img_container {
    padding-top: 33px;
    padding-right: 42px;
  }

  .paragraph_subtitle {
    margin-bottom: -15px;
    font-size: 21px;
    line-height: 33px;
  }

  .inner_page_container_in {
    padding-top: 42px;
    padding-right: 42px;
  }

  .generic_table_cell {
    padding: 8.1px 12px 10.8px;
    line-height: 25.5px;
  }

  .generic_table_cell.preface_1st {
    padding-left: 24px;
  }

  .subject_listing_cell {
    padding-top: 4.8px;
    line-height: 25.5px;
  }

  .course_detail_breadcrumb_row {
    padding-top: 24px;
    padding-bottom: 15px;
    padding-right: 31.5px;
    font-size: 15px;
    line-height: 22.5px;
  }

  .course_detail_banner_bg {
    left: -42px;
  }

  .course_detail_title {
    padding-bottom: 48px;
    padding-right: 42px;
  }

  .course_detail_breadcrumb_link, .course_detail_breadcrumb_arrow {
    margin-top: 4.8px;
    margin-right: 10.5px;
  }

  .course_detail_intro_row {
    padding-top: 36px;
    padding-right: 42px;
  }

  .course_detail_intro_text {
    max-width: 810px;
    padding-bottom: 12px;
  }

  .course_detail_table_subtitle {
    padding-bottom: 4.8px;
    font-size: 21px;
    line-height: 28.5px;
  }

  .generic_table_point_form_block {
    padding-top: 8.1px;
  }

  .generic_table_point_form_dot {
    width: 5.4px;
    height: 5.4px;
    margin-top: 10.5px;
    margin-right: 7.5px;
  }

  .home_container {
    padding-left: 33px;
  }

  .home_bg_curtain {
    display: none;
  }

  .home_container_in {
    padding-bottom: 75px;
  }

  .home_stele_block {
    max-width: none;
    padding-top: 48px;
    padding-right: 33px;
  }

  .home_stele_img1, .home_stele_img1_bg {
    border-radius: 60px;
  }

  .home_stele_btn_row {
    padding-top: 18px;
  }

  .home_stele_btn_arrow {
    margin-bottom: -1.5px;
    margin-left: 4.8px;
  }

  .home_stele_img2_bg {
    border-radius: 60px;
  }

  .generic_table_container {
    margin-top: 24px;
  }

  .course_listing_container {
    padding-top: 18px;
  }

  .course_listing_col {
    padding-right: 42px;
  }

  .course_listing_title {
    font-size: 21px;
    line-height: 28.5px;
  }

  .course_listing_row {
    line-height: 25.5px;
  }

  .course_listing_number {
    width: 70.5px;
    padding-top: 4.8px;
  }

  .course_listing_block {
    padding-top: 28.8px;
  }
}

@media screen and (max-width: 767px) {
  .landing_header_logo_img {
    height: 24px;
  }

  .frontpage_container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .frontpage_btn_row {
    max-width: 600px;
  }

  .frontpage_btn {
    max-width: 195px;
    font-size: 18px;
    line-height: 23.4px;
  }

  .frontpage_btn.course {
    max-width: 150px;
  }

  .frontpage_btn_in.course {
    padding-left: 9px;
  }

  .frontpage_btn_icon_block {
    margin-top: -60px;
    top: 0%;
    left: auto;
    right: 50%;
  }

  .frontpage_vertical_line.longer.second {
    height: 90px;
  }

  .frontpage_course_line_center {
    margin-left: 4.5px;
    margin-right: 4.5px;
  }

  .frontpage_course_line_right {
    width: 27px;
    margin-left: 4.5px;
  }

  .frontpage_course_line_right.second_row {
    width: 13.5px;
    margin-right: 13.5px;
  }

  .frontpage_course_line_left {
    width: 27px;
    margin-right: 4.5px;
  }

  .frontpage_course_line_left.second_row {
    width: 13.5px;
    margin-left: 13.5px;
  }

  .frontpage_last_row_line.right_up {
    right: 13.5px;
  }

  .frontpage_last_row_line.left_up {
    left: 13.5px;
  }

  .frontpage_last_row_vertical_line.longer {
    height: 210px;
  }

  .frontpage_between_course_line_row {
    max-width: 600px;
    padding-bottom: 66px;
    padding-left: 31.5px;
    padding-right: 31.5px;
  }

  .frontpage_between_course_block {
    width: 150px;
  }

  .frontpage_between_course_line_row_in {
    max-width: 135px;
    transform: translate(0, 24px);
  }

  .frontpage_between_course_cross_line {
    left: -15%;
    right: -15%;
    transform: rotate(30deg);
  }

  .frontpage_between_course_cross_line.second {
    transform: rotate(-30deg);
  }

  .content_2col_container {
    display: block;
  }

  .home_container_in {
    flex-flow: wrap;
  }

  .home_stele_block {
    width: 39vw;
    min-width: 300px;
  }

  .home_stele_block_in {
    min-width: auto;
    max-width: none;
  }

  .home_stele_btn_arrow {
    font-size: 13.5px;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 15px;
    line-height: 24px;
  }

  h1 {
    font-size: 30px;
    line-height: 33.6px;
  }

  p {
    padding-top: 18px;
  }

  .header_side {
    width: 150px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .landing_header_logo_block {
    margin-left: 18px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .landing_header_logo_img {
    height: 18px;
  }

  .lang_dropdown {
    font-size: 12px;
    line-height: 15.6px;
  }

  .lang_dropdown_toggle {
    border-radius: 13.8px;
    padding: 4.8px;
  }

  .lang_dropdown_icon {
    width: 18px;
  }

  .lang_dropdown_arrow {
    height: 4.8px;
    margin-right: 3.6px;
  }

  .lang_dropdown_toggle_text {
    padding-bottom: 1.8px;
  }

  .page_container_in {
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer_container {
    padding: 24px 18px 48px;
    font-size: 12px;
    line-height: 15.6px;
  }

  .footer_container.for_home {
    padding-top: 15px;
    padding-bottom: 17.4px;
    line-height: 21px;
  }

  .terms_of_use_container {
    border-radius: 12px;
    margin-top: 18px;
    padding: 48px 24px;
  }

  .terms_of_use_container_in {
    padding-bottom: 24px;
  }

  .terms_of_use_text_link_row {
    padding-top: 12px;
  }

  .terms_of_use_btn_row {
    padding-top: 18px;
  }

  .terms_of_use_btn {
    padding: 9px 24px 11.4px;
    font-size: 18px;
    line-height: 22.8px;
  }

  .terms_of_use_btn_arrow {
    font-size: 12px;
  }

  .terms_of_use_close_btn {
    border-bottom-left-radius: 12px;
    width: 48px;
    height: 48px;
  }

  .header_title_btn {
    max-width: 102px;
    padding-bottom: 1.8px;
    font-size: 15px;
    line-height: 19.8px;
  }

  .mobile_menu_trigger_btn {
    width: 60px;
    height: 54px;
    margin-left: -18px;
  }

  .mobile_menu_trigger_btn_line {
    margin-top: 2px;
    margin-bottom: 2px;
  }

  .mobile_menu_container_in {
    padding: 24px 24px 72px;
  }

  .mobile_menu_btn_row {
    padding-bottom: 3.6px;
  }

  .mobile_menu_btn {
    padding: 4.8px 36px 7.2px;
  }

  .mobile_menu_line {
    max-width: 180px;
  }

  .frontpage_container {
    border-radius: 12px;
    margin-top: 18px;
    padding: 24px 9px;
  }

  .frontpage_btn_row {
    max-width: 330px;
  }

  .frontpage_btn {
    max-width: 150px;
    padding: 2.4px;
    font-size: 15px;
    line-height: 19.8px;
  }

  .frontpage_btn.course {
    max-width: 108px;
  }

  .frontpage_btn_in {
    padding: 6px 6px 8.4px;
  }

  .frontpage_btn_in.course {
    padding-left: 6px;
  }

  .frontpage_btn_icon_block {
    border-bottom-width: 1.2px;
    width: 48px;
    height: 48px;
    margin-top: -42px;
    margin-right: -24px;
    padding: 2.4px;
  }

  .frontpage_line_row {
    padding-top: 3px;
    padding-bottom: 3px;
  }

  .frontpage_line_row.second {
    margin-bottom: -18px;
  }

  .frontpage_line_row.third {
    margin-top: -18px;
  }

  .frontpage_vertical_line {
    height: 24px;
  }

  .frontpage_vertical_line.longer {
    height: 36px;
  }

  .frontpage_vertical_line.longer.second {
    height: 72px;
  }

  .frontpage_line_arrow {
    width: 12px;
    margin-left: -5px;
    margin-right: -5px;
  }

  .frontpage_line_arrow.horizontal {
    height: 12px;
    margin-top: -5px;
    margin-bottom: -5px;
  }

  .frontpage_course_line_center {
    flex: none;
    width: 30px;
    margin-left: 3px;
    margin-right: 3px;
  }

  .frontpage_course_line_right {
    flex: 1;
    margin-left: 3px;
  }

  .frontpage_course_line_right.second_row {
    flex: 1;
    margin-right: 9px;
  }

  .frontpage_course_line_left {
    flex: 1;
    margin-right: 3px;
  }

  .frontpage_course_line_left.second_row {
    flex: 1;
    margin-left: 9px;
  }

  .frontpage_line_corner1, .frontpage_line_corner2 {
    height: 48px;
  }

  .frontpage_last_row_line_left {
    height: 18px;
    margin-right: 3px;
  }

  .frontpage_last_row_line_right {
    height: 18px;
    margin-left: 3px;
  }

  .frontpage_last_row_line.right_up {
    right: 9px;
  }

  .frontpage_last_row_line.left_up {
    left: 9px;
  }

  .frontpage_last_row_vertical_line {
    height: 48px;
  }

  .frontpage_last_row_vertical_line.longer {
    height: 165px;
  }

  .frontpage_between_course_line_row {
    max-width: 330px;
    padding: 3px 0 48px;
  }

  .frontpage_between_course_block {
    width: 108px;
  }

  .frontpage_between_course_block_line {
    height: 24px;
  }

  .frontpage_between_course_line_row_in {
    flex: none;
    width: 30px;
    max-width: none;
    margin-left: 3px;
    margin-right: 3px;
    transform: translate(0, 18px);
  }

  .frontpage_between_course_cross_line {
    left: -90%;
    right: -90%;
  }

 .content_col_container, .inner_page_container {
    border-radius: 12px;
    margin-top: 18px;
    padding-bottom: 24px;
    padding-left: 24px;
  }

  .inner_page_title {
    margin-bottom: -6px;
    padding-top: 24px;
    padding-right: 24px;
  }

  .content_2col_container {
    padding-top: 6px;
  }

   .content_1col_block, .content_2col_block {
    padding-right: 24px;
  }

  .paragraph_level1 {
    margin-bottom: -9px;
    font-size: 24px;
    line-height: 36px;
  }

  .paragraph_level2 {
    font-size: 18px;
    line-height: 30px;
  }

  .preface_img_container {
    padding-top: 24px;
    padding-right: 24px;
  }

  .paragraph_subtitle {
    margin-bottom: -12px;
    font-size: 18px;
    line-height: 27px;
  }

  .inner_page_container_in {
    padding-top: 24px;
    padding-right: 24px;
  }

  .generic_table_cell {
    padding: 7.2px 9px 9.6px;
    line-height: 21px;
  }

  .generic_table_cell.preface_1st {
    padding-left: 18px;
  }

  .generic_table_cell.course_detail {
    width: 60%;
  }

  .subject_listing_cell {
    padding-top: 3.6px;
    line-height: 21px;
  }

  .course_detail_breadcrumb_row {
    padding-top: 18px;
    padding-bottom: 12px;
    padding-right: 15px;
    font-size: 12px;
    line-height: 18px;
  }

  .course_detail_banner_bg {
    left: -24px;
  }

  .course_detail_title {
    padding-bottom: 36px;
    padding-right: 24px;
  }

  .course_detail_breadcrumb_link, .course_detail_breadcrumb_arrow {
    margin-top: 3.6px;
    margin-right: 9px;
  }

  .course_detail_intro_row {
    padding-top: 24px;
    padding-right: 24px;
  }

  .course_detail_intro_text {
    padding-bottom: 6px;
  }

  .course_detail_table_subtitle {
    padding-bottom: 3.6px;
    font-size: 18px;
    line-height: 24px;
  }

  .generic_table_point_form_block {
    padding-top: 7.2px;
  }

  .generic_table_point_form_dot {
    width: 4.8px;
    height: 4.8px;
    margin-top: 9px;
    margin-right: 6px;
  }

  .home_container {
    padding-left: 24px;
  }

  .home_container_in {
    padding-bottom: 60px;
  }

  .home_stele_block {
    width: 100%;
    min-width: auto;
    max-width: 300px;
    padding-top: 36px;
    padding-right: 24px;
  }

  .home_stele_block_in {
    min-width: auto;
  }

  .home_stele_img1, .home_stele_img1_bg {
    border-radius: 45px;
  }

  .home_stele_btn_row {
    padding-top: 12px;
  }

  .home_stele_btn_arrow {
    margin-bottom: -1.2px;
    margin-left: 3.6px;
    font-size: 12px;
  }

  .home_stele_img2_bg {
    border-radius: 45px;
  }

  .generic_table_container {
    margin-top: 18px;
  }

  .course_listing_container {
    padding-top: 6px;
  }

  .course_listing_half {
    width: 100%;
  }

  .course_listing_col {
    padding-right: 24px;
  }

  .course_listing_title {
    font-size: 18px;
    line-height: 24px;
  }

  .course_listing_row {
    line-height: 21px;
  }

  .course_listing_number {
    width: 60px;
    padding-top: 3.6px;
  }

  .course_listing_block {
    padding-top: 21.6px;
  }
}


