* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Serif TC", serif;
  scroll-behavior: smooth;
}

main {
  color: #373737;
}

img {
  width: 100%;
  vertical-align: middle;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgba(240, 240, 240, 0.8);
  overflow-x: hidden;
}

header {
  font-family: "Noto Sans TC", sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(240, 240, 240, 0.8);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  header .header-container {
    min-height: 60px;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 10px 0 20px;
  }
}

.logo-1 img,
.logo-2 img {
  height: 32px;
  width: auto;
  display: block;
}
@media screen and (max-width: 1200px) {
  .logo-1 img,
  .logo-2 img {
    height: 32px;
  }
}
@media screen and (max-width: 499px) {
  .logo-1 img,
  .logo-2 img {
    height: 28px;
  }
}

@media screen and (max-width: 1200px) {
  .logo-2.pc {
    display: none;
  }
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 28px;
}
@media screen and (max-width: 1200px) {
  .mobile-menu-toggle {
    display: flex;
    gap: 3px;
  }
}
.mobile-menu-toggle .hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1200px) {
  .nav-wrapper {
    position: fixed;
    top: 0;
    left: 100%;
    right: 0;
    bottom: 0;
    background-color: #f0f0f0;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    padding: 60px 0px 20px;
    transition: opacity 0.5s ease;
    opacity: 0;
  }
}
@media screen and (max-width: 1200px) {
  .nav-wrapper.active {
    left: 0;
    height: 100vh;
    opacity: 1;
  }
}

.nav-menu {
  display: flex;
  align-self: normal;
}
@media screen and (max-width: 1200px) {
  .nav-menu {
    width: 100%;
  }
}
.nav-menu ul {
  display: flex;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  .nav-menu ul {
    flex-direction: column;
    width: 100%;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgb(0, 181, 244);
  }
}
.nav-menu li {
  position: relative;
}
@media screen and (max-width: 992px) {
  .nav-menu li {
    width: 100%;
    display: flex;
  }
  .nav-menu li::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 11px;
    display: inline-block;
    background-image: url("./../images/arrow-forward-b.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.nav-menu li a {
  font-family: "Noto Sans TC", sans-serif;
  color: #333;
  text-decoration: none;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .nav-menu li a {
    width: 100%;
    padding: 18px 20px;
    justify-content: flex-start;
    font-size: 22px;
  }
}

@media screen and (max-width: 1200px) {
  body.menu-open {
    overflow: hidden;
  }
}

footer {
  background-color: #c8c8c8;
  padding: 30px 20px 30px;
  text-align: center;
  width: 100%;
}
footer p {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
  color: #fff;
}
footer p a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s ease;
}
@media screen and (min-width: 993px) {
  footer p a:hover {
    opacity: 0.7;
  }
}

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

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

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

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

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

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

