@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", "Noto Sans TC", sans-serif;
  scroll-behavior: smooth;
}

img {
  width: 100%;
  display: block;
}

body {
  background-color: #f5f5f5;
  color: #191919;
}

main {
  overflow: hidden;
  overflow: clip;
  padding-top: 80px;
}
@media screen and (max-width: 992px) {
  main {
    padding-top: 60px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header {
  background: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: top 1s ease;
  box-shadow: 0 1px 6px rgba(10, 35, 66, 0.08);
}
.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
@media screen and (max-width: 992px) {
  .header-container {
    height: 80px;
  }
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .header-logo {
    gap: 12px;
  }
}
.header-logo img {
  height: 40px;
  width: auto;
}
@media screen and (max-width: 992px) {
  .header-logo img {
    height: 40px;
  }
}
.header-logo .logo-70 img {
  height: 40px;
}
@media screen and (max-width: 992px) {
  .header-logo .logo-70 img {
    height: 40px;
  }
}
.header-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}
.header-menu li a {
  text-decoration: none;
  color: rgb(66, 66, 66);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  padding: 15px 20px;
  letter-spacing: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .header-menu li a {
    padding: 15px 10px;
  }
}
.header-menu li a:hover {
  color: #0977db;
}

section {
  position: relative;
}

.anchor {
  position: absolute;
  width: 1px;
  height: 0px;
  top: -80px;
  left: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: #10457f;
  margin: 3px 0;
  transition: all 0.3s ease;
}
.hamburger.active span {
  background: #fff;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  .header-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #10457f;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 20px 30px;
    gap: 0;
    transition: right 0.3s ease;
  }
  .header-menu::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: rgb(255, 255, 255);
  }
  .header-menu.active {
    right: 0;
  }
  .header-menu li {
    width: 100%;
    text-align: left;
    position: relative;
  }
  .header-menu li::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 11px;
    background-color: #fff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='11' height='18' viewBox='0 0 11 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L10 9L1 17' stroke='%23F5F5F5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
    mask: url("data:image/svg+xml,%3Csvg width='11' height='18' viewBox='0 0 11 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L10 9L1 17' stroke='%23F5F5F5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  }
  .header-menu li a {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 0;
  }
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.label {
  text-align: center;
  color: rgb(9, 119, 219);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
}
.label span {
  margin: 0 6px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}
.label.label-light {
  color: #fff;
}
@media screen and (max-width: 992px) {
  .label {
    font-size: 16px;
  }
}

.title-h2 {
  display: block;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 2px;
  color: rgb(0, 69, 132);
  margin-top: 16px;
}
@media screen and (max-width: 992px) {
  .title-h2 {
    font-size: 28px;
    line-height: 1.5;
  }
}

section > .container > .desc,
.desc {
  margin-top: 24px;
  text-align: center;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1px;
  color: rgb(16, 16, 16);
}
@media screen and (max-width: 992px) {
  section > .container > .desc,
  .desc {
    font-size: 16px;
    line-height: 20px;
  }
}

.pc {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .pc {
    display: block !important;
  }
}

@media screen and (min-width: 992px) {
  br.pc {
    display: inline !important;
  }
}

@media screen and (max-width: 992px) {
  br.mb {
    display: inline !important;
  }
}

.pc-flex {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .pc-flex {
    display: flex !important;
  }
}

.mb {
  display: none !important;
}
@media screen and (max-width: 992px) {
  .mb {
    display: block !important;
  }
}

.ico-arrow {
  display: inline-block;
  width: 0.5em;
  height: 0.8em;
  margin-left: 6px;
  vertical-align: -0.05em;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='11' height='18' viewBox='0 0 11 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L10 9L1 17' stroke='%23F5F5F5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg width='11' height='18' viewBox='0 0 11 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L10 9L1 17' stroke='%23F5F5F5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}

.scroll-window,
.vision .article {
  scrollbar-width: thin;
  scrollbar-color: rgba(28, 111, 209, 0.6) rgba(28, 111, 209, 0.12);
}
.scroll-window::-webkit-scrollbar,
.vision .article::-webkit-scrollbar {
  width: 6px;
}
.scroll-window::-webkit-scrollbar-track,
.vision .article::-webkit-scrollbar-track {
  background: rgba(28, 111, 209, 0.12);
  border-radius: 999px;
}
.scroll-window::-webkit-scrollbar-thumb,
.vision .article::-webkit-scrollbar-thumb {
  background: rgba(28, 111, 209, 0.6);
  border-radius: 999px;
}

[data-aos=fade-in] {
  opacity: 0;
  transition: 0.8s ease-in-out;
}

[data-aos=fade-in].aos-animate {
  opacity: 1;
}

section.index {
  position: relative;
  height: calc(100vh - 80px);
  min-height: 560px;
  max-height: 900px;
  background-image: url("./../image/hero-kv.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  section.index {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 623/1140;
  }
}
section.index .hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.index::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0, 69, 132, 0.8) 0%, rgba(9, 119, 219, 0) 100%);
  pointer-events: none;
}
section.index .hero-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
section.index .hero-title {
  position: absolute;
  z-index: 3;
  left: 2.5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(90%, 650px);
}
@media screen and (max-width: 992px) {
  section.index .hero-title {
    left: 0;
    top: auto;
    bottom: 18%;
    transform: none;
    width: min(328px, 87%);
  }
}
section.index .hero-title img {
  display: block;
  width: 100%;
  height: auto;
}
section.index .hero-title .hero-title-main {
  animation: heroFadeIn 1.5s cubic-bezier(0.22, 0.6, 0.2, 1) both;
}
section.index .hero-title .hero-title-sub {
  animation: heroFadeIn 1.5s cubic-bezier(0.22, 0.6, 0.2, 1) 0.5s both;
}
section.index .scroll-down {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-shadow: 0 0 6px rgba(10, 35, 66, 0.6);
  animation: fadeInSoft 1s ease 2s both;
}
section.index .scroll-down i {
  margin-top: 8px;
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  position: relative;
}
section.index .scroll-down i::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: #fff;
  animation: scrollLine 1.8s ease-in-out infinite;
}
section.about {
  height: auto;
  padding: 90px 0;
}
@media screen and (max-width: 992px) {
  section.about {
    padding: 60px 0;
  }
}
section.about .about-pin {
  position: static;
  height: auto;
  display: flex;
  align-items: center;
  overflow: visible;
}
section.about .container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 992px) {
  section.about .container {
    flex-direction: column;
    align-items: normal;
    gap: 40px;
  }
}
section.about .media {
  width: 55%;
  flex-shrink: 0;
}
@media screen and (max-width: 992px) {
  section.about .media {
    width: 100%;
  }
}
section.about .media .about-slider {
  border-radius: 20px;
  overflow: hidden;
}
section.about .media .about-slider .slick-prev,
section.about .media .about-slider .slick-next {
  width: 36px;
  height: 36px;
  z-index: 2;
}
section.about .media .about-slider .slick-prev::before,
section.about .media .about-slider .slick-next::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 2.5px solid #10457f;
  border-right: 2.5px solid #10457f;
  opacity: 1;
  margin: 0 auto;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}
