:root {
  --black: #1c1c1c;
  --transparent: #fff0;
  --white: white;
  --taizoom: #f75745;
  --lightblue: #e8f9ff;
  --darkblue: #252a5c;
  --blue: #00b0f0;
  --light_grey: #f0f0f0;
}

body {
  color: var(--black);
  font-family: Noto Sans TC, sans-serif;
  font-size: 16.2px;
  line-height: 29.4px;
}

h1 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 300;
  line-height: 44px;
}

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

a {
  color: var(--black);
  text-decoration: none;
  transition: all .45s;
}

.home_bg_video {
  z-index: -66;
  width: 100%;
  height: 100%;
  padding: 90px 90px 45px;
  display: flex;
  position: fixed;
  inset: 0% auto auto 0%;
}

.home_banner_container {
  min-height: 200vh;
}

.home_lift_graphic_block {
  flex-flow: column;
  width: 12vh;
  min-width: 90px;
  max-width: 108px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.home_lift_graphic_side {
  opacity: .3;
  flex: none;
  width: 100%;
  display: block;
}

.home_lift_graphic_center {
  opacity: .3;
  flex-flow: column;
  flex: 1;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.home_lift_graphic_front {
  flex: none;
  width: 100%;
  display: block;
}

.home_lift_graphic_front_container {
  z-index: 1;
  flex-flow: column;
  display: flex;
  position: absolute;
  inset: 0%;
}

.home_lift_graphic_front_spacing {
  width: 100%;
  height: 100%;
}

.header_container {
  z-index: 33;
  justify-content: center;
  align-items: center;
  padding-top: 36px;
  padding-left: 36px;
  padding-right: 132px;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.header_logo_btn:hover {
  opacity: .9;
}

.header_logo_img {
  height: 42px;
  display: block;
}

.header_right {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  padding-left: 36px;
  padding-right: 18px;
  display: flex;
}

.header_right_in {
  grid-column-gap: 16px;
  grid-row-gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: none;
}

.header_right_menu_btn {
  border-bottom: 1px solid var(--transparent);
  color: var(--white);
  padding-top: 3px;
  padding-bottom: 3px;
  line-height: 22.2px;
}

.header_right_menu_btn:hover {
  color: var(--taizoom);
}

.header_right_menu_btn.w--current {
  border-bottom-color: var(--taizoom);
  color: var(--taizoom);
}

.header_right_line {
  opacity: .3;
  background-color: #fff;
  width: 1px;
  height: 30px;
  margin-left: 12px;
  margin-right: 12px;
  display: none;
}

.header_lang_btn {
  border-bottom: 1px solid var(--transparent);
  opacity: .6;
  color: var(--white);
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: 13.2px;
  line-height: 18px;
}

.header_lang_btn:hover {
  opacity: 1;
  color: var(--taizoom);
}

.header_lang_btn.current {
  border-bottom-color: var(--taizoom);
  opacity: 1;
}

.home_banner_container_in {
  width: 100%;
  min-height: 100vh;
  color: var(--white);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 168px 48px;
  display: flex;
  position: relative;
}

.home_banner_tagline {
  letter-spacing: -2.4px;
  margin-left: auto;
  margin-right: auto;
  font-size: 96px;
  font-weight: 600;
  line-height: 105px;
}

.home_banner_tagline.for_chi {
  letter-spacing: 4.8px;
}

.home_banner_description_text {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 36px;
}

.home_banner_description_text.for_chi {
  max-width: 312px;
}

.section_container {
  width: 100%;
  padding-left: 48px;
  padding-right: 48px;
}

.section_container.for_home_project {
  background-color: var(--lightblue);
  padding-right: 18px;
}

.section_container.bg_lightblue {
  background-color: var(--lightblue);
}

.section_container.bg_white {
  background-color: var(--white);
}

.home_intro_award_logos_section {
  overflow: hidden;
}

.home_intro_award_logos_down {
  width: 100%;
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
  overflow: hidden;
}

.home_intro_award_logos_track {
  justify-content: flex-start;
  align-items: center;
  width: max-content;
  display: flex;
  flex-wrap: nowrap;
  animation: home-intro-award-logos-slide 40s linear infinite;
}

.home_intro_award_logo_item {
  flex: none;
  justify-content: center;
  align-items: center;
  height: 64px;
  padding-right: 48px;
  display: flex;
}

.home_intro_award_logo_img {
  width: auto;
  height: 64px;
  max-width: none;
  display: block;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

@keyframes home-intro-award-logos-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home_intro_award_logos_track {
    animation: none;
  }
}

.home_lift_graphic_trigger_line {
  position: absolute;
  inset: 0% auto 0% 0%;
}

.home_bg_darkblue {
  z-index: -99;
  background-color: var(--darkblue);
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0% auto auto 0%;
}

.home_intro_container {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1344px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
}

.mobile_menu_trigger_btn {
  z-index: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 132px;
  padding-left: 36px;
  padding-right: 36px;
  display: flex;
  position: absolute;
  inset: 0% 0% -36px auto;
}

.mobile_menu_trigger_btn.in_menu {
  display: flex;
}

.mobile_menu_trigger_btn_line1 {
  background-color: var(--white);
  width: 100%;
  height: 1.5px;
  margin-left: auto;
  margin-right: auto;
}

.mobile_menu_trigger_btn_line2 {
  background-color: var(--white);
  opacity: 0;
  width: 100%;
  height: 1.5px;
  margin: 3.6px auto -1.5px;
}

.mobile_menu_trigger_btn_line3 {
  background-color: var(--white);
  opacity: 0;
  width: 100%;
  height: 1.5px;
  margin-bottom: 3.6px;
  margin-left: auto;
  margin-right: auto;
}

.home_intro_left {
  z-index: 11;
  width: calc(50% - 24px);
  position: relative;
}

.home_section_title {
  color: var(--taizoom);
  letter-spacing: -1.5px;
  font-size: 60px;
  font-weight: 600;
  line-height: 69px;
}

.home_section_title.for_chi {
  letter-spacing: 3px;
}

.home_intro_container_in {
  z-index: 1;
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  width: 100%;
  display: flex;
  position: relative;
}

.home_intro_right {
  width: calc(50% - 24px);
  padding-top: 9px;
}

.home_intro_product_btn {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.home_intro_product_btn:hover {
  color: var(--taizoom);
}

.home_intro_product_btn_in {
  width: 100%;
  display: flex;
  position: relative;
}

.home_intro_product_number {
  z-index: 1;
  border-bottom: 1px solid var(--taizoom);
  width: 30px;
  color: var(--taizoom);
  text-align: center;
  flex: none;
  margin-right: 18px;
  padding-top: 30px;
  font-size: 13.2px;
  font-weight: 600;
  line-height: 18px;
  position: relative;
}

.home_intro_product_btn_right {
  width: 100%;
  padding-top: 24px;
  padding-bottom: 12px;
  font-size: 21px;
  font-weight: 600;
  line-height: 27px;
}

.home_intro_product_btn_text {
  margin-right: 9px;
  display: inline;
}

.home_intro_product_btn_arrow {
  width: 27px;
  margin-bottom: 3px;
  display: inline-block;
}

.home_intro_product_btn_line {
  background-color: #1c1c1c26;
  height: 1px;
  position: absolute;
  inset: auto 0 0%;
  overflow: hidden;
}

.home_intro_product_btn_line_in {
  background-color: var(--taizoom);
  position: absolute;
  inset: 0%;
  transform: translate(-101%);
}

.home_intro_product_btn_img_block {
  z-index: -2;
  width: calc(50% - 24px);
  padding-top: 120px;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.home_intro_product_btn_img {
  opacity: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.home_intro_product_btn_img_first {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.home_lift_graphic_center_in {
  width: 100%;
  display: block;
}

.generic_block {
  width: 100%;
}

.home_2block_container {
  background-color: var(--black);
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.home_2block_container_in {
  z-index: 1;
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.home_2block_left {
  background-color: var(--white);
  flex: none;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  display: flex;
}

.home_2block_left_in {
  text-align: center;
  width: 100%;
  padding: 48px;
}

.home_2block_right {
  background-image: url('../images/home_2block_img.jpg');
  background-position: 40% 40%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.home_2block_left_content {
  width: 100%;
  max-width: 435px;
  margin-left: auto;
  margin-right: auto;
}

.home_2block_behind_container {
  width: 100%;
  color: var(--white);
  padding-left: 48px;
  padding-right: 48px;
}

.home_2block_behind_container_in {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
}

.home_2block_trigger_line {
  height: 99vh;
  position: absolute;
  inset: 101vh auto auto 0%;
  overflow: hidden;
}

.home_2block_trigger_line_in {
  width: 0;
  height: 9999px;
  margin-top: 1vh;
  position: absolute;
  inset: 100% auto auto 0%;
}

.home_2block_behind_title {
  border-bottom: 1px solid var(--blue);
  text-align: center;
  letter-spacing: 1.32px;
  text-transform: uppercase;
  padding-bottom: 6px;
  font-size: 13.2px;
  font-weight: 600;
  line-height: 18px;
}

.home_2block_spacing {
  width: 100%;
  min-height: 100vh;
  display: none;
}

.home_2block_behind_content {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  width: 100%;
  max-width: 1080px;
  padding-top: 48px;
  display: flex;
}

.home_2block_behind_col {
  width: 100%;
}

.section_container_in {
  width: 100%;
  max-width: 1344px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 120px;
  padding-bottom: 120px;
}

.section_container_in.for_grid {
  max-width: 1374px;
}

.img100 {
  width: 100%;
  display: block;
}

.home_2block_behind_text {
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.home_2block_behind_subtitle {
  padding-top: 30px;
  font-size: 21px;
  font-weight: 600;
  line-height: 27px;
}

.small_text_paragraph {
  opacity: .75;
  padding-top: 13.2px;
  font-size: 13.2px;
  line-height: 24px;
}

.home_2block_content {
  width: 100%;
  min-height: 100vh;
  display: flex;
}

.text_together {
  display: inline-block;
  white-space: nowrap;
}

.grid_content {
  width: 100%;
  padding-right: 30px;
}

.home_project_slider {
  background-color: var(--transparent);
  width: 100%;
  height: auto;
  padding-top: 36px;
  padding-bottom: 66px;
}

.home_project_slider_mask {
  width: 100%;
  height: auto;
}

.home_banner_content {
  width: 100%;
  padding-bottom: 48px;
}

.home_project_slider_nav {
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 0;
  display: flex;
  inset: auto 282px 0% 0%;
}

.home_project_slide {
  width: 33.34%;
  padding-right: 30px;
}

.generic_img_btn {
  width: 100%;
  display: block;
}

.generic_img_btn:hover {
  color: var(--taizoom);
}

.generic_img_btn_img_block {
  width: 100%;
  padding: .9px;
  position: relative;
}

.home_project_slide_btn_info_row {
  z-index: 1;
  width: 100%;
  margin-bottom: -1px;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.home_project_slide_btn_info_row_in {
  background-color: var(--lightblue);
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: -.9px;
  margin-left: -.9px;
  padding-top: 6px;
  padding-bottom: 1.8px;
  padding-right: 18px;
  font-size: 13.2px;
  line-height: 18px;
  display: flex;
}

.generic_img_btn_text {
  max-width: 450px;
  padding-top: 12px;
  padding-right: 30px;
  font-size: 21px;
  font-weight: 600;
  line-height: 30px;
}

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

.generic_btn_arrow_img {
  width: 42px;
  display: block;
}

.home_project_slide_btn_info_dot {
  background-color: var(--taizoom);
  flex: none;
  width: 6px;
  height: 6px;
  margin-left: 1.8px;
  margin-right: 6px;
}

.generic_img_btn_img_block_in {
  width: 100%;
  overflow: hidden;
}

.home_project_more_btn {
  z-index: 1;
  border: 1px solid var(--taizoom);
  justify-content: center;
  align-items: center;
  min-width: 120px;
  height: 48px;
  margin-right: 30px;
  padding-left: 18px;
  padding-right: 18px;
  font-size: 13.2px;
  font-weight: 600;
  line-height: 18px;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
  overflow: hidden;
}

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

.generic_more_btn_arrow {
  margin: 0 0 0 9px;
  font-size: 9px;
  font-weight: 800;
}

.generic_more_btn_bg_hover {
  z-index: -1;
  background-color: var(--taizoom);
  position: absolute;
  inset: 0%;
  transform: translate(-101%);
}

.generic_more_btn_bg_hover.blue {
  background-color: var(--blue);
}

.home_project_slider_arrow {
  opacity: .6;
  width: 48px;
  height: 48px;
  color: var(--black);
  margin-right: 168px;
  font-size: 21px;
  transition: all .45s;
  inset: auto 0% 0% auto;
}

.home_project_slider_arrow:hover {
  opacity: 1;
  color: var(--taizoom);
}

.home_project_slider_arrow.left {
  right: 48px;
}

.home_awards_container {
  background-color: var(--darkblue);
  width: 100%;
  padding-left: 48px;
  padding-right: 48px;
  overflow: hidden;
}

.home_awards_up {
  width: 100%;
  max-width: 1344px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 120px;
  padding-bottom: 36px;
}

.home_awards_title_row {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.home_awards_more_btn {
  z-index: 1;
  border: 1px solid var(--taizoom);
  flex: none;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 48px;
  margin-bottom: 4.8px;
  padding-left: 18px;
  padding-right: 18px;
  font-size: 13.2px;
  font-weight: 600;
  line-height: 18px;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.home_awards_more_btn.for_dark_bg {
  border-color: var(--blue);
  color: var(--white);
}

.home_awards_more_btn.for_dark_bg:hover {
  color: var(--black);
}

.home_awards_down {
  width: 100%;
  padding-bottom: 120px;
  display: flex;
}

.home_awards_down_in {
  justify-content: flex-start;
  align-items: flex-start;
  width: 258px;
  display: flex;
}

.home_awards_block {
  flex: none;
  width: 100%;
  padding-right: 48px;
}

.home_awards_text {
  opacity: .6;
  color: var(--white);
  padding-top: 9px;
  font-size: 13.2px;
  line-height: 18px;
}

.home_awards_img {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  max-height: 210px;
  display: block;
}

.footer_container {
  background-color: var(--light_grey);
  width: 100%;
  padding-left: 48px;
  padding-right: 48px;
  position: relative;
}

.footer_container_in {
  width: 100%;
  max-width: 1344px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 90px;
  padding-bottom: 120px;
  position: relative;
}

.footer_last_row {
  grid-column-gap: 18px;
  grid-row-gap: 6px;
  color: #1c1c1c73;
  text-align: center;
  border-top: 1px solid #1c1c1c26;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 24px;
  font-size: 13.2px;
  line-height: 18px;
  display: flex;
}

.footer_last_row_line {
  background-color: var(--black);
  opacity: .3;
  flex: none;
  width: 1px;
  height: 13.2px;
}

.footer_last_row_btn {
  color: #1c1c1c73;
}

.footer_last_row_btn:hover {
  color: var(--taizoom);
}

.footer_up {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 60px;
  display: flex;
}

.footer_up_left {
  padding-right: 48px;
}

.footer_up_right {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex: none;
  justify-content: space-between;
  min-width: 25%;
  margin-left: auto;
  padding-top: 6px;
  padding-right: 6px;
  display: flex;
}

.footer_up_right_col {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.footer_up_right_col.for_chi {
  margin-right: auto;
}

.footer_up_right_btn {
  width: 100%;
  font-weight: 600;
  line-height: 22.2px;
  display: block;
}

.footer_up_right_btn:hover {
  color: var(--taizoom);
}

.footer_logo_row {
  width: 100%;
  display: flex;
}

.footer_logo_img {
  height: 30px;
  display: block;
}

.footer_info_container {
  grid-column-gap: 48px;
  grid-row-gap: 18px;
  flex-flow: wrap;
  width: 100%;
  padding-top: 36px;
  display: flex;
}

.footer_info_btn {
  line-height: 22.2px;
}

.footer_info_btn:hover {
  color: var(--taizoom);
}

.footer_info_btn.address {
  width: 100%;
}

.footer_info_small_text {
  opacity: .3;
  text-transform: uppercase;
  padding-bottom: 3px;
  font-size: 10.8px;
  font-weight: 500;
  line-height: 14.4px;
}

.footer_partner_row {
  border-top: 1px solid #1c1c1c26;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 30px;
  display: flex;
}

.footer_partner_row_in {
  grid-column-gap: 48px;
  grid-row-gap: 12px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 48px;
  display: flex;
}

.footer_partner_btn {
  overflow: hidden;
}

.footer_partner_btn_img {
  mix-blend-mode: multiply;
  height: 48px;
  display: block;
}

.back_to_top_btn {
  z-index: 1;
  grid-column-gap: 4.8px;
  grid-row-gap: 4.8px;
  opacity: .6;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  font-size: 13.2px;
  line-height: 18px;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.back_to_top_btn:hover {
  opacity: 1;
}

.back_to_top_btn_arrow {
  height: 26.4px;
  display: block;
}

.section_anchor {
  position: absolute;
  inset: 0% auto auto 0%;
}

.inner_banner_container {
  z-index: 1;
  width: 100%;
  padding-left: 48px;
  padding-right: 48px;
  position: relative;
}

.inner_banner_img_block {
  z-index: -1;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.inner_banner_img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.inner_banner_container_in {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1344px;
  min-height: 450px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 114px;
  padding-bottom: 114px;
  display: flex;
}

.inner_banner_breadcrumb_row {
  grid-column-gap: 9px;
  grid-row-gap: 6px;
  color: #fff9;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 18px;
  font-size: 13.2px;
  line-height: 18px;
  display: flex;
}

.inner_banner_breadcrumb_btn {
  color: #fff9;
}

.inner_banner_breadcrumb_btn:hover {
  color: var(--taizoom);
}

.inner_banner_title {
  color: var(--white);
  letter-spacing: -1.62px;
  font-size: 81px;
  line-height: 90px;
}

.inner_banner_title.for_chi {
  letter-spacing: 4.05px;
}

.inner_banner_line {
  background-color: #00b0f04d;
  flex-flow: column;
  width: 2px;
  height: 60px;
  margin-bottom: -30px;
  margin-left: -1px;
  display: flex;
  position: absolute;
  inset: auto auto 0% 50%;
}

.inner_banner_line_in {
  background-color: var(--taizoom);
  flex: none;
  width: 100%;
  height: 30px;
}

.inner_banner_line_spacing {
  width: 100%;
  height: 100%;
}

.product_listing_container {
  grid-column-gap: 30px;
  grid-row-gap: 60px;
  flex-flow: wrap;
  width: 100%;
  display: flex;
}

.product_listing_block {
  width: calc(33.33% - 20px);
}

.home_intro_text_container_in {
  flex: 1;
  min-width: 0;
  width: 100%;
  color: var(--white);
  margin-left: auto;
  padding-top: 9px;
}

.home_intro_text {
  width: 100%;
  color: var(--white);
}

.white_text {
  color: var(--white);
}

.home_intro_text_container {
  width: 100%;
  display: flex;
  position: relative;
}

.home_intro_text_left {
  flex: none;
  width: 42%;
  max-width: 480px;
  margin-right: auto;
  padding-right: 72px;
}

.home_intro_brochure_cover {
  width: 100%;
  margin-top: 36px;
}

.home_intro_brochure_cover_img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1582 / 1185;
  object-fit: cover;
  object-position: center;
}

.home_intro_brochure_cover_img.brochure_cover_16x9 {
  aspect-ratio: 16 / 9;
}

.generic_more_btn {
  z-index: 1;
  border: 1px solid var(--taizoom);
  justify-content: center;
  align-items: center;
  min-width: 120px;
  height: 48px;
  margin-right: 30px;
  padding-left: 18px;
  padding-right: 18px;
  font-size: 13.2px;
  font-weight: 600;
  line-height: 18px;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.generic_more_btn.blue {
  border-color: var(--blue);
  color: var(--white);
}

.generic_more_btn.blue:hover {
  color: var(--black);
}

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

.home_collapse_container {
  background-color: var(--white);
  width: 100%;
}

.home_collapse_trigger_btn {
  z-index: 1;
  justify-content: center;
  align-items: center;
  padding: 30px 48px 36px;
  font-size: 21px;
  font-weight: 600;
  line-height: 30px;
  display: flex;
  position: relative;
}

.home_collapse_trigger_btn:hover {
  color: var(--taizoom);
}

.home_collapse_trigger_btn_icon {
  width: 18px;
  height: 18px;
  margin-bottom: -1.8px;
  margin-left: 12px;
  position: relative;
}

.home_collapse_trigger_btn_icon_line1 {
  background-color: var(--taizoom);
  width: 2px;
  margin-left: -1px;
  position: absolute;
  inset: 0% auto 0% 50%;
}

.home_collapse_trigger_btn_icon_line2 {
  background-color: var(--taizoom);
  height: 2px;
  margin-top: -1px;
  position: absolute;
  inset: 50% 0% auto;
}

.home_collapse_container_in {
  padding-bottom: 120px;
  padding-left: 48px;
  padding-right: 48px;
  display: none;
}

.home_collaspe_content {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.home_collaspe_content_in {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  margin-top: -16.2px;
  display: flex;
}

.mobile_menu_container {
  z-index: 99;
  width: 100%;
  height: 100%;
  padding-left: 48px;
  padding-right: 48px;
  display: none;
  position: fixed;
  inset: 0% auto auto 0%;
  overflow: auto;
}

.mobile_menu_container_in {
  z-index: 1;
  flex-flow: column;
  justify-content: center;
  width: 100%;
  min-height: 100dvh;
  padding-top: 168px;
  padding-bottom: 168px;
  display: flex;
  position: relative;
}

.coming_soon_mobile_menu_text {
  color: var(--white);
  letter-spacing: -1.5px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 30px;
  font-size: 60px;
  font-weight: 300;
  line-height: 69px;
}

.coming_soon_mobile_menu_text.for_chi {
  letter-spacing: 3px;
}

.mobile_menu_bg_color {
  opacity: .97;
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0% auto auto 0%;
  overflow: hidden;
}

.mobile_menu_bg_color_in {
  background-color: var(--darkblue);
  position: absolute;
  inset: 0%;
}

.coming_soon_page_text {
  text-align: center;
  width: 100%;
  font-size: 21px;
  line-height: 27px;
}

html.w-mod-js [data-ix="home-awards-animation"] {
  transform: translate(0);
}

html.w-mod-js [data-ix="inner-banner-animation"] {
  transform: scale(1.1);
}

@media screen and (min-width: 1440px) {
  .home_bg_video {
    padding: 108px 108px 54px;
  }

  .header_container {
    padding-right: 36px;
  }

  .header_container.in_menu {
    padding-right: 132px;
  }

  .header_right {
    padding-right: 0;
  }

  .header_right_in {
    display: flex;
  }

  .header_right_line {
    display: block;
  }

  .home_banner_container_in {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .home_banner_tagline {
    letter-spacing: -3px;
    font-size: 120px;
    line-height: 129px;
  }

  .home_banner_tagline.for_chi {
    letter-spacing: 6px;
  }

  .mobile_menu_trigger_btn {
    display: none;
  }

  .home_section_title {
    letter-spacing: -1.65px;
    font-size: 66px;
    line-height: 76.5px;
  }

  .home_section_title.for_chi {
    letter-spacing: 3.3px;
  }

  .home_intro_right {
    padding-top: 18px;
  }

  .home_intro_product_btn_img_block {
    padding-top: 132px;
  }

  .home_2block_left_content {
    max-width: 480px;
  }

  .home_awards_down_in {
    width: 288px;
  }

  .home_awards_img {
    max-height: 240px;
  }

  .inner_banner_container_in {
    min-height: 480px;
  }

  .inner_banner_title {
    letter-spacing: -1.8px;
    font-size: 90px;
    line-height: 102px;
  }

  .inner_banner_title.for_chi {
    letter-spacing: 4.5px;
  }

  .home_intro_text_container_in {
    padding-top: 12px;
  }

  .mobile_menu_container_in {
    padding-top: 180px;
    padding-bottom: 180px;
  }

  .coming_soon_mobile_menu_text {
    letter-spacing: -1.65px;
    font-size: 66px;
    line-height: 76.5px;
  }

  .coming_soon_mobile_menu_text.for_chi {
    letter-spacing: 3.3px;
  }
}

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

  p {
    padding-top: 14.1px;
  }

  .home_bg_video {
    padding-top: 81px;
    padding-bottom: 40.5px;
  }

  .home_lift_graphic_block {
    min-width: 75px;
    max-width: 90px;
  }

  .header_container {
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 108px;
  }

  .header_logo_img {
    height: 36px;
  }

  .header_right {
    grid-column-gap: 21px;
    grid-row-gap: 21px;
    padding-left: 30px;
    padding-right: 12px;
  }

  .header_lang_btn {
    font-size: 12px;
    line-height: 16.2px;
  }

  .home_banner_container_in {
    padding: 144px 36px;
  }

  .home_banner_tagline {
    letter-spacing: -1.8px;
    font-size: 72px;
    line-height: 79.5px;
  }

  .home_banner_tagline.for_chi {
    letter-spacing: 3.6px;
  }

  .home_banner_description_text {
    max-width: 360px;
    padding-top: 27px;
  }

  .home_banner_description_text.for_chi {
    max-width: 276px;
  }

  .section_container {
    padding-left: 36px;
    padding-right: 36px;
  }

  .section_container.for_home_project {
    padding-right: 12px;
  }

  .home_intro_award_logos_down {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .home_intro_award_logo_item {
    height: 52px;
    padding-right: 36px;
  }

  .home_intro_award_logo_img {
    height: 52px;
  }

  .home_intro_container {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .mobile_menu_trigger_btn {
    width: 108px;
    padding-left: 30px;
    padding-right: 30px;
    bottom: -30px;
  }

  .mobile_menu_trigger_btn_line1 {
    height: 1.35px;
  }

  .mobile_menu_trigger_btn_line2 {
    height: 1.35px;
    margin-top: 3px;
    margin-bottom: -1.35px;
  }

  .mobile_menu_trigger_btn_line3 {
    height: 1.35px;
    margin-bottom: 3px;
  }

  .home_intro_left {
    width: 100%;
  }

  .home_section_title {
    letter-spacing: -1.2px;
    font-size: 48px;
    line-height: 55.5px;
  }

  .home_section_title.for_chi {
    letter-spacing: 2.4px;
  }

  .home_intro_container_in {
    display: block;
  }

  .home_intro_right {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    width: 100%;
    padding-top: 15px;
    display: flex;
  }

  .home_intro_product_number {
    width: 27px;
    margin-right: 15px;
    padding-top: 25.5px;
    font-size: 12px;
    line-height: 16.2px;
  }

  .home_intro_product_btn_right {
    padding-top: 21px;
    padding-bottom: 10.5px;
    font-size: 18px;
    line-height: 23.4px;
  }

  .home_intro_product_btn_arrow {
    width: 24px;
    margin-bottom: 2.4px;
  }

  .home_intro_product_btn_img_block {
    display: none;
  }

  .home_2block_container_in {
    flex-flow: column;
  }

  .home_2block_left {
    width: 100%;
    min-height: 50vh;
  }

  .home_2block_left_in {
    margin-left: auto;
    margin-right: auto;
    padding: 36px;
  }

  .home_2block_right {
    flex: 1;
  }

  .home_2block_left_content {
    max-width: 570px;
  }

  .home_2block_behind_container {
    padding-left: 36px;
    padding-right: 36px;
  }

  .home_2block_behind_container_in {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .home_2block_behind_title {
    letter-spacing: 1.2px;
    font-size: 12px;
    line-height: 17.4px;
  }

  .home_2block_behind_content {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding-top: 42px;
  }

  .section_container_in {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .home_2block_behind_text {
    max-width: 300px;
  }

  .home_2block_behind_subtitle {
    padding-top: 24px;
    font-size: 18px;
    line-height: 23.4px;
  }

  .small_text_paragraph {
    padding-top: 12px;
    font-size: 12px;
    line-height: 21px;
  }

  .home_2block_content {
    flex-flow: column;
  }

  .grid_content {
    padding-right: 24px;
  }

  .home_project_slider {
    padding-top: 30px;
  }

  .home_banner_content {
    padding-bottom: 42px;
  }

  .home_project_slider_nav {
    height: 42px;
    right: 243px;
  }

  .home_project_slide {
    width: 50%;
    padding-right: 24px;
  }

  .generic_img_btn_img_block {
    padding: .75px;
  }

  .home_project_slide_btn_info_row_in {
    margin-bottom: -.75px;
    margin-left: -.75px;
    padding-top: 5.4px;
    padding-bottom: 1.5px;
    padding-right: 15px;
    font-size: 12px;
    line-height: 16.2px;
  }

  .generic_img_btn_text {
    padding-top: 10.5px;
    padding-right: 24px;
    font-size: 18px;
    line-height: 25.5px;
  }

  .generic_btn_arrow_row {
    padding-top: 15px;
  }

  .generic_btn_arrow_img {
    width: 36px;
  }

  .home_project_slide_btn_info_dot {
    width: 5.4px;
    height: 5.4px;
    margin-left: 1.5px;
    margin-right: 5.4px;
  }

  .home_project_more_btn {
    min-width: 105px;
    height: 42px;
    margin-right: 24px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
    line-height: 16.2px;
  }

  .generic_more_btn_arrow {
    margin-left: 7.5px;
    font-size: 8.1px;
  }

  .home_project_slider_arrow {
    width: 42px;
    height: 42px;
    margin-right: 144px;
    font-size: 18px;
  }

  .home_project_slider_arrow.left {
    right: 42px;
  }

  .home_awards_container {
    padding-left: 36px;
    padding-right: 36px;
  }

  .home_awards_up {
    padding-top: 90px;
    padding-bottom: 30px;
  }

  .home_awards_title_row {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .home_awards_more_btn {
    width: 105px;
    height: 42px;
    margin-bottom: 2.4px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
    line-height: 16.2px;
  }

  .home_awards_down {
    padding-bottom: 90px;
  }

  .home_awards_down_in {
    width: 216px;
  }

  .home_awards_block {
    padding-right: 36px;
  }

  .home_awards_text {
    padding-top: 7.5px;
    font-size: 12px;
    line-height: 16.2px;
  }

  .home_awards_img {
    max-height: 180px;
  }

  .footer_container {
    padding-left: 36px;
    padding-right: 36px;
  }

  .footer_container_in {
    padding-top: 75px;
    padding-bottom: 105px;
  }

  .footer_last_row {
    grid-column-gap: 15px;
    grid-row-gap: 5.4px;
    padding-top: 21px;
    font-size: 12px;
    line-height: 16.2px;
  }

  .footer_last_row_line {
    height: 12px;
  }

  .footer_up {
    padding-bottom: 48px;
  }

  .footer_up_left {
    padding-right: 42px;
  }

  .footer_up_right {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    min-width: auto;
    padding-top: 4.5px;
    padding-right: 4.5px;
  }

  .footer_up_right.for_chi {
    padding-right: 24px;
  }

  .footer_up_right_col {
    grid-column-gap: 10.5px;
    grid-row-gap: 10.5px;
  }

  .footer_up_right_btn {
    line-height: 19.5px;
  }

  .footer_logo_img {
    height: 27px;
  }

  .footer_info_container {
    grid-column-gap: 36px;
    grid-row-gap: 15px;
    padding-top: 30px;
  }

  .footer_info_btn {
    line-height: 19.5px;
  }

  .footer_info_small_text {
    font-size: 10.2px;
    line-height: 13.2px;
  }

  .footer_partner_row {
    padding-top: 24px;
  }

  .footer_partner_row_in {
    grid-column-gap: 36px;
    grid-row-gap: 10.5px;
    padding-top: 10.5px;
    padding-bottom: 39px;
  }

  .footer_partner_btn_img {
    height: 42px;
  }

  .back_to_top_btn {
    grid-column-gap: 4.2px;
    grid-row-gap: 4.2px;
    padding: 24px;
    font-size: 12px;
    line-height: 16.2px;
  }

  .back_to_top_btn_arrow {
    height: 24px;
  }

  .inner_banner_container {
    padding-left: 36px;
    padding-right: 36px;
  }

  .inner_banner_container_in {
    min-height: 420px;
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .inner_banner_breadcrumb_row {
    grid-column-gap: 7.5px;
    grid-row-gap: 5.4px;
    padding-bottom: 15px;
    font-size: 12px;
    line-height: 16.2px;
  }

  .inner_banner_title {
    letter-spacing: -1.44px;
    font-size: 72px;
    line-height: 79.5px;
  }

  .inner_banner_title.for_chi {
    letter-spacing: 3.6px;
  }

  .inner_banner_line {
    height: 48px;
    margin-bottom: -24px;
  }

  .inner_banner_line_in {
    height: 24px;
  }

  .product_listing_container {
    grid-column-gap: 24px;
    grid-row-gap: 48px;
  }

  .product_listing_block {
    width: calc(50% - 12px);
  }

  .home_intro_text_container_in {
    padding-top: 15px;
  }

  .home_intro_text_container {
    padding-bottom: 66px;
    display: block;
  }

  .home_intro_text_left {
    width: 100%;
    max-width: none;
    padding-right: 0;
  }

  .home_intro_brochure_cover {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .generic_more_btn {
    min-width: 105px;
    height: 42px;
    margin-right: 24px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
    line-height: 16.2px;
  }

  .home_intro_more_btn_row {
    padding-top: 24px;
    position: absolute;
    inset: auto 0% 0%;
  }

  .home_collapse_trigger_btn {
    padding: 25.2px 36px 30px;
    font-size: 18px;
    line-height: 25.5px;
  }

  .home_collapse_trigger_btn_icon {
    width: 15px;
    height: 15px;
    margin-bottom: -1.5px;
    margin-left: 10.5px;
  }

  .home_collapse_container_in {
    padding-bottom: 90px;
    padding-left: 36px;
    padding-right: 36px;
  }

  .home_collaspe_content_in {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    margin-top: -14.1px;
  }

  .mobile_menu_container {
    padding-left: 36px;
    padding-right: 36px;
  }

  .mobile_menu_container_in {
    padding-top: 144px;
    padding-bottom: 144px;
  }

  .coming_soon_mobile_menu_text {
    letter-spacing: -1.2px;
    padding-bottom: 24px;
    font-size: 48px;
    line-height: 55.5px;
  }

  .coming_soon_mobile_menu_text.for_chi {
    letter-spacing: 2.4px;
  }

  .coming_soon_page_text {
    font-size: 18px;
    line-height: 23.4px;
  }
}

@media screen and (max-width: 767px) {
  .home_banner_tagline {
    letter-spacing: -1.5px;
    font-size: 60px;
    line-height: 67.5px;
  }

  .home_banner_tagline.for_chi {
    letter-spacing: 3px;
  }

  .home_banner_description_text {
    padding-top: 18px;
  }

  .home_intro_right {
    display: block;
  }

  .home_2block_behind_text {
    max-width: none;
    padding-right: 24px;
  }

  .home_awards_down_in {
    width: 186px;
  }

  .home_awards_img {
    max-height: 150px;
  }

  .footer_up_left {
    max-width: 450px;
  }

  .footer_up_right {
    grid-column-gap: 10.5px;
    grid-row-gap: 10.5px;
    flex-flow: column;
    justify-content: flex-start;
  }

  .footer_up_right.for_chi {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    flex-flow: row;
  }

  .footer_info_container {
    flex-flow: column;
  }

  .inner_banner_container_in {
    min-height: 360px;
  }

  .inner_banner_title {
    letter-spacing: -1.17px;
    font-size: 58.5px;
    line-height: 66px;
  }

  .inner_banner_title.for_chi {
    letter-spacing: 2.925px;
  }

  .home_collaspe_content_in {
    display: block;
  }

  .coming_soon_mobile_menu_text {
    letter-spacing: -1.5px;
    font-size: 60px;
    line-height: 67.5px;
  }

  .coming_soon_mobile_menu_text.for_chi {
    letter-spacing: 3px;
  }
}

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

  p {
    padding-top: 12px;
  }

  .home_bg_video {
    padding-top: 72px;
    padding-bottom: 36px;
  }

  .home_lift_graphic_block {
    min-width: 60px;
    max-width: 72px;
  }

  .header_container {
    padding-top: 24px;
    padding-left: 24px;
    padding-right: 84px;
  }

  .header_logo_img {
    height: 30px;
  }

  .header_right {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
    padding-left: 24px;
    padding-right: 9px;
  }

  .header_lang_btn {
    font-size: 10.8px;
    line-height: 14.4px;
  }

  .home_banner_container_in {
    padding: 120px 24px;
  }

  .home_banner_tagline {
    letter-spacing: -1.2px;
    font-size: 48px;
    line-height: 54px;
  }

  .home_banner_tagline.for_chi {
    letter-spacing: 2.4px;
  }

  .home_banner_description_text {
    max-width: 300px;
    padding-top: 9px;
  }

  .home_banner_description_text.for_chi {
    max-width: 240px;
  }

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

  .section_container.for_home_project {
    padding-right: 6px;
  }

  .home_intro_award_logos_down {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .home_intro_award_logo_item {
    height: 44px;
    padding-right: 24px;
  }

  .home_intro_award_logo_img {
    height: 44px;
  }

  .home_intro_container {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .mobile_menu_trigger_btn {
    width: 84px;
    padding-left: 24px;
    padding-right: 24px;
    bottom: -24px;
  }

  .mobile_menu_trigger_btn_line1 {
    height: 1.2px;
  }

  .mobile_menu_trigger_btn_line2 {
    height: 1.2px;
    margin-top: 2.4px;
    margin-bottom: -1.2px;
  }

  .mobile_menu_trigger_btn_line3 {
    height: 1.2px;
    margin-bottom: 2.4px;
  }

  .home_section_title {
    letter-spacing: -.9px;
    font-size: 36px;
    line-height: 42px;
  }

  .home_section_title.for_chi {
    letter-spacing: 1.8px;
  }

  .home_intro_right {
    padding-top: 12px;
  }

  .home_intro_product_number {
    width: 24px;
    margin-right: 12px;
    padding-top: 21px;
    font-size: 10.8px;
    line-height: 14.4px;
  }

  .home_intro_product_btn_right {
    padding-top: 18px;
    padding-bottom: 9px;
    font-size: 15px;
    line-height: 19.8px;
  }

  .home_intro_product_btn_arrow {
    width: 21px;
    margin-bottom: 1.8px;
  }

  .home_2block_left_in {
    padding: 24px;
  }

  .home_2block_left_content {
    max-width: 390px;
  }

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

  .home_2block_behind_container_in {
    padding-top: 59px;
    padding-bottom: 59px;
  }

  .home_2block_behind_title {
    letter-spacing: 1.08px;
    font-size: 10.8px;
    line-height: 15.6px;
  }

  .home_2block_behind_content {
    grid-column-gap: 36px;
    grid-row-gap: 36px;
    flex-flow: column;
    padding-top: 36px;
  }

  .section_container_in {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .home_2block_behind_text {
    padding-right: 18px;
  }

  .home_2block_behind_subtitle {
    padding-top: 18px;
    font-size: 15px;
    line-height: 19.8px;
  }

  .small_text_paragraph {
    padding-top: 10.8px;
    font-size: 10.8px;
    line-height: 18px;
  }

  .grid_content {
    padding-right: 18px;
  }

  .home_project_slider {
    padding-top: 24px;
    padding-bottom: 54px;
  }

  .home_banner_content {
    padding-bottom: 36px;
  }

  .home_project_slider_nav {
    height: 36px;
    right: 204px;
  }

  .home_project_slide {
    width: 100%;
    padding-right: 18px;
  }

  .generic_img_btn_img_block {
    padding: .6px;
  }

  .home_project_slide_btn_info_row_in {
    margin-bottom: -.6px;
    margin-left: -.6px;
    padding-top: 4.8px;
    padding-bottom: 1.2px;
    padding-right: 12px;
    font-size: 10.8px;
    line-height: 14.4px;
  }

  .generic_img_btn_text {
    max-width: 390px;
    padding-top: 9px;
    padding-right: 18px;
    font-size: 15px;
    line-height: 21px;
  }

  .generic_btn_arrow_row {
    padding-top: 12px;
  }

  .generic_btn_arrow_img {
    width: 30px;
  }

  .home_project_slide_btn_info_dot {
    width: 4.8px;
    height: 4.8px;
    margin-left: 1.2px;
    margin-right: 4.8px;
  }

  .home_project_more_btn {
    min-width: 90px;
    height: 36px;
    margin-right: 18px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 10.8px;
    line-height: 14.4px;
  }

  .generic_more_btn_arrow {
    margin-left: 6px;
    font-size: 7.2px;
  }

  .home_project_slider_arrow {
    width: 36px;
    height: 36px;
    margin-right: 120px;
    font-size: 15px;
  }

  .home_project_slider_arrow.left {
    right: 36px;
  }

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

  .home_awards_up {
    padding-top: 60px;
    padding-bottom: 24px;
  }

  .home_awards_title_row {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
  }

  .home_awards_more_btn {
    width: 90px;
    height: 36px;
    margin-bottom: 0;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 10.8px;
    line-height: 14.4px;
  }

  .home_awards_down {
    padding-bottom: 60px;
  }

  .home_awards_down_in {
    width: 144px;
  }

  .home_awards_block {
    padding-right: 24px;
  }

  .home_awards_text {
    padding-top: 6px;
    font-size: 10.8px;
    line-height: 14.4px;
  }

  .home_awards_img {
    max-height: 120px;
  }

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

  .footer_container_in {
    padding-top: 60px;
    padding-bottom: 90px;
  }

  .footer_last_row {
    grid-column-gap: 12px;
    grid-row-gap: 4.8px;
    flex-flow: column;
    padding-top: 18px;
    font-size: 10.8px;
    line-height: 14.4px;
  }

  .footer_last_row_line {
    height: 10.8px;
    display: none;
  }

  .footer_up {
    padding-bottom: 36px;
  }

  .footer_up_left {
    padding-right: 36px;
  }

  .footer_up_right {
    grid-column-gap: 9px;
    grid-row-gap: 9px;
    padding-top: 3px;
    padding-right: 3px;
  }

  .footer_up_right.for_chi {
    grid-column-gap: 9px;
    grid-row-gap: 9px;
    flex-flow: column;
    padding-right: 18px;
  }

  .footer_up_right_col {
    grid-column-gap: 9px;
    grid-row-gap: 9px;
  }

  .footer_up_right_btn {
    line-height: 16.8px;
  }

  .footer_logo_img {
    height: 24px;
  }

  .footer_info_container {
    grid-column-gap: 24px;
    grid-row-gap: 12px;
    padding-top: 24px;
  }

  .footer_info_btn {
    line-height: 16.8px;
  }

  .footer_info_btn.address {
    max-width: 255px;
  }

  .footer_info_small_text {
    font-size: 9.6px;
    line-height: 12px;
  }

  .footer_partner_row {
    padding-top: 18px;
  }

  .footer_partner_row_in {
    grid-column-gap: 24px;
    grid-row-gap: 9px;
    padding-top: 9px;
    padding-bottom: 30px;
  }

  .footer_partner_btn_img {
    height: 36px;
  }

  .back_to_top_btn {
    grid-column-gap: 3.6px;
    grid-row-gap: 3.6px;
    padding: 18px;
    font-size: 10.8px;
    line-height: 14.4px;
  }

  .back_to_top_btn_arrow {
    height: 21.6px;
  }

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

  .inner_banner_container_in {
    min-height: 300px;
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .inner_banner_breadcrumb_row {
    grid-column-gap: 6px;
    grid-row-gap: 4.8px;
    padding-bottom: 12px;
    font-size: 10.8px;
    line-height: 14.4px;
  }

  .inner_banner_title {
    letter-spacing: -.9px;
    font-size: 45px;
    line-height: 51px;
  }

  .inner_banner_title.for_chi {
    letter-spacing: 2.25px;
  }

  .inner_banner_line {
    width: 1px;
    height: 36px;
    margin-bottom: -18px;
    margin-left: -.5px;
  }

  .inner_banner_line_in {
    height: 18px;
  }

  .product_listing_container {
    grid-column-gap: 18px;
    grid-row-gap: 36px;
  }

  .product_listing_block {
    width: 100%;
  }

  .home_intro_text_container_in {
    padding-top: 12px;
  }

  .home_intro_text_container {
    padding-bottom: 54px;
  }

  .home_intro_brochure_cover {
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .generic_more_btn {
    min-width: 90px;
    height: 36px;
    margin-right: 18px;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 10.8px;
    line-height: 14.4px;
  }

  .home_intro_more_btn_row {
    padding-top: 18px;
  }

  .home_collapse_trigger_btn {
    padding: 20.4px 24px 24px;
    font-size: 15px;
    line-height: 21px;
  }

  .home_collapse_trigger_btn_icon {
    width: 12px;
    height: 12px;
    margin-bottom: -1.2px;
    margin-left: 9px;
  }

  .home_collapse_container_in {
    padding-bottom: 60px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .home_collaspe_content_in {
    margin-top: -12px;
  }

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

  .mobile_menu_container_in {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .coming_soon_mobile_menu_text {
    letter-spacing: -.9px;
    padding-bottom: 18px;
    font-size: 36px;
    line-height: 42px;
  }

  .coming_soon_mobile_menu_text.for_chi {
    letter-spacing: 1.8px;
  }

  .coming_soon_page_text {
    font-size: 15px;
    line-height: 19.8px;
  }
}

/* Brochure inner pages — home-aligned design */
.brochure_section_dark {
  background-color: var(--darkblue);
  padding-top: 72px;
  padding-bottom: 72px;
}

.brochure_eyebrow {
  color: var(--blue);
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  margin-bottom: 12px;
}

.brochure_eyebrow.white_text {
  color: rgba(255, 255, 255, 0.65);
}

.brochure_lead {
  max-width: 720px;
}

.brochure_lead_text {
  color: rgba(255, 255, 255, 0.88);
  margin-top: 18px;
  font-size: 16.2px;
  line-height: 29.4px;
}

.brochure_pad {
  padding-top: 72px;
  padding-bottom: 96px;
}

.brochure_prose_dark {
  color: var(--black);
  font-size: 15px;
  line-height: 26.4px;
}

.brochure_prose_dark p {
  margin-bottom: 16px;
  padding-top: 0;
}

.brochure_prose_dark p:last-child {
  margin-bottom: 0;
}

.brochure_section_dark .home_intro_text_container_in p {
  padding-top: 16.2px;
}

.brochure_section_dark .home_intro_text_container_in p:first-child {
  padding-top: 0;
}

.brochure_media_frame {
  width: 100%;
  overflow: hidden;
}

.brochure_media_frame img {
  display: block;
}

.brochure_media_narrow_wrap {
  max-width: 360px;
}

.brochure_stat_list {
  margin-top: 30px;
}

.brochure_stat_item {
  display: flex;
  align-items: flex-start;
  width: 100%;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 6px;
}

.brochure_stat_body {
  flex: 1;
  min-width: 0;
  padding-left: 18px;
  padding-top: 4px;
}

.brochure_stat_label {
  color: var(--taizoom);
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  margin-bottom: 4px;
}

.brochure_stat_value {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.brochure_story_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
}

.brochure_story_grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brochure_story_grid.four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
}

.brochure_story_card {
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.brochure_story_card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
}

.brochure_story_card_body {
  padding: 22px 24px 28px;
  flex: 1;
}

.brochure_story_card.featured .brochure_story_card_body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brochure_card_title {
  margin: 10px 0 10px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
}

.brochure_story_card_body p {
  margin: 0;
  padding-top: 0;
  font-size: 14.4px;
  line-height: 24px;
}

.brochure_ol {
  margin: 18px 0 0;
  padding-left: 22px;
}

.brochure_ol li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 24px;
}

.brochure_media_row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.brochure_media_row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.brochure_media_row.awards img {
  background: #fff;
  padding: 8px;
}

.brochure_cert_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 16px;
}

.brochure_cert_item {
  background: #fff;
  padding: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.brochure_contact_stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brochure_contact_item a {
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  line-height: 28px;
  word-break: break-all;
}

.brochure_contact_item a:hover {
  color: var(--blue);
}

.brochure_section_dark .brochure_contact_item .footer_info_small_text {
  opacity: 1;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 8px;
  font-size: 13.2px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 1px;
}

.brochure_section_dark .brochure_contact_item div:not(.footer_info_small_text) {
  color: var(--white);
  font-size: 18px;
  line-height: 28px;
}

.home_intro_product_btn.is_static {
  cursor: default;
}

.generic_img_btn.is_static {
  cursor: default;
  pointer-events: none;
}

.generic_img_btn.is_static:hover {
  color: inherit;
}

.home_project_more_btn.is_static {
  display: none;
}

.mobile_menu_link_list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile_menu_link {
  color: var(--white);
  font-size: 28px;
  line-height: 36px;
  text-decoration: none;
}

.mobile_menu_link:hover,
.mobile_menu_link.w--current {
  color: var(--taizoom);
}

.mobile_menu_link.w--current {
  border-bottom: 2px solid var(--taizoom);
  padding-bottom: 4px;
  align-self: flex-start;
}

.mobile_menu_link_list.for_chi .mobile_menu_link {
  letter-spacing: 1.2px;
}

@media screen and (max-width: 991px) {
  .brochure_section_dark {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .brochure_pad {
    padding-top: 54px;
    padding-bottom: 72px;
  }

  .brochure_story_grid,
  .brochure_story_grid.three,
  .brochure_story_grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brochure_story_card.featured {
    grid-template-columns: 1fr;
  }

  .brochure_cert_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brochure_section_dark .home_section_title,
  .brochure_pad .home_section_title,
  .home_intro_container .home_section_title {
    font-size: 42px;
    line-height: 52px;
  }
}

@media screen and (max-width: 767px) {
  .brochure_story_grid,
  .brochure_story_grid.three,
  .brochure_story_grid.four,
  .brochure_media_row.two {
    grid-template-columns: 1fr;
  }

  .brochure_cert_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brochure_stat_value {
    font-size: 16px;
    line-height: 24px;
  }

  .mobile_menu_link {
    font-size: 22px;
    line-height: 30px;
  }

  .brochure_section_dark .home_section_title,
  .brochure_pad .home_section_title,
  .home_intro_container .home_section_title {
    font-size: 32px;
    line-height: 40px;
  }
}

@media screen and (max-width: 479px) {
  .brochure_section_dark,
  .brochure_pad {
    padding-top: 36px;
    padding-bottom: 48px;
  }

  .brochure_cert_grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .brochure_story_card_body {
    padding: 18px 16px 22px;
  }
}

.brochure_profile_facts {
  margin-top: 24px;
}

.brochure_profile_facts .home_intro_product_number {
  padding-top: 24px;
}

.brochure_profile_facts .home_intro_product_btn_right {
  padding-top: 18px;
  padding-bottom: 18px;
}

.brochure_prose_dark + .brochure_profile_facts,
.brochure_prose_dark + .generic_block.brochure_profile_facts {
  margin-top: 24px;
}

/* Awards timeline */
.brochure_timeline {
  position: relative;
  width: 100%;
  max-width: none;
}

.brochure_timeline_item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}

.brochure_timeline_marker {
  position: relative;
  align-self: stretch;
}

.brochure_timeline_marker .home_intro_product_number {
  position: sticky;
  top: 24px;
  z-index: 2;
  display: block;
  width: fit-content;
  min-width: 48px;
  margin: 0 auto;
  padding-top: 6px;
  padding-bottom: 8px;
  font-size: 16.2px;
  line-height: 22px;
  border-bottom-width: 2px;
  background-color: var(--lightblue);
  text-align: center;
}

.brochure_timeline_stem {
  position: absolute;
  top: 36px;
  bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background: linear-gradient(180deg, var(--taizoom) 0%, rgba(247, 87, 69, 0.15) 100%);
}

.brochure_timeline_item.is_last .brochure_timeline_stem {
  background: linear-gradient(180deg, var(--taizoom) 0%, rgba(247, 87, 69, 0) 100%);
}

.brochure_timeline_content {
  padding-bottom: 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brochure_timeline_item.is_last .brochure_timeline_content {
  padding-bottom: 0;
}

.brochure_timeline_card {
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 0;
  overflow: hidden;
}

.brochure_timeline_card_body {
  padding: 36px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brochure_timeline_meta {
  color: var(--taizoom);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 18px;
  margin-bottom: 8px;
}

.brochure_timeline_card_body .brochure_card_title {
  margin-top: 0;
  margin-bottom: 12px;
}

.brochure_timeline_card_body p {
  margin: 0;
  padding-top: 0;
  font-size: 14.4px;
  line-height: 24px;
}

.brochure_timeline_gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.brochure_timeline_gallery img {
  background: #fff;
  padding: 8px;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

@media screen and (max-width: 767px) {
  .brochure_timeline_item {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
  }

  .brochure_timeline_card {
    grid-template-columns: 1fr;
  }

  .brochure_timeline_card_body {
    padding: 20px 18px 24px;
  }

  .brochure_timeline_content {
    padding-bottom: 40px;
  }

  .brochure_timeline_marker .home_intro_product_number {
    font-size: 14.4px;
    min-width: 40px;
  }
}

/* Plant detail — PDF layout */
.brochure_plant_hero {
  width: 100%;
  margin-top: 36px;
  margin-bottom: 36px;
}

.brochure_plant_hero .brochure_cover_16x9,
.brochure_plant_cell .brochure_cover_16x9 {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: auto;
  display: block;
}

.brochure_plant_prose {
  max-width: 920px;
}

.brochure_plant_prose p {
  font-size: 15.6px;
  line-height: 28.8px;
}

.brochure_plant_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 40px;
  width: 100%;
}

.brochure_plant_cell {
  min-width: 0;
}

.brochure_plant_accent {
  width: 42px;
  height: 3px;
  background-color: var(--blue);
  margin-bottom: 12px;
}

.brochure_plant_caption {
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 18px;
}

.brochure_plant_name {
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.brochure_plant_note {
  color: var(--black);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .brochure_plant_grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .brochure_plant_name {
    font-size: 16.2px;
    line-height: 24px;
  }
}

/* Plant overview — PDF staggered layout */
.brochure_overview_head {
  margin-bottom: 48px;
}

.brochure_overview_head .brochure_plant_accent {
  margin-top: 14px;
  margin-bottom: 0;
}

.brochure_overview_stack {
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 100%;
}

.brochure_overview_block {
  width: min(68%, 860px);
}

.brochure_overview_block.is_right {
  margin-left: auto;
}

.brochure_overview_label {
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 14px;
}

.brochure_overview_block .brochure_cover_16x9 {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .brochure_overview_block {
    width: min(78%, 860px);
  }

  .brochure_overview_stack {
    gap: 42px;
  }
}

@media screen and (max-width: 767px) {
  .brochure_overview_block,
  .brochure_overview_block.is_right {
    width: 100%;
    margin-left: 0;
  }

  .brochure_overview_label {
    font-size: 18px;
    line-height: 26px;
  }

  .brochure_overview_stack {
    gap: 36px;
  }
}

/* Modernization page polish */
.home_intro_container .home_section_title {
  margin-bottom: 40px;
}

.brochure_prose_dark .brochure_prose_label {
  margin-top: 18px;
  margin-bottom: 8px;
  padding-top: 0;
  font-weight: 600;
}

.brochure_prose_dark .brochure_bullets {
  margin-top: 0;
  padding-left: 22px;
  list-style: disc;
}

.brochure_prose_dark .brochure_bullets li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 24px;
}

.brochure_prose_dark .brochure_retain_list {
  margin-top: 12px;
  margin-bottom: 0;
  padding-left: 22px;
  list-style: disc;
}

.brochure_prose_dark .brochure_retain_list li {
  margin-bottom: 10px;
  font-size: 16.2px;
  font-weight: 600;
  line-height: 26px;
  color: var(--black);
}

.brochure_prose_dark .brochure_retain_list li:last-child {
  margin-bottom: 0;
}


.brochure_modern_list {
  margin-top: 18px;
}

.brochure_modern_list .home_intro_product_number {
  padding-top: 18px;
}

.brochure_modern_list .home_intro_product_btn_right {
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 16.2px;
  line-height: 24px;
}

.brochure_spec_list {
  list-style: none;
  margin: 28px 0 0;
  padding: 16px 0;
  border-top: 1px solid #1c1c1c26;
  border-bottom: 1px solid #1c1c1c26;
}

.brochure_spec_list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  font-size: 13.8px;
  line-height: 22px;
  color: var(--black);
}

.brochure_spec_list li span:first-child {
  flex: 1;
  min-width: 0;
}

.brochure_spec_list li span:last-child {
  flex: none;
  text-align: right;
  font-weight: 600;
}