h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 55px;
  color: #373737;
  position: relative;
  display: inline-block;
  max-width: 900px;
  margin: auto;
  letter-spacing: 2px;
}
@media screen and (max-width: 992px) {
  h2 {
    font-size: 32px;
    line-height: 42px;
    text-align: center;
  }
}
h2::after {
  content: "";
  position: relative;
  width: 100%;
  height: 5px;
  z-index: 1;
  display: block;
  margin-top: 7px;
  background-size: cover;
  background: linear-gradient(90deg, #00b5f4, #00b5f4, rgba(0, 183, 244, 0.3764705882), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

section {
  text-align: center;
}
section.background-fixed-module-1 {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
section.background-fixed-module-1 .video-background-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
section.background-fixed-module-1 .video-background-layer .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}
section.background-fixed-module-1 .video-background-layer .bg-video.active {
  opacity: 1;
  z-index: 1;
}
section.background-fixed-module-1::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 0;
}
section.background-fixed-module-1 .container {
  position: relative;
  z-index: 1;
}
section.background-fixed-module-1 .container::-webkit-scrollbar {
  display: none;
}
section.background-fixed-module-1 .container .item {
  min-height: 100vh;
  display: flex;
  text-align: left;
  align-items: center;
  padding: 2rem 0;
}
section.background-fixed-module-1 .container .item:nth-child(1) {
  position: sticky;
  top: 0;
  z-index: 0;
  background-color: transparent;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 65vh;
}
section.background-fixed-module-1 .container .item:nth-child(1)::after {
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
}
section.background-fixed-module-1 .container .item:nth-child(2) {
  align-items: self-start;
}
section.background-fixed-module-1 .container .item:nth-child(2) .scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 160px;
  color: #fff;
  animation: scroll 0.7s linear infinite alternate;
  width: 26px;
  cursor: pointer;
}
@keyframes scroll {
  0% {
    top: 160px;
  }
  100% {
    top: 170px;
  }
}
@media screen and (max-width: 992px) {
  section.background-fixed-module-1 .container .item:nth-child(2) .scroll {
    width: 26px;
    right: 20px;
    top: 170px;
  }
  @keyframes scroll {
    0% {
      top: 170px;
    }
    100% {
      top: 180px;
    }
  }
}
section.background-fixed-module-1 .container .item:not(:nth-child(1)) {
  position: relative;
  z-index: 1;
}
section.background-fixed-module-1 .container .item .content {
  max-width: 100%;
  padding: 0px 100px;
}
@media screen and (max-width: 992px) {
  section.background-fixed-module-1 .container .item .content {
    max-width: calc(100% - 0px);
    padding: 0px 30px;
  }
}
section.background-fixed-module-1 .container .item .content h3 {
  font-size: 40px;
  color: #fff;
  line-height: 55px;
  letter-spacing: 2.3px;
  position: relative;
  font-weight: 0;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.44);
  font-family: "Noto Serif TC", serif;
}
@media screen and (max-width: 992px) {
  section.background-fixed-module-1 .container .item .content h3 {
    font-size: 32px;
    line-height: 42px;
  }
}
section.background-fixed-module-1 .container .item .content h3::after {
  content: "";
  position: relative;
  width: 100%;
  height: 5px;
  margin-top: 10px;
  z-index: 1;
  display: block;
  background-size: cover;
  background: linear-gradient(90deg, #fff, #fff, rgba(255, 255, 255, 0.4039215686), rgba(255, 255, 255, 0.4039215686), rgba(255, 255, 255, 0));
}
section.background-fixed-module-1 .container .item .content p {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 1px;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.44);
  color: #fff;
  position: relative;
}
section.background-fixed-module-1 .container .item .content p::after {
  content: "";
  position: relative;
  width: 100%;
  height: 2px;
  margin-top: 7px;
  z-index: 1;
  display: block;
  background-size: cover;
  background: linear-gradient(90deg, #fff, #fff, rgba(255, 255, 255, 0.4039215686), rgba(255, 255, 255, 0.4039215686), rgba(255, 255, 255, 0));
}
section.MediaScrollModule_1 {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  position: relative;
  width: 100%;
  background-color: #000;
  z-index: 1;
}
section.MediaScrollModule_1 .video-area {
  grid-column: 1/-1;
  grid-row: 1/-1;
  z-index: 2;
  position: sticky;
  top: 0;
  height: 100vh;
  align-self: start;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-image: url("./../images/bg-dust.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: bgMove 10s infinite alternate ease-in-out;
}
section.MediaScrollModule_1 .video-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  pointer-events: none;
}
section.MediaScrollModule_1 .video-area .media-wrapper {
  position: relative;
  max-width: 655px;
  width: calc(100% - 40px);
  aspect-ratio: 655/376;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 15px;
  margin-bottom: 30px;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.MediaScrollModule_1 .video-area .media-wrapper video,
section.MediaScrollModule_1 .video-area .media-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
section.MediaScrollModule_1 .video-area .content {
  max-width: 1150px;
  width: 100%;
  min-height: 100px;
  text-align: center;
  padding: 0 20px;
  z-index: 10;
  opacity: 0;
  transform: translateY(0);
}
@media screen and (max-width: 992px) {
  section.MediaScrollModule_1 .video-area .content {
    max-width: 95%;
  }
}
section.MediaScrollModule_1 .video-area .content.fade-in {
  animation: textFadeIn 0.8s ease-out forwards;
}
section.MediaScrollModule_1 .video-area .content h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  line-height: 42px;
}
@media screen and (min-width: 992px) {
  section.MediaScrollModule_1 .video-area .content h3 {
    font-size: 40px;
    line-height: 55px;
  }
}
section.MediaScrollModule_1 .video-area .content h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  margin-top: 10px;
  background: linear-gradient(90deg, #fff, #fff, #fff, #fff, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5), transparent);
}
section.MediaScrollModule_1 .video-area .content p {
  color: #fff;
  font-size: 22px;
  line-height: 1.6;
  position: relative;
  display: inline-block;
  text-align: left;
  text-align: center;
}
@media screen and (min-width: 992px) {
  section.MediaScrollModule_1 .video-area .content p {
    font-size: 22px;
  }
}
section.MediaScrollModule_1 .video-area .content p::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 5px;
  background: linear-gradient(90deg, #fff, #fff, #fff, #fff, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5), transparent);
}
section.MediaScrollModule_1 .video-change-slider {
  grid-column: 1/-1;
  grid-row: 1/-1;
  z-index: 3;
  pointer-events: none;
}
section.MediaScrollModule_1 .video-change-slider .item {
  width: 100%;
  height: 130vh;
}
section.MediaScrollModule_1 .video-change-slider .item:first-child {
  height: 130vh;
}
section.MediaScrollModule_1 .video-change-slider .item:last-child {
  height: 150vh;
}
@keyframes bgMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 10% 10%;
  }
}
@keyframes textFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
section.section-200e-module {
  --ticker-base-size: 50px;
  --ticker-spacing-mult: 1.4;
  --ticker-item-height: calc(
    var(--ticker-base-size) * var(--ticker-spacing-mult)
  );
  --ticker-font-size-base: 40px;
  --ticker-font-size-active: 50px;
  --ticker-visible-count: 13;
  --ticker-container-height: calc(
    var(--ticker-item-height) * var(--ticker-visible-count)
  );
  --ticker-baseline-offset: 16px;
  --ticker-max-list-width: 550px !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  opacity: 0;
  transition: opacity 1s ease;
  background: #f0f0f0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  section.section-200e-module {
    --ticker-base-size: 30px;
    --ticker-font-size-base: 20px;
    --ticker-font-size-active: 30px;
    --ticker-item-height: 42px;
    --ticker-visible-count: 13;
    --ticker-container-height: calc(42px * 13);
    --ticker-baseline-offset: 12px;
    --ticker-max-list-width: 360px !important;
  }
}
section.section-200e-module .carousel-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}
section.section-200e-module .carousel-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
section.section-200e-module .scrolling-window {
  height: var(--ticker-container-height);
  width: var(--ticker-max-list-width);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
}
section.section-200e-module .scrolling-list {
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  will-change: transform;
}
section.section-200e-module .text-item {
  height: var(--ticker-item-height);
  display: flex;
  align-items: center;
  font-size: var(--ticker-font-size-base);
  font-weight: 600;
  font-style: italic;
  font-family: "Playfair", serif;
  color: #c8c8c8;
  transition: all 0.5s ease;
  white-space: nowrap;
  padding-left: 5px;
  margin-left: 165px;
}
@media (max-width: 992px) {
  section.section-200e-module .text-item {
    margin-left: 140px;
    font-size: 32px;
  }
}
section.section-200e-module .text-item.active {
  font-size: var(--ticker-font-size-base);
  font-weight: 600;
  opacity: 1;
}
@media (max-width: 992px) {
  section.section-200e-module .text-item.active {
    font-size: 32px;
  }
}
section.section-200e-module .main-title {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: var(--ticker-container-height);
  z-index: 2;
  white-space: nowrap;
  flex-shrink: 0;
}
section.section-200e-module .title-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section.section-200e-module .icon-text {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  color: #333;
  transform: translateY(12px);
}
@media (max-width: 992px) {
  section.section-200e-module .icon-text {
    transform: translateY(5px);
  }
}
section.section-200e-module .subtitle {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  color: #333;
  margin-top: 15px;
  transform: translateY(5px);
}
@media (max-width: 992px) {
  section.section-200e-module .subtitle {
    transform: translateY(5px);
  }
}
section.section-200e-module .title-number {
  font-size: 85px;
  font-weight: 600;
  margin-top: 27px;
  color: #262626;
  line-height: 30px;
  font-style: italic;
  font-family: "Playfair", serif;
}
@media (max-width: 992px) {
  section.section-200e-module .title-number {
    font-size: 70px;
    line-height: 20px;
    margin-top: 21.5px;
  }
}
section.section-200e-module .title-highlight {
  color: #262626;
  font-style: italic;
  font-size: 62px;
  line-height: 30px;
  font-weight: 600;
}
@media (max-width: 992px) {
  section.section-200e-module .title-highlight {
    font-size: 50px;
    line-height: 20px;
  }
}
section.section-200e-module .color-1.active {
  color: #a2c64f !important;
}
section.section-200e-module .color-2.active {
  color: #f3a851 !important;
}
section.section-200e-module .color-3.active {
  color: #df2664 !important;
}
section.section-200e-module .color-4.active {
  color: #00b5f4 !important;
}
section.scroll-trigger-module-1 {
  position: relative;
  z-index: 1;
}
section.scroll-trigger-module-1 .scroll-trigger-section {
  position: relative;
  height: 400vh;
  width: 100%;
}
section.scroll-trigger-module-1 .pinned-content {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f0f0f0;
  perspective: 1500px;
}
section.scroll-trigger-module-1 .images-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
section.scroll-trigger-module-1 .image-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
section.scroll-trigger-module-1 .image-item {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  will-change: transform, opacity;
}
section.scroll-trigger-module-1 .image-item img {
  width: 300px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  display: block;
}
section.scroll-trigger-module-1 .text-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  max-width: 600px;
  padding: 0 40px;
  width: 100%;
  display: grid;
  place-items: center;
}
section.scroll-trigger-module-1 .text-content {
  grid-area: 1/1;
  width: 100%;
  will-change: opacity;
  text-align: center;
  opacity: 0;
}
section.scroll-trigger-module-1 .text-content h3 {
  font-size: 40px;
  font-weight: 600;
  color: #222;
  margin: 20px 0;
}
@media screen and (max-width: 992px) {
  section.scroll-trigger-module-1 .text-content h3 {
    font-size: 32px;
  }
}
section.scroll-trigger-module-1 .text-content h3.title {
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  letter-spacing: 0px;
}
@media screen and (min-width: 992px) {
  section.scroll-trigger-module-1 .text-content h3.title {
    letter-spacing: 2px;
  }
}
section.scroll-trigger-module-1 .text-content h3.title::after {
  content: "";
  position: relative;
  width: 100%;
  height: 5px;
  margin-top: 3px;
  z-index: 1;
  display: block;
  background-size: cover;
  background: linear-gradient(90deg, #00b5f4, #00b5f4, #00b5f4, rgba(0, 183, 244, 0.4117647059), rgba(0, 183, 244, 0.4117647059), rgba(255, 255, 255, 0));
}
section.scroll-trigger-module-1 .text-content h3.en {
  font-weight: 600;
  line-height: 1.2;
  font-family: "Playfair", serif;
  font-style: italic;
}
section.scroll-trigger-module-1 .text-content p {
  font-size: 22px;
  color: #262626;
  line-height: 1.4;
  letter-spacing: 1px;
  font-family: "Noto Sans TC", sans-serif;
  position: relative;
  display: inline-block;
}
section.scroll-trigger-module-1 .text-content p ~ p {
  margin-top: 8px;
}
section.scroll-trigger-module-1 .text-content p strong {
  font-size: 30px;
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  margin: 0 1px;
  line-height: 1;
}
section.scroll-trigger-module-1 .text-content p::after {
  content: "";
  position: relative;
  width: 100%;
  height: 2px;
  z-index: 1;
  display: block;
  background-size: cover;
  background: linear-gradient(90deg, #00b5f4, #00b5f4, #00b5f4, rgba(0, 183, 244, 0.4117647059), rgba(0, 183, 244, 0.4117647059), rgba(255, 255, 255, 0));
}
section.scroll-trigger-module-1 .debug-info {
  position: fixed;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px;
  border-radius: 8px;
  font-size: 12px;
  z-index: 1000;
  display: none;
}
section.scroll-trigger-module-1 .bottom-spacer {
  height: 50vh;
  background: #f5f5f5;
}
@media (max-width: 992px) {
  section.scroll-trigger-module-1 .pinned-content {
    perspective: 1000px;
  }
  section.scroll-trigger-module-1 .images-container {
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 1;
  }
  section.scroll-trigger-module-1 .image-item {
    top: 50%;
    left: 50%;
  }
  section.scroll-trigger-module-1 .image-item img {
    width: 130px;
    height: auto;
    max-height: 180px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  section.scroll-trigger-module-1 .text-container {
    position: fixed;
    top: auto;
    bottom: 12vh;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 10;
    max-width: 85%;
    padding: 0 20px;
    display: grid;
    place-items: center;
  }
  section.scroll-trigger-module-1 .text-content {
    grid-area: 1/1;
    position: static;
    transform: none;
    width: 100%;
  }
  section.scroll-trigger-module-1 .text-content h2 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
  }
  section.scroll-trigger-module-1 .text-content p {
    font-size: 13px;
    line-height: 1.6;
  }
}
@media (max-width: 480px) {
  section.scroll-trigger-module-1 .image-item img {
    width: 110px;
    max-height: 160px;
  }
  section.scroll-trigger-module-1 .text-container {
    bottom: 12vh;
    max-width: 90%;
    padding: 0 15px;
  }
  section.scroll-trigger-module-1 .text-content h2 {
    font-size: 22px;
    margin-bottom: 6px;
  }
  section.scroll-trigger-module-1 .text-content p {
    font-size: 16px;
    line-height: 25px;
  }
}
section.scrolly-module-1 {
  position: relative;
  width: 100%;
  background-color: #000;
  position: relative;
}
section.scrolly-module-1 .sticky-container {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}
section.scrolly-module-1 .sticky-container::after {
  content: "";
  width: 100%;
  height: 60vh;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 11;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
}
section.scrolly-module-1 .sticky-container .bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -o-object-position: top;
     object-position: top;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}
section.scrolly-module-1 .sticky-container .bg-media.active {
  opacity: 1;
  z-index: 2;
}
section.scrolly-module-1 .sticky-container .text-box {
  position: absolute;
  bottom: 100px;
  left: 100px;
  z-index: 13;
  text-align: left;
  display: inline-flex;
  gap: 10px;
  flex-direction: column;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  pointer-events: auto;
}
@media screen and (max-width: 992px) {
  section.scrolly-module-1 .sticky-container .text-box {
    bottom: 50px;
    left: 20px;
    max-width: calc(100% - 40px);
  }
}
section.scrolly-module-1 .sticky-container .text-box h3 {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
}
section.scrolly-module-1 .sticky-container .text-box h3.en {
  font-style: italic;
  font-family: "Playfair", serif;
}
section.scrolly-module-1 .sticky-container .text-box p {
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
  font-family: "Noto Sans TC", sans-serif;
}
section.scrolly-module-1 .sticky-container .text-box p strong {
  font-size: 30px;
  line-height: 30px;
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  margin: 0 1px;
}
section.scrolly-module-1 .sticky-container .text-box p::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 5px;
  background: linear-gradient(90deg, #fff, #fff, #fff, #fff, rgba(255, 255, 255, 0.537254902), rgba(255, 255, 255, 0.537254902), rgba(255, 255, 255, 0.537254902), transparent);
}
section.scrolly-module-1 .sticky-container .text-box.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 14;
}
section.scrolly-module-1 .scrolling-content {
  position: relative;
  z-index: 10;
  margin-top: -100vh;
  padding-bottom: 0;
}
section.scrolly-module-1 .step {
  position: relative;
  width: 100%;
  min-height: 150vh;
  pointer-events: none;
}
section.scrolly-module-1 .spacer {
  height: 50vh;
}
@media (max-width: 992px) {
  section section.scrolly-module .sticky-container .text-box {
    left: 20px;
    bottom: 50px;
    max-width: calc(100% - 40px);
  }
  section section.scrolly-module .sticky-container .text-box h2 {
    font-size: 1.5rem;
  }
  section section.scrolly-module .sticky-container .text-box p {
    font-size: 1rem;
  }
}
section.scrolly-module-2 {
  position: relative;
  width: 100%;
  background-color: #000;
}
section.scrolly-module-2 .sticky-bg-container {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}
section.scrolly-module-2 .sticky-bg-container::after {
  content: "";
  width: 100%;
  height: 60vh;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 11;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
}
section.scrolly-module-2 .sticky-bg-container .bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}
section.scrolly-module-2 .sticky-bg-container .bg-media.active {
  opacity: 1;
  z-index: 2;
}
section.scrolly-module-2 .scrolling-content {
  position: relative;
  z-index: 10;
  margin-top: -100vh;
  padding-bottom: 20vh;
}
section.scrolly-module-2 .step {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
section.scrolly-module-2 .step .text-box {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 40px;
  border-radius: 4px;
  max-width: 500px;
  text-align: center;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s ease-out;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
section.scrolly-module-2 .step.is-active .text-box {
  opacity: 1;
  transform: translateY(0);
}
section.scrolly-module-3 {
  position: relative;
  background-color: #000;
  z-index: 1;
}
section.scrolly-module-3 .sticky-container {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}
section.scrolly-module-3 .sticky-container::after {
  content: "";
  width: 100%;
  height: 60vh;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 11;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
}
section.scrolly-module-3 .scrolling-content {
  position: relative;
  z-index: 2;
  margin-top: -100vh;
}
section.scrolly-module-3 .step {
  position: relative;
  width: 100%;
  height: 200vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.scrolly-module-3 .step .text-box {
  display: none;
}
section.scrolly-module-3 .spacer {
  height: 130vh;
}
section.scrolly-module-3 .bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}
section.scrolly-module-3 .bg-media.active {
  opacity: 1;
}
section.scrolly-module-3 .dynamic-text-box {
  position: absolute;
  z-index: 15;
  pointer-events: auto;
  --box-bg: transparent;
  --text-color: #ffffff;
  color: var(--text-color);
  background-color: transparent;
  transition: opacity 0.4s ease;
  opacity: 1;
}
section.scrolly-module-3 .dynamic-text-box.locked {
  transition: none !important;
}
section.scrolly-module-3 .dynamic-text-box .content-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
section.scrolly-module-3 .dynamic-text-box .content-inner.switching .outside-title,
section.scrolly-module-3 .dynamic-text-box .content-inner.switching .outside-subtitle {
  opacity: 0;
}
section.scrolly-module-3 .dynamic-text-box .content-inner.switching .text-body > * {
  opacity: 0;
  transform: translateY(5px);
}
section.scrolly-module-3 .dynamic-text-box .content-inner.switching-body-only .outside-title,
section.scrolly-module-3 .dynamic-text-box .content-inner.switching-body-only .outside-subtitle {
  opacity: 1;
  transform: translateY(0);
}
section.scrolly-module-3 .dynamic-text-box .content-inner.switching-body-only .text-body > * {
  opacity: 0;
  transform: translateY(5px);
}
section.scrolly-module-3 .dynamic-text-box .outside-title,
section.scrolly-module-3 .dynamic-text-box .outside-subtitle {
  margin: 0;
  padding-left: 0.5rem;
  transition: transform 0.4s ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  opacity: 1;
  transform: translateY(0);
}
section.scrolly-module-3 .dynamic-text-box .outside-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
}
section.scrolly-module-3 .dynamic-text-box .outside-subtitle {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 1px;
  font-style: italic;
  font-family: "Playfair", serif;
}
section.scrolly-module-3 .dynamic-text-box .text-body {
  background-color: var(--box-bg);
  border-radius: 12px;
  padding: 30px;
  width: 100%;
  max-width: 520px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 1px;
  min-height: 126px;
  display: flex;
  align-items: center;
  will-change: transform, background-color, backdrop-filter;
}
section.scrolly-module-3 .dynamic-text-box .text-body:has(h2) {
  max-width: none;
}
section.scrolly-module-3 .dynamic-text-box .text-body .bg {
  width: 100%;
}
section.scrolly-module-3 .dynamic-text-box .text-body h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.3;
  font-weight: 700;
  text-align: left;
  font-family: "Noto Serif TC", serif;
}
section.scrolly-module-3 .dynamic-text-box .text-body p {
  margin: 0;
  font-size: 22px;
  line-height: 30px;
  opacity: 0.9;
  color: inherit;
}
section.scrolly-module-3 .dynamic-text-box .text-body > * {
  transition: transform 0.4s ease;
  opacity: 1;
  transform: translateY(0);
}
section.scrolly-module-3 .dynamic-text-box.pos-center {
  position: absolute !important;
  top: auto !important;
  bottom: 100px !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  margin: 0 !important;
  width: 80%;
  max-width: 900px;
  text-align: center;
}
section.scrolly-module-3 .dynamic-text-box.pos-center .content-inner {
  align-items: center;
}
section.scrolly-module-3 .dynamic-text-box.pos-center .outside-title {
  padding: 30px;
  font-size: 40px;
  line-height: 1.3;
  display: inline-block;
  background-color: rgba(243, 168, 81, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: none;
  color: #fff;
  border-radius: 10px;
}
section.scrolly-module-3 .dynamic-text-box.pos-center .outside-title::after {
  opacity: 0;
}
section.scrolly-module-3 .dynamic-text-box.pos-center .text-body {
  padding: 0;
}
section.scrolly-module-3 .dynamic-text-box.pos-left {
  position: absolute !important;
  top: auto !important;
  bottom: 15% !important;
  left: 8% !important;
  right: auto !important;
  transform: none !important;
  margin: 0 !important;
  width: 90%;
  max-width: 650px;
  text-align: left;
}
section.scrolly-module-3 .dynamic-text-box.pos-left:has(h2) {
  width: unset;
  max-width: unset;
}
@media (max-width: 992px) {
  section.scrolly-module-3 .dynamic-text-box.pos-left:has(h2) {
    width: 100%;
    max-width: calc(100% - 40px);
  }
}
section.scrolly-module-3 .dynamic-text-box.pos-left .border-title {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 2px;
  position: relative;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.44);
  font-family: "Noto Serif TC", serif;
}
@media screen and (min-width: 992px) {
  section.scrolly-module-3 .dynamic-text-box.pos-left .border-title {
    font-size: 40px;
    line-height: 55px;
  }
}
section.scrolly-module-3 .dynamic-text-box.pos-left .border-title::after {
  content: "";
  position: relative;
  width: 100%;
  height: 5px;
  margin-top: 20px;
  z-index: 1;
  display: block;
  background-size: cover;
  background: linear-gradient(90deg, #fff, #fff, #fff, rgba(255, 255, 255, 0.4862745098), rgba(255, 255, 255, 0.4862745098), rgba(255, 255, 255, 0.4862745098), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}
section.scrolly-module-3 .dynamic-text-box.pos-left .content-inner {
  align-items: flex-start;
}
section.scrolly-module-3 .dynamic-text-box.pos-left .content-inner h2 {
  color: #fff;
  font-size: 40px;
}
section.scrolly-module-3 .dynamic-text-box.pos-left .content-inner h2::after {
  display: none;
}
section.scrolly-module-3 .dynamic-text-box.pos-right {
  position: absolute !important;
  top: auto !important;
  bottom: 100px !important;
  left: auto !important;
  right: 100px !important;
  transform: none !important;
  margin: 0 !important;
  width: 90%;
  max-width: 600px;
}
section.scrolly-module-3 .dynamic-text-box.pos-right .content-inner {
  align-items: flex-end;
  text-align: left;
}
@media (max-width: 992px) {
  section.scrolly-module-3 .dynamic-text-box.pos-left, section.scrolly-module-3 .dynamic-text-box.pos-right, section.scrolly-module-3 .dynamic-text-box.pos-center {
    position: absolute !important;
    bottom: 50px !important;
    top: unset !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, 0%) !important;
    margin: 0 !important;
    width: calc(100% - 40px);
    max-width: none;
    text-align: left;
  }
  section.scrolly-module-3 .dynamic-text-box.pos-right .content-inner {
    align-items: flex-end;
  }
  section.scrolly-module-3 .dynamic-text-box .outside-title {
    font-size: 2rem !important;
    line-height: 42px;
  }
  section.scrolly-module-3 .dynamic-text-box .outside-subtitle {
    font-size: 32px !important;
  }
  section.scrolly-module-3 .dynamic-text-box .content-inner {
    gap: 20px;
  }
  section.scrolly-module-3 .dynamic-text-box .text-body {
    padding: 1.5rem;
  }
  section.scrolly-module-3 .dynamic-text-box .text-body p {
    font-size: 1rem;
  }
  section.scrolly-module-3 .dynamic-text-box .text-body h2 {
    font-size: 32px !important;
  }
}
section.scrolly-module-4 {
  position: relative;
  width: 100%;
  background-color: #f0f0f0;
  font-family: "Noto Sans TC", sans-serif;
}
section.scrolly-module-4 .sticky-viewport {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}
section.scrolly-module-4 .split-container {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  z-index: 12;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
section.scrolly-module-4 .split-container.is-visible {
  opacity: 1;
}
section.scrolly-module-4 .media-stage {
  position: relative;
  overflow: hidden;
  background: #000;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  opacity: 1;
  transition: opacity 0.5s ease;
}
section.scrolly-module-4 .media-stage .media-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}
section.scrolly-module-4 .media-stage .media-item.active {
  opacity: 1;
}
section.scrolly-module-4 .glass-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
  background: transparent !important;
}
section.scrolly-module-4 .glass-card.card-hidden {
  opacity: 0;
  transform: translateY(30px);
}
section.scrolly-module-4 .glass-card .card-subtitle {
  font-style: italic;
  font-size: 40px;
  margin-bottom: 30px;
  color: rgb(38, 38, 38);
  line-height: 1;
  font-weight: 600;
  font-family: "Playfair", serif;
  background: transparent !important;
  display: block;
}
section.scrolly-module-4 .glass-card .card-body {
  padding: 30px;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(230, 169, 116, 0.9);
  box-shadow: 0 10px 30px rgba(230, 169, 116, 0.3);
  transition: background 0.6s ease;
}
section.scrolly-module-4 .glass-card .card-body .text-content {
  color: #fff;
  font-size: 22px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 1;
  transition: opacity 0.3s ease;
}
section.scrolly-module-4 .glass-card .card-body .text-content h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 55px;
  color: #fff;
  position: relative;
  display: inline-block;
  max-width: 900px;
  margin: auto;
  letter-spacing: 2px;
  font-family: "Noto Serif TC", serif;
}
section.scrolly-module-4 .glass-card .card-body .text-content h2::after {
  display: none;
}
section.scrolly-module-4 .glass-card .card-body .text-content.text-fading {
  opacity: 0;
}
section.scrolly-module-4 .glass-card .card-body .text-content p {
  margin: 0;
}
section.scrolly-module-4 .scroll-triggers {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
section.scrolly-module-4 .scroll-triggers .step {
  height: 150vh;
  opacity: 0 !important;
  visibility: hidden;
}
section.scrolly-module-4 .scroll-triggers .spacer-end {
  height: 50vh;
}
section.scrolly-module-4 .split-container.layout-left {
  flex-direction: row;
  padding: 0 5vw;
  position: relative;
}
section.scrolly-module-4 .split-container.layout-left .col-media {
  width: 75%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4vw;
}
section.scrolly-module-4 .split-container.layout-left .col-media .media-stage {
  width: 100%;
  height: 70vh;
}
section.scrolly-module-4 .split-container.layout-left .col-text {
  text-align: right;
  position: absolute;
  left: 55%;
  bottom: 10vh;
  width: 40%;
  max-width: 520px;
}
section.scrolly-module-4 .split-container.layout-left .col-text .card-body {
  min-height: 126px;
  text-align: left;
  display: flex;
  align-items: center;
}
section.scrolly-module-4 .split-container.layout-left .col-text .glass-card {
  width: 100%;
  max-width: 520px;
}
section.scrolly-module-4 .split-container.layout-right {
  flex-direction: row-reverse;
  padding: 0 5vw;
  position: relative;
}
section.scrolly-module-4 .split-container.layout-right .col-media {
  width: 75%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 4vw;
}
section.scrolly-module-4 .split-container.layout-right .col-media .media-stage {
  width: 100%;
  height: 70vh;
}
section.scrolly-module-4 .split-container.layout-right .col-text {
  text-align: right;
  position: absolute;
  left: 10%;
  bottom: 10vh;
  width: 40%;
  max-width: 520px;
}
section.scrolly-module-4 .split-container.layout-right .col-text .card-body {
  min-height: 126px;
  text-align: left;
  display: flex;
  align-items: center;
}
section.scrolly-module-4 .split-container.layout-right .col-text .glass-card {
  width: 100%;
  max-width: 520px;
  text-align: left;
}
section.scrolly-module-4 .split-container.layout-right .col-text .glass-card .card-subtitle {
  color: #1d1d1f;
}
@media (max-width: 768px) {
  section.scrolly-module-4 .split-container.layout-left,
  section.scrolly-module-4 .split-container.layout-right {
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  section.scrolly-module-4 .split-container.layout-left .col-media,
  section.scrolly-module-4 .split-container.layout-right .col-media {
    width: 100%;
    height: 40vh;
    justify-content: center;
    padding: 0;
    margin-bottom: 30px;
  }
  section.scrolly-module-4 .split-container.layout-left .col-media .media-stage,
  section.scrolly-module-4 .split-container.layout-right .col-media .media-stage {
    height: 100%;
  }
  section.scrolly-module-4 .split-container.layout-left .col-text,
  section.scrolly-module-4 .split-container.layout-right .col-text {
    width: calc(100% - 40px);
    height: auto;
    justify-content: center;
    padding: 0;
    left: 0;
    position: relative;
    top: 0;
  }
  section.scrolly-module-4 .split-container.layout-left .col-text:has(h2),
  section.scrolly-module-4 .split-container.layout-right .col-text:has(h2) {
    width: calc(100% - 40px);
  }
  section.scrolly-module-4 .split-container.layout-left .col-text .glass-card,
  section.scrolly-module-4 .split-container.layout-right .col-text .glass-card {
    width: 100%;
    text-align: left;
    max-width: calc(100vw - 40px);
  }
  section.scrolly-module-4 .split-container.layout-left .col-text .glass-card .card-subtitle,
  section.scrolly-module-4 .split-container.layout-right .col-text .glass-card .card-subtitle {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  section.scrolly-module-4 .split-container.layout-left .col-text .glass-card .card-body,
  section.scrolly-module-4 .split-container.layout-right .col-text .glass-card .card-body {
    padding: 1.5rem;
  }
  section.scrolly-module-4 .split-container.layout-left .card-subtitle {
    text-align: right;
  }
}
section.marquee-module {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #f0f0f0;
  padding: 100px 0;
}
section.marquee-module .marquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: 20px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
section.marquee-module .marquee-item {
  flex-shrink: 0;
  width: 45vw;
  height: auto;
  overflow: hidden;
  aspect-ratio: 900/600;
}
@media (max-width: 992px) {
  section.marquee-module .marquee-item {
    width: 70vw;
    height: auto;
  }
}
section.marquee-module .marquee-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
section.marquee-module .note {
  padding: 30px;
  font-size: 22px;
  line-height: 30px;
  background-color: rgba(243, 168, 81, 0.65);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  color: #fff;
  max-width: 520px;
  width: 100%;
  margin: auto;
  display: inline-block;
  border-radius: 10px;
  margin-top: 50px;
  text-align: left;
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 1px;
}
@media (max-width: 992px) {
  section.marquee-module .note {
    max-width: calc(100% - 40px);
    margin-top: 30px;
  }
}
section.video-change-module-2 {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  position: relative;
  width: 100%;
  background-color: #000;
}
section.video-change-module-2 .video-area {
  grid-column: 1/-1;
  grid-row: 1/-1;
  z-index: 1;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-image: url("./../images/bg-dust.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: bgMove 10s infinite alternate ease-in-out;
}
section.video-change-module-2 .video-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
  pointer-events: none;
}
@keyframes bgMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 10% 10%;
  }
}
section.video-change-module-2 .video-area .media-wrapper {
  position: relative;
  max-width: 1000px;
  width: calc(100% - 40px);
  aspect-ratio: 1000/550;
  border: 1px solid #fff;
  padding: 15px;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
section.video-change-module-2 .video-area .media-wrapper.is-loading {
  opacity: 0.2;
}
section.video-change-module-2 .video-area .media-wrapper video,
section.video-change-module-2 .video-area .media-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
section.video-change-module-2 .video-change-slider {
  grid-column: 1/-1;
  grid-row: 1/-1;
  z-index: 10;
  pointer-events: none;
}
section.video-change-module-2 .video-change-slider .item {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
section.video-change-module-2 .video-change-slider .item:first-child {
  margin-top: 100vh;
}
section.video-change-module-2 .video-change-slider .item:last-child {
  min-height: 200vh;
}
section.video-change-module-2 .video-change-slider .item .text-content {
  max-width: 900px;
  text-align: center;
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  text-align: center;
  padding: 30px 30px;
  border-radius: 10px;
  opacity: 1;
}
section.video-change-module-2 .video-change-slider .item .text-content h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  section.video-change-module-2 .video-change-slider .item .text-content h3 {
    font-size: 40px;
  }
}
section.video-change-module-2 .video-change-slider .item .text-content p {
  color: #fff;
  font-size: 22px;
  line-height: 33px;
  display: inline-block;
  max-width: 600px;
  font-family: "Noto Sans TC", sans-serif;
}
@media screen and (min-width: 992px) {
  section.video-change-module-2 .video-change-slider .item .text-content p {
    font-size: 22px;
    text-align: left;
  }
}
section.video-change-module-2 .video-change-slider .item.in-view .text-content {
  opacity: 1;
}
section#section-11 {
  --bg-color: #f0f0f0;
  background-color: var(--bg-color);
  position: relative;
  padding: 100px 20px;
}
@media screen and (max-width: 992px) {
  section#section-11 {
    padding: 0px 20px 100px;
  }
}
section#section-11 .container {
  margin: auto;
  max-width: 600px;
}
@media screen and (min-width: 1500px) {
  section#section-11 .container {
    max-width: 1000px;
  }
}
section#section-11 .container .slick-prev,
section#section-11 .container .slick-next {
  z-index: 10;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