section.about .media .about-slider .slick-prev {
  left: 14px;
}
section.about .media .about-slider .slick-prev::before {
  transform: rotate(-135deg);
}
section.about .media .about-slider .slick-next {
  right: 14px;
}
section.about .media .about-slider .slick-next::before {
  transform: rotate(45deg);
}
section.about .media .video-slot {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  background: #dcdddd;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.about .media .video-slot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
}
section.about .media .video-slot::after {
  content: "";
  position: absolute;
  left: calc(50% + 3px);
  top: 50%;
  transform: translate(-50%, -50%);
  border-left: 22px solid #10457f;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}
section.about .media .video-slot p {
  position: absolute;
  left: 50%;
  top: calc(50% + 60px);
  transform: translateX(-50%);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #6a6a6a;
  white-space: nowrap;
}
section.about .media .video-slot video,
section.about .media .video-slot iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 0;
}
section.about .media .video-slot.has-video {
  background: #191919;
}
section.about .media .video-slot.has-video::before, section.about .media .video-slot.has-video::after {
  display: none;
}
section.about .media .video-slot.has-video p {
  display: none;
}
section.about .content {
  width: 45%;
  will-change: transform;
}
@media screen and (max-width: 992px) {
  section.about .content {
    width: 100%;
    transform: none !important;
  }
}
section.about .content .title-h2 {
  text-align: left;
  margin-top: 0;
}
section.about .content .title-h2 .en {
  display: block;
  letter-spacing: 0;
}
section.about .content p:not(.title-h2) {
  margin-top: 40px;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1px;
  color: rgb(16, 16, 16);
}
@media screen and (max-width: 992px) {
  section.about .content p:not(.title-h2) {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }
}
section.about .content p:not(.title-h2) + p {
  margin-top: 16px;
}
section.insight .container {
  padding: 0 20px;
}
section.insight .insight-dark {
  background: url("./../image/insight-bg.png") no-repeat center bottom;
  background-size: 100% auto;
  aspect-ratio: 2160/1200;
  padding-top: 160px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  section.insight .insight-dark {
    background-size: cover;
    background-position: center bottom;
    aspect-ratio: auto;
    min-height: 520px;
    padding: 100px 0 100px;
  }
}
section.insight .insight-dark .label::before, section.insight .insight-dark .label::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.9em;
  background: currentColor;
  vertical-align: -0.06em;
  margin: 0 18px;
}
@media screen and (max-width: 992px) {
  section.insight .insight-dark .label::before, section.insight .insight-dark .label::after {
    width: 2px;
    margin: 0 10px;
  }
}
section.insight .insight-dark .title-h2 {
  color: #fff;
  margin-top: 28px;
  line-height: 1.4;
  letter-spacing: 2px;
}
section.insight .insight-dark .desc {
  color: #fff;
  margin-top: 32px;
  line-height: 30px;
}
section.insight .insight-stats {
  padding: 80px 0 50px;
}
@media screen and (max-width: 992px) {
  section.insight .insight-stats {
    padding: 40px 0 100px;
  }
}
section.insight .insight-stats > .container > p.source {
  margin-top: 24px;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: rgba(16, 16, 16, 0.55);
}
@media screen and (max-width: 992px) {
  section.insight .insight-stats > .container > p.source {
    margin-top: 16px;
    font-size: 12px;
  }
}
section.insight .insight-stats .stats {
  list-style: none;
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 992px) {
  section.insight .insight-stats .stats {
    flex-direction: column;
    gap: 20px;
  }
}
section.insight .insight-stats .stats li {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
section.insight .insight-stats .stats li .card-box {
  position: relative;
  overflow: hidden;
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px 34px;
  box-shadow: 0 4px 18px rgba(10, 35, 66, 0.06);
}
section.insight .insight-stats .stats li .card-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: rgb(9, 119, 219);
}
section.insight .insight-stats .stats li .num {
  color: rgb(9, 119, 219);
  font-family: "Outfit", "Noto Sans TC", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
section.insight .insight-stats .stats li .num span {
  font-family: inherit;
}
section.insight .insight-stats .stats li .num .counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
section.insight .insight-stats .stats li .num .plus {
  margin-left: -10px;
}
section.insight .insight-stats .stats li .num small {
  font-size: 24px;
  font-weight: 400;
  color: rgb(66, 66, 66);
  margin-left: -6px;
  letter-spacing: 2px;
}
@media screen and (max-width: 992px) {
  section.insight .insight-stats .stats li .num {
    font-size: 48px;
  }
  section.insight .insight-stats .stats li .num small {
    font-size: 20px;
  }
}
section.insight .insight-stats .stats li .sub {
  margin-top: 8px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  color: rgb(16, 16, 16);
  letter-spacing: 1px;
}
@media screen and (max-width: 992px) {
  section.insight .insight-stats .stats li .sub {
    font-size: 16px;
  }
}
section.insight .insight-stats .stats li h3 {
  margin-top: 22px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: rgb(0, 69, 132);
  letter-spacing: 2px;
}
@media screen and (max-width: 992px) {
  section.insight .insight-stats .stats li h3 {
    font-size: 20px;
  }
}
section.insight .insight-stats .stats li .text {
  margin-top: 12px;
  font-size: 20px;
  line-height: 28px;
  color: rgb(16, 16, 16);
  letter-spacing: 1px;
}
@media screen and (max-width: 992px) {
  section.insight .insight-stats .stats li .text {
    font-size: 16px;
    line-height: 1.8;
  }
}
section.insight .insight-stats .charts {
  margin-top: 55px;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 992px) {
  section.insight .insight-stats .charts {
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }
}
section.insight .insight-stats .charts .chart-card {
  flex: 1;
  min-width: 0;
  text-align: center;
}
section.insight .insight-stats .charts .chart-card .card-box {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  padding: 30px 30px 26px;
  box-shadow: 0 4px 18px rgba(10, 35, 66, 0.06);
}
section.insight .insight-stats .charts .chart-card .card-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: rgb(9, 119, 219);
}
section.insight .insight-stats .charts .chart-card .chart-box {
  position: relative;
  height: 360px;
}
@media screen and (max-width: 992px) {
  section.insight .insight-stats .charts .chart-card .chart-box {
    height: 280px;
  }
}
section.insight .insight-stats .charts .chart-card .chart-img {
  display: block;
  width: 100%;
  height: auto;
}
section.insight .insight-stats .charts .chart-card h3 {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  color: rgb(0, 69, 132);
  letter-spacing: 2px;
}
@media screen and (max-width: 992px) {
  section.insight .insight-stats .charts .chart-card h3 {
    font-size: 20px;
  }
}
section.insight .insight-stats .charts .chart-card p {
  margin-top: 8px;
  font-size: 20px;
  line-height: 26px;
  color: rgb(16, 16, 16);
}
@media screen and (max-width: 992px) {
  section.insight .insight-stats .charts .chart-card p {
    font-size: 16px;
  }
}
section.solutions {
  padding: 50px 0 100px;
}
@media screen and (max-width: 992px) {
  section.solutions {
    padding: 20px 0 60px;
  }
}
@media screen and (max-width: 992px) {
  section.solutions .title-h2 {
    font-size: 32px;
  }
}
section.solutions .slogan {
  margin-top: 30px;
  text-align: center;
  font-size: 32px;
  line-height: 42px;
  color: #191919;
  letter-spacing: 2px;
}
@media screen and (max-width: 992px) {
  section.solutions .slogan {
    font-size: 24px;
    line-height: 32px;
  }
}
section.solutions .desc {
  line-height: 26px;
}
@media screen and (max-width: 992px) {
  section.solutions .desc {
    line-height: 24px;
  }
}
section.solutions .cards {
  margin-top: 60px;
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: stretch;
}
@media screen and (max-width: 992px) {
  section.solutions .cards {
    flex-direction: column;
    gap: 24px;
  }
}
section.solutions .flip-card {
  flex: 1;
  perspective: 1600px;
}
section.solutions .flip-card .flip-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 392/561;
  transition: transform 0.7s;
  transform-style: preserve-3d;
}
section.solutions .flip-card.flipped .flip-inner {
  transform: rotateY(180deg);
}
@media (hover: hover) {
  section.solutions .flip-card:hover .flip-inner {
    transform: rotateY(180deg);
  }
}
section.solutions .flip-card .flip-front,
section.solutions .flip-card .flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
}
section.solutions .flip-card .flip-front {
  background-size: cover;
  background-position: center;
}
section.solutions .flip-card:nth-child(1) .flip-front {
  background-image: url("./../image/sol-1.jpg");
}
section.solutions .flip-card:nth-child(2) .flip-front {
  background-image: url("./../image/sol-2.jpg");
}
section.solutions .flip-card:nth-child(3) .flip-front {
  background-image: url("./../image/sol-3.jpg");
}
section.solutions .flip-card .flip-front {
  display: flex;
  align-items: flex-end;
}
section.solutions .flip-card .flip-front::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
section.solutions .flip-card .flip-front .front-content {
  position: relative;
  padding: 30px 28px 32px;
  color: #fff;
  width: 100%;
}
section.solutions .flip-card .flip-front .front-content h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
  max-width: 100%;
}
@media screen and (max-width: 992px) {
  section.solutions .flip-card .flip-front .front-content h3 {
    max-width: 100%;
  }
}
section.solutions .flip-card .flip-front .front-content p {
  margin-top: 20px;
  min-height: 100px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1px;
}
section.solutions .flip-card .flip-front .front-content .btn-flip {
  margin: 40px auto 0;
  display: block;
  padding: 10px 20px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: 0.3s;
}
section.solutions .flip-card .flip-front .front-content .btn-flip::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.8em;
  margin-left: 6px;
  vertical-align: -0.05em;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='11' height='18' viewBox='0 0 11 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L10 9L1 17' stroke='%23F5F5F5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg width='11' height='18' viewBox='0 0 11 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L10 9L1 17' stroke='%23F5F5F5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
}
section.solutions .flip-card .flip-front .front-content .btn-flip:hover {
  background: rgba(255, 255, 255, 0.2);
}
section.solutions .flip-card .flip-back {
  transform: rotateY(180deg);
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
section.solutions .flip-card .flip-back .back-img {
  flex-shrink: 0;
}
section.solutions .flip-card .flip-back .back-img img {
  width: 100%;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.solutions .flip-card .flip-back .back-content {
  padding: 20px 24px 24px;
  background: #f0f0f0;
  flex: 1;
  overflow: auto;
}
section.solutions .flip-card .flip-back .back-content .tag {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  padding: 3px 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  margin-top: 14px;
}
section.solutions .flip-card .flip-back .back-content .tag:first-child {
  margin-top: 0;
}
section.solutions .flip-card .flip-back .back-content .tag.tag-blue {
  color: rgb(9, 119, 219);
  background: rgba(9, 119, 219, 0.2);
}
section.solutions .flip-card .flip-back .back-content .tag.tag-orange {
  color: #ea5717;
  background: rgba(234, 87, 23, 0.2);
}
section.solutions .flip-card .flip-back .back-content .tag.tag-green {
  color: #15a261;
  background: rgba(21, 162, 97, 0.2);
}
section.solutions .flip-card .flip-back .back-content ul li,
section.solutions .flip-card .flip-back .back-content p:not([class]) {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1px;
  color: rgb(16, 16, 16);
  margin-top: 6px;
}
section.solutions .flip-card .flip-back .back-content p:not([class]):first-child {
  margin-top: 0;
}
section.solutions .flip-card .flip-back .back-content ul {
  margin-top: 8px;
  list-style: none;
}
section.solutions .flip-card .flip-back .back-content ul li {
  position: relative;
  padding-left: 14px;
}
section.solutions .flip-card .flip-back .back-content ul li::before {
  content: "•";
  position: absolute;
  left: 2px;
  color: #6a6a6a;
}
section.solutions .flip-card .flip-back .back-content .highlight {
  margin-top: 18px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: rgb(0, 69, 132);
  letter-spacing: 0.05em;
}
section.solutions .flip-card .flip-back .back-content .highlight-sub {
  margin-top: 4px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: rgb(66, 66, 66);
}
section.achievements {
  padding: 110px 0;
}
@media screen and (max-width: 992px) {
  section.achievements {
    padding: 60px 0;
  }
}
section.achievements .container {
  display: flex;
  gap: 0px;
  align-items: flex-start;
}
@media screen and (max-width: 992px) {
  section.achievements .container {
    flex-direction: column;
    gap: 40px;
  }
}
section.achievements .sticky-head {
  width: 36%;
  flex-shrink: 0;
  position: sticky;
  top: 120px;
}
@media screen and (max-width: 992px) {
  section.achievements .sticky-head {
    width: 100%;
    position: static;
  }
}
section.achievements .sticky-head .label {
  text-align: left;
}
section.achievements .sticky-head .title-h2 {
  text-align: left;
  margin-top: 24px;
}
@media screen and (max-width: 992px) {
  section.achievements .sticky-head .title-h2 {
    margin-top: 16px;
  }
}
section.achievements .sticky-head .desc {
  text-align: left;
  width: 87%;
  letter-spacing: 1px;
}
@media screen and (max-width: 992px) {
  section.achievements .sticky-head .desc {
    width: 100%;
  }
}
section.achievements .list {
  flex: 1;
  min-width: 0;
  list-style: none;
}
@media screen and (max-width: 992px) {
  section.achievements .list {
    width: 100%;
  }
}
section.achievements .list li {
  display: flex;
  gap: 32px;
  padding: 30px 20px;
  border-top: 1px solid #d0d0d0;
  position: sticky;
  top: 120px;
  background: #f5f5f5;
}
section.achievements .list li:last-child {
  border-bottom: 1px solid #d0d0d0;
}
@media screen and (max-width: 992px) {
  section.achievements .list li {
    top: 90px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0 32px;
  }
}
section.achievements .list li .text {
  flex: 1;
}
section.achievements .list li .text h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  color: rgb(16, 16, 16);
  letter-spacing: 2px;
}
section.achievements .list li .text h3 .num {
  flex-shrink: 0;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: #0977db;
  color: #fff;
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
section.achievements .list li .text p {
  margin-top: 32px;
  font-size: 20px;
  line-height: 28px;
  color: rgb(16, 16, 16);
  letter-spacing: 0;
}
@media screen and (max-width: 992px) {
  section.achievements .list li .text p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 20px;
  }
}
section.achievements .list li .text p strong {
  color: rgb(234, 87, 23);
  font-weight: 700;
}
section.achievements .list li .img {
  width: 48%;
  flex-shrink: 0;
}
@media screen and (max-width: 992px) {
  section.achievements .list li .img {
    width: 100%;
  }
}
section.achievements .list li .img img {
  border-radius: 12px;
}
section.achievements .list li .img img.portrait {
  width: auto;
  max-height: 299px;
  margin: 0 auto;
}
section.global {
  padding: 40px 0 110px;
}
@media screen and (max-width: 992px) {
  section.global {
    padding: 20px 0 60px;
  }
}
section.global .label,
section.global .title-h2,
section.global .desc {
  text-align: left;
}
section.global .title-h2 {
  margin-top: 32px;
}
@media screen and (max-width: 992px) {
  section.global .title-h2 {
    font-size: 32px;
    margin-top: 16px;
  }
}
section.global .desc {
  margin-top: 40px;
}
@media screen and (max-width: 992px) {
  section.global .desc {
    margin-top: 24px;
  }
}
section.global .map-outer {
  position: relative;
  margin-top: 40px;
}
@media screen and (max-width: 992px) {
  section.global .map-outer {
    margin-left: -20px;
    margin-right: -20px;
    margin-top: 28px;
  }
}
section.global .map-hint {
  display: none;
}
@media screen and (max-width: 992px) {
  section.global .map-hint {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.6s ease;
  }
}
section.global .map-hint .hint-icon {
  animation: mapHintNudge 1.6s ease-in-out infinite;
}
section.global .map-hint.is-hidden {
  opacity: 0;
}
@media screen and (max-width: 992px) {
  section.global .map-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(28, 111, 209, 0.5) transparent;
  }
  section.global .map-wrap::-webkit-scrollbar {
    height: 4px;
  }
  section.global .map-wrap::-webkit-scrollbar-thumb {
    background: rgba(28, 111, 209, 0.5);
    border-radius: 999px;
  }
}
section.global .map-wrap .map-inner {
  position: relative;
}
@media screen and (max-width: 992px) {
  section.global .map-wrap .map-inner {
    min-width: 1240px;
  }
}
section.global .map-wrap .map-pulse {
  position: absolute;
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgb(9, 119, 219);
  cursor: pointer;
  z-index: 2;
}
section.global .map-wrap .map-pulse::before, section.global .map-wrap .map-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgb(9, 119, 219);
  animation: mapPulse 2.4s cubic-bezier(0.2, 0.6, 0.3, 1) infinite;
}
section.global .map-wrap .map-pulse::after {
  animation-delay: 1.2s;
}
@media screen and (max-width: 992px) {
  section.global .map-wrap .map-pulse {
    width: 12px;
    height: 12px;
  }
}
section.global .map-wrap .hotspot {
  position: absolute;
  width: 14%;
  height: 12.3%;
  background: transparent;
  border: 0;
  cursor: pointer;
}
section.global .map-wrap .hotspot[data-country=china] {
  left: 69.7%;
  top: 23.3%;
}
section.global .map-wrap .hotspot[data-country=italy] {
  left: 43.7%;
  top: 23.9%;
}
section.global .map-wrap .hotspot[data-country=usa] {
  left: 1.8%;
  top: 31.7%;
}
section.global .map-wrap .hotspot[data-country=india] {
  left: 54.7%;
  top: 44.3%;
}
section.global .map-wrap .hotspot[data-country=taiwan] {
  left: 82.4%;
  top: 44.3%;
}
section.global .map-wrap .hotspot[data-country=mexico] {
  left: 21.8%;
  top: 46.5%;
}
section.global .map-wrap .hotspot[data-country=vietnam] {
  left: 63.1%;
  top: 60.4%;
}
section.global .map-wrap .hotspot[data-country=malaysia] {
  left: 79%;
  top: 64.9%;
}
section.global .map-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  cursor: pointer;
}
section.global .map-mask[hidden] {
  display: none;
}
section.global .country-card {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1002;
  width: 90%;
  max-width: 976px;
  box-shadow: 0 12px 40px rgba(10, 35, 66, 0.18);
}
section.global .country-card[hidden] {
  display: none;
}
section.global .country-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 992px) {
  section.global .country-card {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    max-height: calc(100dvh - 40px);
    overflow-y: auto;
  }
}
section.global .country-card .close {
  position: absolute;
  right: 40px;
  top: 40px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media screen and (max-width: 992px) {
  section.global .country-card .close {
    right: 28px;
    top: 28px;
  }
}
section.global .country-card .close img {
  display: block;
  width: 100%;
  height: 100%;
}
section.global .country-card .close:hover {
  opacity: 0.75;
}
section.global .country-card .fade-swap {
  animation: countryFade 0.35s ease;
}
section.global .country-card .img {
  width: 44%;
  flex-shrink: 0;
  align-self: center;
}
@media screen and (max-width: 992px) {
  section.global .country-card .img {
    width: 100%;
    align-self: stretch;
  }
}
section.global .country-card .img img {
  border-radius: 8px;
  background: #dcdddd;
  min-height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.global .country-card .content {
  flex: 1;
  align-self: center;
}
section.global .country-card .content .en {
  color: rgb(9, 119, 219);
  font-family: "Outfit", "Noto Sans TC", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1px;
}
section.global .country-card .content h3 {
  margin-top: 6px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: rgb(16, 16, 16);
  letter-spacing: 2px;
}
section.global .country-card .content h4 {
  position: relative;
  margin-top: 24px;
  padding-left: 12px;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: rgb(16, 16, 16);
  letter-spacing: 2px;
}
section.global .country-card .content h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 0.72em;
  background: rgb(234, 87, 23);
}
section.global .country-card .content .text {
  margin-top: 24px;
  font-size: 20px;
  line-height: 26px;
  color: rgb(16, 16, 16);
  letter-spacing: 1px;
  padding-right: 15px;
}
@media screen and (max-width: 992px) {
  section.global .country-card .content .text {
    padding-right: 0px;
  }
}
section.global .country-card .content .carousel-nav {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
section.global .country-card .content .carousel-nav[hidden] {
  display: none;
}
section.global .country-card .content .carousel-nav .c-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: transparent center/contain no-repeat;
  transition: opacity 0.3s;
}
section.global .country-card .content .carousel-nav .c-arrow:hover {
  opacity: 0.8;
}
section.global .country-card .content .carousel-nav .c-arrow.prev {
  background-image: url("./../image/arrow-prev-2.svg");
}
section.global .country-card .content .carousel-nav .c-arrow.next {
  background-image: url("./../image/arrow-next-2.svg");
}
@media screen and (min-width: 993px) {
  section.global .country-card .content .carousel-nav {
    display: block;
    margin-top: 0;
  }
  section.global .country-card .content .carousel-nav .c-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  section.global .country-card .content .carousel-nav .c-arrow.prev {
    left: 16px;
  }
  section.global .country-card .content .carousel-nav .c-arrow.next {
    right: 16px;
  }
}
@keyframes countryFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
section.milestones {
  padding: 40px 0px 0px;
}
@media screen and (max-width: 992px) {
  section.milestones {
    padding: 20px 0px 0px;
  }
}
section.milestones .timeline li[data-aos=fade-up] {
  transform: translate3d(0, 30px, 0);
}
section.milestones .timeline li[data-aos=fade-up].aos-animate {
  transform: translate3d(0, 0, 0);
}
section.milestones .timeline {
  position: relative;
  list-style: none;
  margin-top: 70px;
  padding-bottom: 10px;
  display: flex;
}
@media screen and (max-width: 992px) {
  section.milestones .timeline {
    margin-top: 40px;
  }
}
section.milestones .timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgb(9, 119, 219);
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  section.milestones .timeline::before {
    top: 20px;
  }
}
section.milestones .timeline .tl-col {
  width: 50%;
  display: flex;
  flex-direction: column;
}
section.milestones .timeline .tl-col.tl-col-left {
  padding-top: 150px;
}
@media screen and (max-width: 992px) {
  section.milestones .timeline .tl-col.tl-col-left {
    padding-top: 120px;
  }
}
@media screen and (max-width: 768px) {
  section.milestones .timeline .tl-col.tl-col-left {
    padding-top: 148px;
  }
}
section.milestones .timeline li {
  position: relative;
  width: 100%;
  padding-bottom: 58px;
}
@media screen and (max-width: 992px) {
  section.milestones .timeline li {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  section.milestones .timeline li {
    padding-bottom: 36px;
  }
}
section.milestones .timeline li.left {
  text-align: right;
  padding-left: 20px;
  padding-right: 140px;
}
section.milestones .timeline li.left figure img {
  border-top-right-radius: 0;
}
@media screen and (max-width: 992px) {
  section.milestones .timeline li.left {
    padding-right: 70px;
  }
}
@media screen and (max-width: 768px) {
  section.milestones .timeline li.left {
    padding-left: 0;
    padding-right: 20px;
  }
}
section.milestones .timeline li.left figure {
  margin-left: auto;
}
section.milestones .timeline li.left figure figcaption {
  text-align: left;
}
section.milestones .timeline li.right {
  padding-left: 140px;
  padding-right: 20px;
}
section.milestones .timeline li.right figure img {
  border-top-left-radius: 0;
}
@media screen and (max-width: 992px) {
  section.milestones .timeline li.right {
    padding-left: 70px;
  }
}
@media screen and (max-width: 768px) {
  section.milestones .timeline li.right {
    padding-left: 20px;
    padding-right: 0;
  }
}
section.milestones .timeline li:not(.has-year)::before {
  content: "";
  position: absolute;
  top: 0;
  width: 124px;
  height: 2px;
  background: rgb(9, 119, 219);
}
@media screen and (max-width: 992px) {
  section.milestones .timeline li:not(.has-year)::before {
    width: 54px;
  }
}
@media screen and (max-width: 768px) {
  section.milestones .timeline li:not(.has-year)::before {
    left: 0;
    right: 0;
    width: auto;
    height: 2px;
  }
}
section.milestones .timeline li.left::before {
  right: 0;
}
section.milestones .timeline li.right::before {
  left: 0;
}
@media screen and (max-width: 768px) {
  section.milestones .timeline li:not(.has-year) figure {
    margin-top: 16px;
  }
}
section.milestones .timeline li.has-year::after {
  content: "";
  position: absolute;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgb(9, 119, 219);
  transform: translateY(-50%);
}
@media screen and (max-width: 992px) {
  section.milestones .timeline li.has-year::after {
    top: 15px;
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  section.milestones .timeline li.has-year::after {
    top: 20px;
    width: 8px;
    height: 8px;
  }
}
section.milestones .timeline li.left.has-year::after {
  right: -6px;
}
@media screen and (max-width: 992px) {
  section.milestones .timeline li.left.has-year::after {
    right: -5px;
  }
}
@media screen and (max-width: 768px) {
  section.milestones .timeline li.left.has-year::after {
    right: -4px;
  }
}
section.milestones .timeline li.right.has-year::after {
  left: -6px;
}
@media screen and (max-width: 992px) {
  section.milestones .timeline li.right.has-year::after {
    left: -5px;
  }
}
@media screen and (max-width: 768px) {
  section.milestones .timeline li.right.has-year::after {
    left: -4px;
  }
}
section.milestones .timeline li .year {
  position: absolute;
  top: 0;
  font-family: "Outfit", "Noto Sans TC", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: rgb(9, 119, 219);
  line-height: 1;
  letter-spacing: 2px;
}
@media screen and (max-width: 992px) {
  section.milestones .timeline li .year {
    font-size: 40px;
  }
}
section.milestones .timeline li.left .year {
  right: 20px;
}
@media screen and (max-width: 992px) {
  section.milestones .timeline li.left .year {
    right: 14px;
  }
}
section.milestones .timeline li.right .year {
  left: 20px;
}
@media screen and (max-width: 992px) {
  section.milestones .timeline li.right .year {
    left: 14px;
  }
}
@media screen and (max-width: 768px) {
  section.milestones .timeline li.has-year figure {
    margin-top: 52px;
  }
}
@media screen and (max-width: 768px) {
  section.milestones .timeline li.has-year {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  section.milestones .timeline li.has-year:first-child {
    margin-top: 0;
  }
}
section.milestones .timeline li figure {
  margin: 0;
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  section.milestones .timeline li figure {
    max-width: none;
  }
}
section.milestones .timeline li figure img {
  border-radius: 12px;
}
section.milestones .timeline li figure img.rect {
  border-radius: 0;
}
section.milestones .timeline li figure figcaption {
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.3;
  color: rgb(16, 16, 16);
  letter-spacing: 1px;
}
@media screen and (max-width: 992px) {
  section.milestones .timeline li figure figcaption {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  section.milestones .timeline li figure figcaption {
    font-size: 14px;
    line-height: 1.45;
    margin-top: 16px;
  }
}
section.milestones .timeline li.text-only figure {
  margin-top: 0;
  min-height: 299px;
  box-sizing: border-box;
  padding: 96px 0;
}
@media screen and (max-width: 768px) {
  section.milestones .timeline li.text-only figure {
    margin-top: 40px;
    min-height: 0;
    padding: 0;
  }
}
section.milestones .timeline li.text-only figure figcaption {
  text-align: left;
  margin-top: 0;
}
@media screen and (min-width: 769px) {
  section.milestones .timeline li.text-only.has-year .year {
    top: 96px;
  }
}
@media screen and (min-width: 769px) {
  section.milestones .timeline li.text-only.has-year::after {
    top: 116px;
  }
}
section.statement {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 992px) {
  section.statement {
    min-height: calc(100svh - 60px);
  }
}
section.statement p {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #191919;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 992px) {
  section.statement p {
    font-size: 24px;
    line-height: 32px;
  }
}
section.statement p span {
  color: #0977db;
}
section.statement p + p {
  margin-top: 36px;
}
section.partners {
  padding: 0px 0 110px;
}
@media screen and (max-width: 992px) {
  section.partners {
    padding: 60px 0;
  }
}
section.partners .partner-grid {
  margin-top: 60px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 20px;
  max-width: 925px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 992px) {
  section.partners .partner-grid {
    gap: 20px;
    max-width: none;
  }
}
section.partners .partner-card {
  position: relative;
  width: calc((100% - 40px) / 3);
  min-width: 220px;
  border-radius: 14px;
  overflow: hidden;
  background: #0a2342;
}
@media screen and (max-width: 992px) {
  section.partners .partner-card {
    width: calc((100% - 20px) / 2);
    min-width: 0;
  }
}
@media screen and (max-width: 992px) {
  section.partners .partner-card[data-partner=liu] {
    order: 1;
  }
  section.partners .partner-card[data-partner=chiao] {
    order: 2;
  }
  section.partners .partner-card[data-partner=tseng] {
    order: 3;
  }
  section.partners .partner-card[data-partner=shen] {
    order: 4;
  }
  section.partners .partner-card[data-partner=kuo] {
    order: 5;
  }
  section.partners .partner-card[data-partner=hsu] {
    order: 6;
  }
  section.partners .partner-card[data-partner=chen] {
    order: 7;
  }
}
section.partners .partner-card .photo img {
  aspect-ratio: 295/460;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
section.partners .partner-card .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 20px 20px;
  text-align: center;
  color: #fff;
  display: grid;
  grid-template-rows: 1fr 0fr auto;
  transition: grid-template-rows 0.45s ease;
  background: linear-gradient(180deg, rgba(10, 35, 66, 0) 0%, rgba(10, 35, 66, 0.9) 60%);
}
section.partners .partner-card .info .who {
  overflow: hidden;
  min-height: 0;
  opacity: 1;
  display: grid;
  align-content: end;
  transition: opacity 0.25s ease 0.18s;
}
section.partners .partner-card .info .who h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  letter-spacing: 2px;
}
section.partners .partner-card .info .who p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1;
  color: rgb(255, 255, 255);
}
section.partners .partner-card .info .intro-text {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  display: grid;
  align-content: end;
  transition: opacity 0.25s ease;
}
section.partners .partner-card .info .intro-text p {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1px;
  text-align: left;
}
section.partners .partner-card .info .btn-interview {
  margin: 24px auto 0;
  justify-self: center;
  padding: 9px 26px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 992px) {
  section.partners .partner-card .info .btn-interview {
    padding: 9px 20px;
  }
}
section.partners .partner-card .info .btn-interview i {
  font-style: normal;
  margin-left: 4px;
}
section.partners .partner-card .info .btn-interview:hover {
  background: #fff;
  color: #10457f;
}
@media (hover: hover) {
  section.partners .partner-card:hover .info {
    grid-template-rows: 0fr 1fr auto;
  }
  section.partners .partner-card:hover .info .who {
    opacity: 0;
    transition-delay: 0s;
  }
  section.partners .partner-card:hover .info .intro-text {
    opacity: 1;
    transition-delay: 0.18s;
  }
}
section.partners .partner-card.show-intro .info {
  grid-template-rows: 0fr 1fr auto;
}
section.partners .partner-card.show-intro .info .who {
  opacity: 0;
  transition-delay: 0s;
}
section.partners .partner-card.show-intro .info .intro-text {
  opacity: 1;
  transition-delay: 0.18s;
}
section.partners .partner-modal {
  position: relative;
  z-index: 5;
  scroll-margin-top: 112px;
}
@media screen and (max-width: 992px) {
  section.partners .partner-modal {
    scroll-margin-top: 92px;
  }
}
section.partners .partner-modal[hidden] {
  display: none;
}
section.partners .partner-detail {
  position: relative;
  width: 100%;
  background: #f5f5f5;
  border: 1px solid rgb(9, 119, 219);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(10, 35, 66, 0.18);
  animation: fadeInSoft 0.35s ease both;
}
section.partners .partner-detail .close {
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 2;
  display: block;
  margin: 16px 16px -52px auto;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media screen and (max-width: 992px) {
  section.partners .partner-detail .close {
    top: 12px;
    right: 12px;
  }
}
section.partners .partner-detail .close img {
  display: block;
  width: 100%;
  height: 100%;
}
section.partners .partner-detail .close:hover {
  opacity: 0.75;
}
section.partners .partner-detail .detail-hero {
  position: relative;
}
section.partners .partner-detail .detail-hero img {
  width: 100%;
  border-radius: 16px 16px 0 0;
}
section.partners .partner-detail .detail-hero .hero-text {
  position: absolute;
  left: 3.5%;
  bottom: 18%;
  color: #fff;
}
section.partners .partner-detail .detail-hero .hero-text p {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 2px;
}
@media screen and (max-width: 992px) {
  section.partners .partner-detail .detail-hero .hero-text p {
    font-size: 16px;
    line-height: 20px;
  }
}
section.partners .partner-detail .detail-hero .hero-text h3 {
  margin-top: 8px;
  font-size: 48px;
  line-height: 70px;
  font-weight: 700;
  letter-spacing: 2px;
}
@media screen and (max-width: 992px) {
  section.partners .partner-detail .detail-hero .hero-text h3 {
    font-size: 24px;
    line-height: 32px;
  }
}
section.partners .partner-detail .detail-body {
  padding: 40px 60px 60px;
}
@media screen and (max-width: 992px) {
  section.partners .partner-detail .detail-body {
    padding: 24px 20px 40px;
  }
}
section.partners .partner-detail .detail-body .date {
  font-size: 16px;
  color: #0977db;
  font-weight: 600;
}
section.partners .partner-detail .detail-body .date em {
  font-style: normal;
  color: #616161;
  font-weight: 400;
  margin-left: 12px;
  font-size: 20px;
}
section.partners .partner-detail .detail-body .detail-headline {
  margin-top: 36px;
  white-space: pre-line;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.6;
  color: #10457f;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 992px) {
  section.partners .partner-detail .detail-body .detail-headline {
    font-size: 21px;
  }
}
section.partners .partner-detail .detail-body .article {
  margin-top: 24px;
}
section.partners .partner-detail .detail-body .article p {
  font-size: 20px;
  line-height: 26px;
  color: rgb(16, 16, 16);
  letter-spacing: 1px;
}
section.partners .partner-detail .detail-body .article p + p {
  margin-top: 26px;
}
section.partners .partner-detail .detail-body .article p + h4 {
  margin-top: 48px;
}
section.partners .partner-detail .detail-body .article h4 {
  position: relative;
  margin-top: 48px;
  padding-left: 12px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #191919;
  letter-spacing: 2px;
}
section.partners .partner-detail .detail-body .article h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: rgb(234, 87, 23);
}
section.partners .partner-detail .detail-body .article h4 + p {
  margin-top: 48px;
}
section.partners .partner-detail .detail-body .article .blessing {
  margin-top: 32px;
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
  color: rgb(0, 69, 132);
  letter-spacing: 2px;
}
@media screen and (max-width: 992px) {
  section.partners .partner-detail .detail-body .article .blessing {
    font-size: 24px;
    line-height: 32px;
  }
}
section.partners .partner-detail .detail-body .article strong {
  color: rgb(9, 119, 219);
  font-weight: 700;
}
section.partners .partner-detail .detail-body .video-cta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16/7;
  background: #dcdddd;
  border-radius: 8px;
  text-decoration: none;
  color: #191919;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: 0.3s;
}
@media screen and (max-width: 992px) {
  section.partners .partner-detail .detail-body .video-cta {
    font-size: 16px;
  }
}
section.partners .partner-detail .detail-body .video-cta:hover {
  background: #d0d0d0;
}
section.vision {
  padding: 0px 0 110px;
}
@media screen and (max-width: 992px) {
  section.vision {
    padding: 0px 0;
  }
}
section.vision .container {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
@media screen and (max-width: 992px) {
  section.vision .container {
    flex-direction: column;
    align-items: normal;
    gap: 20px;
  }
}
section.vision .content {
  width: 58%;
}
@media screen and (max-width: 992px) {
  section.vision .content {
    width: 100%;
  }
}
section.vision .content .label,
section.vision .content .title-h2 {
  text-align: left;
}
section.vision .content .title-h2 .lead-sub {
  display: block;
  margin-top: 8px;
}
section.vision .content .article {
  margin-top: 28px;
}
section.vision .content .article p {
  font-size: 20px;
  line-height: 28px;
  color: #373737;
  letter-spacing: 1px;
}
@media screen and (max-width: 992px) {
  section.vision .content .article p {
    font-size: 16px;
    line-height: 1.3;
  }
}
section.vision .content .article p + p {
  margin-top: 16px;
}
section.vision .content .article h4 {
  position: relative;
  margin-top: 36px;
  margin-bottom: 14px;
  padding-left: 12px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #191919;
  letter-spacing: 2px;
}
section.vision .content .article h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: rgb(234, 87, 23);
}
section.vision .side {
  width: 42%;
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}
@media screen and (max-width: 992px) {
  section.vision .side {
    width: 100%;
    position: static;
    height: auto;
    display: block;
    order: -1;
  }
}
section.vision .side .portrait-slider {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
section.vision .side .portrait-slider .slide img,
section.vision .side .portrait-slider .slide .img-placeholder {
  width: 100%;
  max-height: 85vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  background: #dcdddd;
}
section.vision .side .portrait-slider .slide .img-placeholder.alt {
  background: #aebfd2;
}
section.interviews .award-winner {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 90px 6.9%;
  min-height: 100vh;
}
section.interviews .award-winner.card-right {
  justify-content: flex-end;
}
section.interviews .award-winner.card-left {
  justify-content: flex-start;
}
@media screen and (max-width: 992px) {
  section.interviews .award-winner {
    display: block;
    padding: calc(100vh - 60px) 0 40px;
    min-height: 0;
  }
}
section.interviews .award-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
}
@media screen and (max-width: 992px) {
  section.interviews .award-bg {
    background-attachment: scroll;
  }
}
section.interviews .bg-chen {
  background-image: url("./../image/award-chen.jpg");
}
@media screen and (max-width: 992px) {
  section.interviews .bg-chen {
    background-image: url("./../image/award-chen-m.jpg");
  }
}
section.interviews .bg-lin {
  background-image: url("./../image/award-lin.jpg");
}
@media screen and (max-width: 992px) {
  section.interviews .bg-lin {
    background-image: url("./../image/award-lin-m.jpg");
  }
}
section.interviews .award-card {
  position: relative;
  z-index: 1;
  width: 46%;
  padding: 48px;
  background: rgba(245, 245, 245, 0.92);
  backdrop-filter: blur(2px);
  border-radius: 16px;
}
@media screen and (max-width: 992px) {
  section.interviews .award-card {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: 28px 20px;
    background: rgba(245, 245, 245, 0.96);
  }
}
section.interviews .award-card .label {
  text-align: left;
  color: rgb(9, 119, 219);
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}
section.interviews .award-card .label span {
  margin: 0 6px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 992px) {
  section.interviews .award-card .label {
    font-size: 16px;
  }
}
section.interviews .award-card h3 {
  margin-top: 28px;
  font-size: 40px;
  line-height: 60px;
  font-weight: 700;
  color: rgb(16, 16, 16);
  letter-spacing: 2px;
}
section.interviews .award-card h3 span {
  font-size: 40px;
  margin-left: 8px;
}
@media screen and (max-width: 992px) {
  section.interviews .award-card h3 {
    font-size: 32px;
    line-height: 40px;
    margin-top: 20px;
  }
  section.interviews .award-card h3 span {
    font-size: 32px;
  }
}
section.interviews .award-card .award-article {
  margin-top: 24px;
}
section.interviews .award-card .award-article p {
  font-size: 16px;
  line-height: 20px;
  color: rgb(16, 16, 16);
  letter-spacing: 1px;
}
section.interviews .award-card .award-article p + p {
  margin-top: 16px;
}
section.interviews .award-card .award-article strong {
  color: rgb(16, 16, 16);
  font-weight: 700;
}
section.interviews .award-card .award-article h4 {
  margin-top: 28px;
  font-size: 18px;
  font-weight: 700;
  color: rgb(16, 16, 16);
  letter-spacing: 1px;
}
section.interviews .award-card .award-article .q-topic {
  margin-top: 14px;
  font-weight: 700;
  color: rgb(16, 16, 16);
}
section.cta-banner {
  background-image: url("./../image/footer-banner.jpg");
  background-size: cover;
  background-position: center;
  height: min(41.7vw, 560px);
}
@media screen and (max-width: 992px) {
  section.cta-banner {
    height: auto;
    background-image: none;
    background-color: rgb(0, 69, 132);
  }
}
section.cta-banner .cta-content {
  position: absolute;
  left: 6.9%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 992px) {
  section.cta-banner .cta-content {
    position: static;
    transform: none;
    align-items: center;
    gap: 0;
    padding: 48px 20px;
  }
}
section.cta-banner .banner-logo {
  width: 16.5vw;
  min-width: 150px;
  height: auto;
}
@media screen and (max-width: 992px) {
  section.cta-banner .banner-logo {
    width: 55%;
    min-width: 0;
  }
}
section.cta-banner .btn-cta {
  display: inline-block;
  padding: 15px 20px;
  background: rgb(234, 87, 23);
  color: #f5f5f5;
  text-decoration: none;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 999px;
  transition: 0.3s;
  white-space: nowrap;
  line-height: 1;
}
@media screen and (max-width: 992px) {
  section.cta-banner .btn-cta {
    position: static;
    margin-top: 40px;
    background: #fff;
    color: rgb(0, 69, 132);
    font-weight: 700;
    border-radius: 999px;
    font-size: 16px;
  }
}
section.cta-banner .btn-cta i {
  font-style: normal;
  margin-left: 8px;
}
section.cta-banner .btn-cta:hover {
  background: #14549f;
}
@media screen and (max-width: 992px) {
  section.cta-banner .btn-cta:hover {
    background: #e8f1fa;
  }
}
section.cta-banner .cta-photo {
  display: none;
}
@media screen and (max-width: 992px) {
  section.cta-banner .cta-photo {
    display: block;
    background-image: url("./../image/footer-banner.jpg");
    background-size: cover;
    background-position: center;
    aspect-ratio: 2160/900;
  }
}

@keyframes scrollLine {
  0% {
    top: -30px;
  }
  100% {
    top: 70px;
  }
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInSoft {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mapPulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  70% {
    opacity: 0;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}
@keyframes mapHintNudge {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-8px);
  }
  75% {
    transform: translateX(8px);
  }
}
footer {
  padding: 30px 20px;
  text-align: center;
  width: 100%;
}
footer .container p {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  color: #0a2342;
}
footer .container a {
  color: #0a2342;
  text-underline-offset: 3px;
}/*# sourceMappingURL=style.css.map */