section#section-11 .container .slick-prev:before,
section#section-11 .container .slick-next:before {
  display: none;
}
section#section-11 .container .slick-prev img,
section#section-11 .container .slick-next img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}
section#section-11 .container .slick-prev {
  left: -60px;
}
section#section-11 .container .slick-next {
  right: -60px;
}
section#section-11 .container .slick-slide img {
  aspect-ratio: 1000/600;
  -o-object-fit: cover;
     object-fit: cover;
}
section#section-11 .container .slick-dots {
  bottom: -35px;
}
section#section-11 .container .slick-dots li button:before {
  color: rgb(200, 200, 200);
}
section#section-11 .container .slick-dots li.slick-active button:before {
  opacity: 1;
  color: rgb(223, 38, 100);
}
section#section-11 .description {
  margin-top: 80px;
}
section#section-11 .description > p {
  font-size: 40px;
  font-weight: 700;
  line-height: 55px;
  letter-spacing: 2px;
}
@media screen and (max-width: 992px) {
  section#section-11 .description > p {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
section#section-11 .description .content {
  display: inline-block;
  padding: 30px 14px;
  background-color: rgba(223, 38, 100, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  margin-top: 20px;
  border-radius: 10px;
  font-family: "Noto Sans TC", sans-serif;
}
section#section-11 .description .content p {
  font-size: 22px;
  line-height: 30px;
  color: #fff;
}
section#section-14 {
  --bg-color: #f0f0f0;
  background-color: var(--bg-color);
  position: relative;
  padding-top: 80px;
}
section#section-14 > p {
  margin-top: 20px;
  font-size: 22px;
  line-height: 30px;
  color: rgb(38, 38, 38);
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 1px;
  padding: 0 25px;
}
section#section-14 h2 {
  padding: 0 25px;
}
section#section-14 .container {
  gap: 30px;
  max-width: 75%;
  margin: 50px auto;
  align-items: center;
}
@media screen and (max-width: 992px) {
  section#section-14 .container {
    justify-content: space-around;
    margin: 30px auto 100px;
    max-width: 100%;
  }
}
section#section-14 .container .item {
  font-family: "Noto Sans TC", sans-serif;
  width: 33.33333%;
  background-color: rgba(0, 181, 244, 0.6);
  color: #fff;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}
section#section-14 .container .item::after {
  content: "";
  position: absolute;
  width: 3px;
  background: linear-gradient(to bottom, #00b5f4, #00b5f4, rgba(0, 183, 244, 0.3764705882), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}
section#section-14 .container .item:nth-child(1) {
  transform: translateY(150px);
}
section#section-14 .container .item:nth-child(1)::after {
  bottom: -160px;
  left: 100px;
  height: 150px;
}
section#section-14 .container .item:nth-child(2)::after {
  bottom: -110px;
  right: 100px;
  height: 100px;
}
section#section-14 .container .item:nth-child(3) {
  transform: translateY(120px);
}
section#section-14 .container .item:nth-child(3)::after {
  bottom: -110px;
  left: 50%;
  transform: translateX(-50%);
  height: 100px;
}
@media screen and (max-width: 992px) {
  section#section-14 .container .item {
    padding: 15px 10px;
    background-color: rgb(0, 181, 244);
    writing-mode: vertical-rl;
    width: unset;
    border-radius: 8px;
  }
  section#section-14 .container .item:nth-child(1) {
    transform: translateY(100px);
  }
  section#section-14 .container .item:nth-child(1)::after {
    bottom: -190px;
    left: 50%;
    transform: translateX(-50%);
    height: 180px;
  }
  section#section-14 .container .item:nth-child(2) {
    transform: translateX(35%);
  }
  section#section-14 .container .item:nth-child(2)::after {
    bottom: -190px;
    left: 50%;
    transform: translateX(-50%);
    height: 180px;
    right: unset;
  }
  section#section-14 .container .item:nth-child(3) {
    transform: translateY(60px) translateX(-90%);
  }
  section#section-14 .container .item:nth-child(3)::after {
    bottom: -190px;
    left: 50%;
    transform: translateX(-50%);
    height: 180px;
  }
}
@media screen and (max-width: 500px) {
  section#section-14 .container .item {
    padding: 15px 10px;
    background-color: rgb(0, 181, 244);
    writing-mode: vertical-rl;
    width: unset;
    border-radius: 8px;
    letter-spacing: 1px;
  }
  section#section-14 .container .item:nth-child(1) {
    transform: translateY(100px);
  }
  section#section-14 .container .item:nth-child(2) {
    transform: translateX(35%);
  }
  section#section-14 .container .item:nth-child(3) {
    transform: translateY(60px) translateX(calc(-20% - 15px));
  }
}
section#section-14 .container .item h3 {
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 24px;
}
@media screen and (max-width: 992px) {
  section#section-14 .container .item h3 {
    font-weight: 400;
    font-size: 22px;
  }
}
section#section-14 .container .item p {
  margin-top: 15px;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 1px;
  text-align: left;
}
section#section-14 .container .item .btn {
  padding: 15px;
  display: inline-flex;
  gap: 10px;
}
section#section-14 .container .item .btn img {
  width: 6px;
  padding-top: 2px;
}
section#section-14 .description {
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto;
  align-items: center;
}
@media screen and (max-width: 992px) {
  section#section-14 .description {
    justify-content: space-around;
    margin: 30px auto 0;
  }
}
section#section-14 .description .item {
  font-family: "Noto Sans TC", sans-serif;
  width: calc(100% - 40px);
  background-color: rgba(0, 181, 244, 0.6);
  color: #fff;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  display: none;
  margin: auto;
  cursor: pointer;
}
section#section-14 .description .item.active {
  display: block;
}
section#section-14 .description .item h3 {
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 24px;
}
@media screen and (max-width: 992px) {
  section#section-14 .description .item h3 {
    font-weight: 400;
    font-size: 22px;
  }
}
section#section-14 .description .item p {
  margin-top: 15px;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 1px;
  text-align: left;
}
section#section-14 .description .item .btn {
  padding: 15px;
  display: inline-flex;
  gap: 10px;
}
section#section-14 .description .item .btn img {
  width: 6px;
  padding-top: 2px;
}
section#section-14 .building {
  width: 100%;
  margin-top: 30px;
}
@media screen and (max-width: 992px) {
  section#section-14 .building {
    margin-top: 50px;
  }
}
@media screen and (max-width: 500px) {
  section#section-14 .building {
    margin-top: 100px;
  }
}
section#section-16 {
  --bg-color: #f0f0f0;
  background-color: var(--bg-color);
  position: relative;
  padding: 100px 20px;
}
@media screen and (max-width: 992px) {
  section#section-16 {
    padding: 100px 20px 0;
  }
}
section#section-16 > p {
  font-size: 22px;
  line-height: 30px;
  color: rgb(38, 38, 38);
  font-family: "Noto Sans TC", sans-serif;
  max-width: 800px;
  margin: 20px auto 0;
}
section#section-16 .container {
  max-width: 1000px;
  margin: 50px auto 0;
}
section#section-16 .container .slick-prev,
section#section-16 .container .slick-next {
  z-index: 10;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
section#section-16 .container .slick-prev:before,
section#section-16 .container .slick-next:before {
  display: none;
}
section#section-16 .container .slick-prev img,
section#section-16 .container .slick-next img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}
section#section-16 .container .slick-slide img {
  aspect-ratio: 1000/600;
  -o-object-fit: cover;
     object-fit: cover;
}
section#section-16 .container .slick-prev {
  left: -60px;
}
section#section-16 .container .slick-next {
  right: -60px;
}
section#section-16 .container .slick-dots {
  bottom: -35px;
}
section#section-16 .container .slick-dots li button:before {
  color: rgb(200, 200, 200);
}
section#section-16 .container .slick-dots li.slick-active button:before {
  opacity: 1;
  color: rgb(0, 181, 244);
}
section.photos-module {
  --bg-color: #f0f0f0;
  background-color: var(--bg-color);
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  section.photos-module {
    padding-top: 100px;
  }
}
section.photos-module .container {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 992px) {
  section.photos-module .container {
    flex-direction: column;
  }
}
section.photos-module .container .title {
  width: 45%;
  text-align: left;
  display: flex;
  justify-self: center;
}
@media screen and (max-width: 992px) {
  section.photos-module .container .title {
    width: 100%;
  }
}
section.photos-module .container .content {
  width: 55%;
  display: flex;
  height: 100vh;
}
@media screen and (max-width: 992px) {
  section.photos-module .container .content {
    width: 100%;
    margin-top: 50px;
    aspect-ratio: 440/612;
    height: unset;
  }
}
section.photos-module .container .content .row {
  display: flex;
  flex-direction: column;
}
section.photos-module .container .content .row img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
section.photos-module .container .content .row-1 {
  width: 33.333333%;
}
section.photos-module .container .content .row-1 .col {
  height: 20%;
  aspect-ratio: 250/250;
}
section.photos-module .container .content .row-2 {
  width: 33.333333%;
}
section.photos-module .container .content .row-2 .col {
  height: 20%;
  aspect-ratio: 250/250;
}
section.photos-module .container .content .row-3 {
  width: 33.333333%;
}
section.photos-module .container .content .row-3 .col {
  height: 20%;
  aspect-ratio: 250/250;
}
section.photos-module .container .content .row-4 {
  width: 25%;
}
section.photos-module .container .content .row-4 .col {
  height: 33.33333%;
  aspect-ratio: 306/250;
}
section.photos-module .container .content .row .col {
  position: relative;
  cursor: pointer;
}
section.photos-module .container .content .row .col:hover .cover {
  opacity: 0;
}
section.photos-module .container .content .row .col img {
  transition: 0.3s;
  filter: grayscale(100%);
}
section.photos-module .container .content .row .cover {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 181, 244, 0.6);
  position: absolute;
  font-family: "Roboto", sans-serif;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 30px;
  line-height: 60px;
  font-weight: 700;
  letter-spacing: 2px;
  pointer-events: none;
  transition: 0.3s;
}
@media screen and (max-width: 992px) {
  section.photos-module .container .content .row .cover {
    font-size: 24px;
  }
}
section.further-reading-module {
  --bg-color: #f0f0f0;
  background-color: var(--bg-color);
  padding: 100px 20px;
}
section.further-reading-module .container h2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 992px) {
  section.further-reading-module .container h2 {
    margin-bottom: 40px;
  }
}
section.further-reading-module .container .item {
  max-width: 920px;
  display: block;
  margin: 0px auto 0;
  position: relative;
  text-align: left;
}
section.further-reading-module .container .item + .item {
  margin-top: 30px;
}
@media screen and (max-width: 992px) {
  section.further-reading-module .container .item + .item {
    margin-top: 50px;
  }
}
section.further-reading-module .container .item a {
  color: #373737;
  text-decoration: none;
  display: flex;
}
@media screen and (max-width: 992px) {
  section.further-reading-module .container .item a {
    flex-direction: column;
  }
}
@media screen and (min-width: 993px) {
  section.further-reading-module .container .item a:hover img {
    transform: scale(1.1);
  }
}
section.further-reading-module .container .item a .image {
  max-width: 287px;
  min-width: 287px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  section.further-reading-module .container .item a .image {
    max-width: 100%;
    min-width: 100%;
  }
}
section.further-reading-module .container .item a .image img {
  aspect-ratio: 287/191;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
section.further-reading-module .container .item a .content {
  padding: 25px 20px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 992px) {
  section.further-reading-module .container .item a .content {
    padding: 30px 0 0;
  }
}
section.further-reading-module .container .item a .content h3 {
  position: relative;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 2px;
  display: inline-block;
  width: 100%;
  font-family: "Noto Sans TC", sans-serif;
}
section.further-reading-module .container .item a .content h3::after {
  content: "";
  position: relative;
  width: 100%;
  height: 4px;
  z-index: 1;
  margin-top: 6px;
  display: block;
  background-size: cover;
  background: linear-gradient(90deg, #00b5f4, #00b5f4, rgba(0, 183, 244, 0.3764705882), rgba(0, 183, 244, 0.3764705882), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}
section.further-reading-module .container .item a .content p {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 20px auto 0;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}

.black {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: none;
}

.popup-1 {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
}
.popup-1 .close {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 50px;
  top: 50px;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s;
}
.popup-1 .close:hover {
  transform: rotate(90deg);
}
.popup-1 .close img {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 992px) {
  .popup-1 .close {
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
  }
}
.popup-1 .container {
  width: 100%;
  max-width: 1240px;
  position: relative;
  padding: 40px 55px 65px;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.popup-1 .container .item {
  display: flex;
  align-items: center;
  gap: 50px;
}
.popup-1 .container .item .slick {
  width: 70%;
  position: relative;
}
.popup-1 .container .item .slick img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 780/555;
  display: flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}
.popup-1 .container .item .slick .slick-prev,
.popup-1 .container .item .slick .slick-next {
  z-index: 10;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 0.75rem rgb(141, 141, 141));
}
.popup-1 .container .item .slick .slick-prev:before,
.popup-1 .container .item .slick .slick-next:before {
  display: none;
}
.popup-1 .container .item .slick .slick-prev img,
.popup-1 .container .item .slick .slick-next img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}
.popup-1 .container .item .slick .slick-prev {
  left: 20px;
}
.popup-1 .container .item .slick .slick-next {
  right: 20px;
}
.popup-1 .container .item .slick .slick-dots {
  bottom: -30px;
}
.popup-1 .container .item .slick .slick-dots li button:before {
  color: #8b8b8b;
}
.popup-1 .container .item .slick .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff;
}
.popup-1 .container .item .content {
  width: 30%;
}
.popup-1 .container .item .content .date {
  font-weight: 600;
  font-style: italic;
  font-family: "Playfair", serif;
  font-size: 40px;
  line-height: 42px;
  color: rgb(38, 38, 38);
}
.popup-1 .container .item .content .description {
  margin-top: 30px;
  font-size: 22px;
  line-height: 30px;
  color: rgb(38, 38, 38);
  letter-spacing: 1px;
  font-family: "Noto Sans TC", sans-serif;
}
@media screen and (max-width: 992px) {
  .popup-1 {
    align-items: flex-start;
    overflow-y: auto;
    padding: 20px 0;
  }
  .popup-1 .container {
    width: calc(100% - 40px);
    margin: auto;
    padding: 70px 20px 150px;
  }
  .popup-1 .container .item {
    flex-direction: column;
    gap: 20px;
  }
  .popup-1 .container .item .slick {
    width: 100%;
    position: static !important;
  }
  .popup-1 .container .item .slick .slick-dots {
    position: relative !important;
    bottom: auto !important;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .popup-1 .container .item .slick .slick-dots li button:before {
    color: rgb(200, 200, 200);
  }
  .popup-1 .container .item .slick .slick-prev,
  .popup-1 .container .item .slick .slick-next {
    top: auto !important;
    transform: none !important;
    bottom: 30px;
    width: 40px;
    height: 40px;
  }
  .popup-1 .container .item .slick .slick-prev {
    left: 50% !important;
    margin-left: -55px;
  }
  .popup-1 .container .item .slick .slick-next {
    right: auto !important;
    left: 50% !important;
    margin-left: 15px;
  }
  .popup-1 .container .item .content {
    width: 100%;
    margin-top: 0;
  }
  .popup-1 .container .item .content .date {
    font-size: 40px;
    line-height: 1;
  }
  .popup-1 .container .item .content .description {
    margin-top: 20px;
  }
}
.popup-2 {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100000;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
}
.popup-2 .close {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 50px;
  top: 50px;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s;
}
.popup-2 .close:hover {
  transform: rotate(90deg);
}
.popup-2 .close img {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 992px) {
  .popup-2 .close {
    right: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
  }
}
.popup-2 .container {
  width: 100%;
  max-width: 1240px;
  position: relative;
  padding: 40px 55px 65px;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.popup-2 .container .item {
  display: flex;
  align-items: center;
  gap: 50px;
}
.popup-2 .container .item .image {
  width: 70%;
  position: relative;
}
.popup-2 .container .item .image img {
  width: 100%;
  border-radius: 10px;
  display: block;
  aspect-ratio: 780/555;
  -o-object-fit: cover;
     object-fit: cover;
}
.popup-2 .container .item .image .slick-prev,
.popup-2 .container .item .image .slick-next {
  z-index: 10;
  width: 50px;
  height: 50px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 0.75rem rgb(141, 141, 141));
}
.popup-2 .container .item .image .slick-prev:before,
.popup-2 .container .item .image .slick-next:before {
  display: none;
}
.popup-2 .container .item .image .slick-prev img,
.popup-2 .container .item .image .slick-next img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}
.popup-2 .container .item .image .slick-prev {
  left: 20px;
}
.popup-2 .container .item .image .slick-next {
  right: 20px;
}
.popup-2 .container .item .image .slick-dots {
  bottom: -30px;
}
.popup-2 .container .item .image .slick-dots li button:before {
  color: #8b8b8b;
}
.popup-2 .container .item .image .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff;
}
.popup-2 .container .item .content {
  width: 30%;
}
.popup-2 .container .item .content .name {
  font-weight: 600;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 24px;
  line-height: 32px;
  color: rgb(38, 38, 38);
  letter-spacing: 2px;
}
.popup-2 .container .item .content .description {
  margin-top: 15px;
  font-size: 22px;
  line-height: 30px;
  color: rgb(38, 38, 38);
  letter-spacing: 1px;
  font-family: "Noto Sans TC", sans-serif;
}
@media screen and (max-width: 992px) {
  .popup-2 {
    align-items: flex-start;
    overflow-y: auto;
    padding: 20px 0;
  }
  .popup-2 .container {
    width: calc(100% - 40px);
    margin: auto;
    padding: 70px 20px 50px;
  }
  .popup-2 .container .item {
    flex-direction: column;
    gap: 20px;
  }
  .popup-2 .container .item .image {
    width: 100%;
    position: static !important;
  }
  .popup-2 .container .item .image .slick-dots {
    position: relative !important;
    bottom: auto !important;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .popup-2 .container .item .image .slick-dots li button:before {
    color: rgb(200, 200, 200);
  }
  .popup-2 .container .item .image .slick-prev,
  .popup-2 .container .item .image .slick-next {
    top: auto !important;
    transform: none !important;
    bottom: 30px;
    width: 40px;
    height: 40px;
  }
  .popup-2 .container .item .image .slick-prev {
    left: 50% !important;
    margin-left: -55px;
  }
  .popup-2 .container .item .image .slick-next {
    right: auto !important;
    left: 50% !important;
    margin-left: 15px;
  }
  .popup-2 .container .item .content {
    width: 100%;
    margin-top: 30px;
  }
  .popup-2 .container .item .content .description {
    margin-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */