@charset "UTF-8";
:root {
  --border-color: #d0d0d0;
  --placeholder: #afb3b8;
  --primary-color: #006ebb;
  --border-radius: 0;
  --border-width: 1px;
  --warn-color: #cc4218;
}

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

body {
  background-color: #fffbeb;
}

img {
  width: 100%;
}

[data-aos=my-fade] {
  opacity: 0;
  transition-property: opacity;
}
[data-aos=my-fade].aos-animate {
  opacity: 1;
}

main {
  position: relative;
  width: 100%;
  min-height: 100vh;
  transition: all 0.5s ease;
  overflow-x: hidden;
}

.title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title .en {
  color: #06b6d4;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
@media screen and (max-width: 992px) {
  .title .en {
    font-size: 12px;
  }
}
.title h2 {
  color: #006ebb;
  font-weight: bold;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 4px;
  margin-top: 12px;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 992px) {
  .title h2 {
    font-size: 28px;
    margin-top: 8px;
  }
}
.title h2::before {
  content: "";
  position: absolute;
  right: -12px;
  top: -12px;
  width: 29px;
  height: 29px;
  border-radius: 30px;
  border: 1px solid #eab308;
  z-index: -1;
  opacity: 0.4;
}
.title h2::after {
  content: "";
  position: absolute;
  right: -16px;
  top: -16px;
  width: 29px;
  height: 29px;
  border-radius: 30px;
  border: 1px solid #eab308;
  z-index: -1;
  opacity: 0.4;
}
.title h2 span {
  color: #0a91f0;
}
.title .line {
  width: 76px;
  height: 2px;
  background-color: #eab308;
  border-radius: 30px;
  display: inline-block;
  margin: auto;
}
@media screen and (max-width: 992px) {
  .title .line {
    width: 44px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1111;
}
.header .header-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .header .header-container {
    padding: 30px 40px;
  }
}
.header .hamburger {
  display: block;
  cursor: pointer;
  z-index: 1;
  padding: 5px;
  background-color: #fff;
  border-radius: 8px;
}
.header .hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background: #0076b3;
  margin: 6px 0;
  transition: all 0.3s ease;
}
.header {
  /* 彈出式選單：全時手機版樣式 */
}
.header .header-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: #fdfdfd;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: left 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
  overflow: hidden;
}
.header .header-menu::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  z-index: -1;
  background-image: url("./../image/nav.jpg");
  background-size: cover;
  background-position: center;
}
.header .header-menu.active {
  left: 0;
}
.header .header-menu .close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 40px;
  color: #0076b3;
  cursor: pointer;
  line-height: 1;
}
.header .header-menu .close img {
  transition: 0.3s;
}
.header .header-menu .close:hover img {
  transform: rotate(90deg);
}
.header .header-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.header .header-menu ul li {
  margin: 32px 0;
}
.header .header-menu ul li a {
  text-decoration: none;
  color: #404040;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: opacity 0.3s;
}
@media screen and (max-width: 992px) {
  .header .header-menu ul li a {
    font-size: 24px;
  }
}
.header .header-menu ul li a:hover {
  opacity: 0.7;
}

section {
  position: relative;
  z-index: 1;
}

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

footer {
  padding: 30px 20px;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
footer .container p {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  color: #404040;
}
footer .container a {
  color: #404040;
  text-underline-offset: 3px;
}

.pc {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .pc {
    display: block !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;
  }
}

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

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

section {
  position: relative;
}
section.index {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding-top: 150px;
}
@media screen and (max-width: 992px) {
  section.index {
    padding-top: 100px;
    min-height: unset;
  }
}
section.index .bg-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  overflow: visible;
}
@media screen and (max-width: 1100px) {
  section.index .bg-1 {
    -o-object-position: 40%;
       object-position: 40%;
    height: 130%;
  }
}
section.index .bg-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  overflow: visible;
  animation: bgZoom 5s ease-in-out infinite alternate;
  transform-origin: center center;
}
@media screen and (max-width: 1100px) {
  section.index .bg-2 {
    animation: bgZoom 6s ease-in-out infinite alternate;
  }
}
@keyframes bgZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes popChar {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section.index .logo {
  display: flex;
  align-items: center;
  gap: 49px;
  position: absolute;
  top: 46px;
  right: 60px;
}
@media screen and (max-width: 992px) {
  section.index .logo {
    gap: 30px;
    top: 42px;
    right: 40px;
  }
}
section.index .logo .logo-1 {
  height: 28.6px;
  margin-right: 15px;
  vertical-align: middle;
}
@media screen and (max-width: 992px) {
  section.index .logo .logo-1 {
    height: 17.15px;
  }
}
section.index .logo .logo-2 {
  height: 24.5px;
  vertical-align: middle;
}
@media screen and (max-width: 992px) {
  section.index .logo .logo-2 {
    height: 14.66px;
  }
}
section.index .h1-title {
  max-width: 1192px;
  width: 100%;
  margin: auto;
  text-align: left;
  display: block;
}
@media screen and (max-width: 1100px) {
  section.index .h1-title {
    padding: 0 20px;
    text-align: center;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1600px) {
  section.index .h1-title {
    max-width: 1435px;
  }
}
section.index .h1-title div {
  display: flex;
  color: #006ebb;
  font-size: 72px;
  letter-spacing: 12px;
  font-weight: bold;
}
@media screen and (max-width: 1100px) {
  section.index .h1-title div {
    font-size: 44px;
    white-space: normal;
    justify-content: center;
  }
}
section.index .h1-title div h1 {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.1;
}
@media screen and (max-width: 992px) {
  section.index .h1-title div h1 {
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    width: 100%;
  }
}
section.index .h1-title div h1 b.word-wrap {
  display: flex;
  font-weight: inherit;
}
@media screen and (max-width: 992px) {
  section.index .h1-title div h1 b.word-wrap-1 {
    transform: translateX(-26px);
  }
}
section.index .h1-title div h1 i.char {
  display: inline-block;
  font-style: normal;
  opacity: 0;
  animation: popChar 0.3s ease-out forwards;
  animation-delay: calc(1s + var(--i) * 0.15s);
}
section.index .h1-title div h1 span {
  font-size: 38px;
  display: inline-block;
  margin-left: 23px;
  transform: translateY(6px);
}
@media screen and (max-width: 992px) {
  section.index .h1-title div h1 span {
    margin-left: 10px;
    font-size: 26px;
    letter-spacing: 5px;
    transform: translateY(-8px);
  }
}
section.index .container {
  display: flex;
  align-items: center;
  margin: auto;
  justify-self: center;
}
@media screen and (max-width: 992px) {
  section.index .container {
    flex-direction: column-reverse;
  }
}
section.index .container .con-1 {
  position: relative;
  display: inline-block;
  padding: 0 20px 50px;
  z-index: 1;
}
section.index .container .con-1 .info {
  width: 100%;
  max-width: 228px;
  min-width: 228px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  section.index .container .con-1 .info {
    max-width: 130px;
    min-width: 130px;
    transform: translateX(-50%) translateY(-43px);
  }
}
section.index .container .con-1 .btn {
  position: absolute;
  bottom: 30px;
  right: 0;
  width: 100%;
  max-width: 162px;
  transition: 0.3s;
  cursor: pointer;
  z-index: 2;
}
section.index .container .con-1 .btn:hover {
  transform: translateY(-2px);
}
@media screen and (max-width: 992px) {
  section.index .container .con-1 .btn {
    max-width: 126px;
    transform: translateX(-50%) translateY(-43px);
  }
  section.index .container .con-1 .btn:hover {
    transform: translateX(-50%) translateY(-43px);
  }
}
section.index .container .con-2 {
  max-width: 965px;
}
@media screen and (max-width: 992px) {
  section.index .container .con-2 {
    transform: scale(1.2) translateX(-5%);
    transform-origin: top;
    max-width: 500px;
  }
}
@media screen and (min-width: 1600px) {
  section.index .container .con-2 {
    max-width: 1200px;
  }
}
section.foreword {
  text-align: center;
  position: relative;
  z-index: 1;
}
section.foreword .container {
  padding: 60px 32px;
  max-width: 930px;
  margin: 0 auto;
  display: flex;
  text-align: left;
}
@media screen and (max-width: 992px) {
  section.foreword .container {
    flex-direction: column;
    padding: 60px 32px;
  }
}
section.foreword .container p {
  text-align: center;
  color: #404040;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
}
@media screen and (max-width: 992px) {
  section.foreword .container p {
    font-size: 16px;
    line-height: 1.6;
  }
}
section.highlight {
  padding: 80px 0;
  text-align: center;
}
@media (max-width: 991px) {
  section.highlight {
    padding: 80px 0 40px;
  }
}
section.highlight .container {
  max-width: 1020px;
  margin: 56px auto;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 991px) {
  section.highlight .container {
    display: block;
    margin: 6px 0;
  }
}
@media (max-width: 991px) {
  section.highlight .highlight-slider {
    overflow: visible !important;
  }
  section.highlight .highlight-slider .slick-list {
    padding: 50px 0 !important;
  }
}
section.highlight .highlight-slider .slick-list,
section.highlight .highlight-slider .slick-track,
section.highlight .highlight-slider .slick-slide,
section.highlight .highlight-slider .slick-slide > div {
  height: 100%;
}
section.highlight .highlight-slider .slick-dots {
  bottom: -55px;
}
@media (max-width: 991px) {
  section.highlight .highlight-slider .slick-dots {
    bottom: -5px;
  }
}
section.highlight .card-item {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  section.highlight .card-item {
    max-width: 340px;
  }
}
@media (max-width: 440px) {
  section.highlight .card-item {
    width: calc(100% - 80px);
    max-width: calc(100% - 80px);
  }
}
section.highlight .card-item .card-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
section.highlight .card-item .front,
section.highlight .card-item .back {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease, visibility 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.highlight .card-item .back {
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}
section.highlight .card-item:hover .back, section.highlight .card-item.active .back {
  opacity: 1;
  visibility: visible;
}
section.highlight .dec {
  position: absolute;
  width: 105%;
  height: 105%;
  top: -2.5%;
  left: -2.5%;
  z-index: 3;
  pointer-events: none;
}
section.highlight .circle-border {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px;
  box-sizing: border-box;
  position: relative;
}
section.highlight .circle-border.color-1.filled {
  background: #2e86de;
  color: #fff;
}
section.highlight .circle-border.color-2.filled {
  background: #06b6d4;
  color: #fff;
}
section.highlight .circle-border.color-3.filled {
  background: #2e86de;
  color: #fff;
}
section.highlight .circle-border h3 {
  color: #006ebb;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  font-size: 24px;
  letter-spacing: 4px;
  font-weight: 500;
}
section.highlight .circle-border p {
  line-height: 1.4;
  margin: 0;
  font-size: 16px;
  letter-spacing: 4px;
  padding: 0 15px;
}
section.highlight .circle-border .tags {
  display: block;
  font-weight: 400;
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.8px;
  display: flex;
  gap: 10px;
  font-family: "Noto Serif TC", serif;
  justify-content: center;
}
section .slick-dots {
  bottom: -40px;
}
section .slick-dots li button:before {
  font-size: 30px;
  color: #ebebeb;
}
section .slick-dots li.slick-active button:before {
  color: #006ebb;
}
section.agenda {
  padding: 80px 32px;
  text-align: center;
}
section.agenda .bg-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  overflow: visible;
}
section.agenda .timeline {
  position: relative;
  max-width: 760px;
  margin: 56px auto 0;
}
section.agenda .timeline .agenda-item {
  position: relative;
}
section.agenda .timeline .agenda-item:not(:last-child)::after {
  display: block;
  content: "";
  width: 1px;
  height: 32px;
  background-color: #9bcfcc;
  margin: 16px auto;
}
section.agenda .timeline .agenda-item .time {
  font-size: 16px;
  color: #06b6d4;
  font-weight: bold;
  letter-spacing: 4px;
  font-family: "Alata", sans-serif;
}
section.agenda .timeline .agenda-item .title {
  font-family: "Noto Serif TC", serif;
  font-size: 24px;
  color: #006ebb;
  font-weight: bold;
  margin-top: 8px;
  line-height: 1.4;
  letter-spacing: 4px;
}
section.agenda .timeline .agenda-item .info {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 1rem;
  color: #404040;
  line-height: 1.6;
  margin-top: 8px;
  letter-spacing: 0.8px;
}
section.register {
  position: relative;
  padding: 80px 32px;
  letter-spacing: 0.8px;
}
section.register .bg-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  overflow: visible;
}
section.register .campaign-form-wrap div,
section.register .campaign-form-wrap span,
section.register .campaign-form-wrap p,
section.register .campaign-form-wrap label,
section.register .campaign-form-wrap select,
section.register .campaign-form-wrap input,
section.register .campaign-form-wrap a,
section.register .campaign-form-wrap ul,
section.register .campaign-form-wrap li {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  list-style: none;
  display: block;
}
section.register .campaign-form-wrap span,
section.register .campaign-form-wrap a {
  display: inline;
}
section.register .campaign-form-wrap {
  position: relative;
  max-width: 414px;
  margin: 56px auto 0;
  text-align: left;
}
section.register .campaign-form-wrap .form-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  justify-content: space-between;
}
section.register .campaign-form-wrap .item-title {
  width: var(--label-width);
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #404040;
  margin-right: 15px;
  padding-top: 18px;
}
section.register .campaign-form-wrap .item-title.required::before {
  content: "*";
  color: var(--warn-color);
  margin-right: 5px;
}
section.register .campaign-form-wrap input[type=text],
section.register .campaign-form-wrap input[type=email],
section.register .campaign-form-wrap select {
  width: 270px;
  max-width: 270px;
  height: 48px;
  font-size: 15px;
  padding: 0 16px;
  border: 1px solid var(--border-color);
  background-color: #ffffff;
  color: #373a3e;
  outline: none;
  border-radius: 4px;
  transition: border-color 0.2s;
}
section.register .campaign-form-wrap input:focus,
section.register .campaign-form-wrap select:focus {
  border-color: var(--primary-color);
}
section.register .campaign-form-wrap input.invalid,
section.register .campaign-form-wrap select.invalid {
  border-color: var(--warn-color);
}
section.register .campaign-form-wrap .error-message {
  font-size: 12px;
  color: var(--warn-color);
  margin-top: 4px;
  display: none;
}
section.register .campaign-form-wrap .error-message:not(:empty) {
  display: block;
}
section.register #privacy_check {
  width: 24px;
  height: 24px;
  display: inline-block;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
section.register #privacy_check:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l4 4 6-6' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
}
section.register #privacy_check:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
section.register .checkbox-item.required {
  position: relative;
}
section.register .checkbox-item.required::before {
  content: "*";
  color: var(--warn-color);
  margin-right: 5px;
}
section.register #field-other_5,
section.register #field-other_6,
section.register #field-other_7,
section.register #field-other_8 {
  display: none;
}
section.register .campaign-form-wrap .privacy-policy-wrap {
  margin-top: 16px;
}
section.register .campaign-form-wrap .checkbox-item {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  cursor: pointer;
  margin-bottom: 4px;
}
section.register .campaign-form-wrap .checkbox-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #404040;
}
section.register .campaign-form-wrap .privacy-policy-content {
  font-size: 12px;
  line-height: 1.6;
  color: #404040;
  margin-top: 16px;
}
section.register .campaign-form-wrap .privacy-policy-content a {
  color: #404040;
  text-decoration: underline;
}
section.register .campaign-form-wrap button.primary {
  width: 100%;
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
  padding: 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 16px;
  border-radius: 8px;
  transition: opacity 0.2s;
}
section.register .campaign-form-wrap button.primary:hover {
  opacity: 0.9;
}
section.register .campaign-form-wrap .campaign-loading-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
section.register .campaign-form-wrap .active {
  display: flex !important;
}
@media (max-width: 600px) {
  section.register .campaign-form-wrap {
    padding: 0;
    margin: 56 auto 0;
  }
  section.register .campaign-form-wrap .checkbox-text {
    font-weight: 400;
  }
  section.register .campaign-form-wrap .form-item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  section.register .campaign-form-wrap .item-title {
    width: 100%;
    margin-right: 0;
    padding-top: 0;
    margin-bottom: 8px;
    font-weight: 400;
  }
  section.register .campaign-form-wrap .input-wrap {
    width: 100%;
  }
  section.register .campaign-form-wrap input[type=text],
  section.register .campaign-form-wrap input[type=email],
  section.register .campaign-form-wrap select {
    width: 100%;
    max-width: 100%;
  }
}
section.speaker {
  padding: 80px 32px;
  text-align: center;
}
section.speaker .container {
  max-width: 1040px;
  margin: 56px auto 0;
  padding: 0 24px;
}
@media screen and (max-width: 992px) {
  section.speaker .container {
    padding: 0;
  }
}
section.speaker .bg-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  overflow: visible;
}
section.speaker .speakers-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 767px) {
  section.speaker .speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
section.speaker .row-2 .speaker-card:nth-child(2n) .avatar-wrapper {
  position: relative;
}
section.speaker .row-2 .speaker-card:nth-child(2n) .avatar-wrapper::after {
  content: "";
  display: block;
  width: 95%;
  height: 95%;
  position: absolute;
  top: -3px;
  left: -3px;
  border: 2px solid #eab308;
  border-radius: 50%;
  opacity: 0.4;
}
section.speaker .row-2 .speaker-card:nth-child(2n+1) .avatar-wrapper {
  position: relative;
}
section.speaker .row-2 .speaker-card:nth-child(2n+1) .avatar-wrapper::after {
  content: "";
  display: block;
  width: 95%;
  height: 95%;
  position: absolute;
  top: -3px;
  right: -3px;
  border: 2px solid #eab308;
  border-radius: 50%;
  opacity: 0.4;
}
@media screen and (max-width: 992px) {
  section.speaker .row-2 .speaker-card:nth-child(2n+1) .avatar-wrapper::after {
    top: -1px;
    right: 1px;
  }
}
section.speaker .row-3 .speaker-card:nth-child(2n) .avatar-wrapper {
  position: relative;
}
section.speaker .row-3 .speaker-card:nth-child(2n) .avatar-wrapper::after {
  content: "";
  display: block;
  width: 95%;
  height: 95%;
  position: absolute;
  top: -3px;
  left: -3px;
  border: 2px solid #eab308;
  border-radius: 50%;
  opacity: 0.4;
}
section.speaker .row-3 .speaker-card:nth-child(2n+1) .avatar-wrapper {
  position: relative;
}
section.speaker .row-3 .speaker-card:nth-child(2n+1) .avatar-wrapper::after {
  content: "";
  display: block;
  width: 95%;
  height: 95%;
  position: absolute;
  top: -3px;
  right: -3px;
  border: 2px solid #eab308;
  border-radius: 50%;
  opacity: 0.4;
}
@media screen and (max-width: 992px) {
  section.speaker .row-3 .speaker-card:nth-child(2n+1) .avatar-wrapper::after {
    top: -1px;
    right: 1px;
  }
}
section.speaker .row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  section.speaker .row {
    display: contents;
  }
}
section.speaker .row.row-2 .speaker-card {
  width: 280px;
}
@media (max-width: 767px) {
  section.speaker .row.row-2 .speaker-card {
    width: 100%;
    max-width: none;
  }
}
section.speaker .row.row-3 .speaker-card {
  width: 280px;
}
@media (max-width: 767px) {
  section.speaker .row.row-3 .speaker-card {
    width: 100%;
    max-width: none;
  }
}
section.speaker .speaker-card {
  cursor: pointer;
  text-align: center;
  transition: 0.3s ease;
}
section.speaker .speaker-card:hover {
  transform: translateY(-4px);
}
section.speaker .speaker-card:hover .hover-overlay {
  opacity: 1;
}
section.speaker .speaker-card:hover .avatar-wrapper::after {
  opacity: 0 !important;
}
section.speaker .speaker-card:hover .read-more-btn {
  opacity: 0;
}
section.speaker .speaker-card .tag {
  font-size: 12px;
  letter-spacing: 4px;
  color: #06b6d4;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 6px;
  line-height: 1.2;
}
@media screen and (max-width: 992px) {
  section.speaker .speaker-card .tag {
    letter-spacing: 2px;
    font-size: 10px;
  }
}
section.speaker .speaker-card h3 {
  font-family: "Noto Serif TC", serif;
  font-size: 24px;
  font-weight: 900;
  color: #006ebb;
  margin-top: 8px;
  line-height: 1.4;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 992px) {
  section.speaker .speaker-card h3 {
    font-size: 20px;
  }
}
section.speaker .speaker-card .sub-title {
  font-size: 16px;
  color: #737373;
  line-height: 1.6;
  margin-top: 16px;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 992px) {
  section.speaker .speaker-card .sub-title {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 8px;
  }
}
section.speaker .avatar-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 34px;
}
@media screen and (max-width: 992px) {
  section.speaker .avatar-wrapper {
    margin-bottom: 26px;
  }
}
section.speaker .avatar-wrapper::before {
  content: "";
  width: 130%;
  height: 130%;
  opacity: 0.8;
  bottom: -20%;
  left: -5%;
  display: block;
  position: absolute;
  z-index: -1;
  background-size: contain;
  background-image: url("./../image/ball-bg.png");
}
@media screen and (max-width: 992px) {
  section.speaker .avatar-wrapper::before {
    width: 140%;
    height: 140%;
    bottom: -30%;
    left: -15%;
  }
}
section.speaker .avatar-wrapper .ball {
  transform: scale(1.048);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  transition: transform 0.4s ease;
}
section.speaker .avatar-wrapper .search {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section.speaker .avatar-wrapper .hover-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.speaker .avatar-wrapper .read-more-btn {
  font-family: "Noto Serif TC", serif;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #006ebb;
  color: white;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.4px;
  padding: 4px 9px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
  position: absolute;
  transition: 0.3s;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  section.speaker .avatar-wrapper .read-more-btn {
    font-size: 12px;
  }
}
section.speaker .avatar-wrapper .read-more-btn img {
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 992px) {
  section.speaker .avatar-wrapper .read-more-btn img {
    width: 12px;
    height: 12px;
  }
}
section.faq {
  padding: 80px 32px;
}
section.faq .bg-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -2;
  overflow: visible;
}
section.faq .container {
  max-width: 896px;
  margin: 56px auto 0;
}
section.faq .item + .item {
  margin-top: 16px;
}
section.faq .item {
  overflow: hidden;
}
section.faq .item h3 {
  border-radius: 24px;
  background: #fffef9;
  cursor: pointer;
  display: flex;
  gap: 8px;
  position: relative;
  align-items: center;
  padding: 14px 24px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #3a8fc7;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
section.faq .item h3 span:nth-child(1) {
  font-family: "Alata", sans-serif;
  font-size: 32px;
  color: #06b6d4;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}
section.faq .item h3 span:nth-child(2) {
  font-family: "Noto Serif TC", serif;
  font-size: 24px;
  font-weight: bold;
  color: #006ebb;
  letter-spacing: 4px;
  line-height: 1.4;
  padding-right: 40px;
}
section.faq .item h3:hover {
  color: #2678b0;
}
section.faq .item h3::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  transform-origin: center center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: transform 0.4s ease;
  background-image: url("./../image/icon-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
}
section.faq .item .content-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
section.faq .item .content-wrapper .content-inner {
  overflow: hidden;
}
section.faq .item p,
section.faq .item ul,
section.faq .item ol {
  padding: 0 32px;
  color: #404040;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.8px;
}
section.faq .item p:first-child,
section.faq .item ul:first-child,
section.faq .item ol:first-child {
  padding-top: 24px;
}
section.faq .item p:last-child,
section.faq .item ul:last-child,
section.faq .item ol:last-child {
  padding-bottom: 24px;
}
section.faq .item ol {
  padding-left: 31px;
  list-style: none;
}
section.faq .item ol li {
  margin-bottom: 8px;
  line-height: 1.75;
  position: relative;
  padding-left: 16px;
}
section.faq .item ol li::before {
  content: "▪";
  position: absolute;
  left: 0;
  top: 0;
  color: #404040;
  font-size: 16px;
  line-height: 1.75;
}
section.faq .item ul {
  padding-left: 31px;
  list-style: none;
}
section.faq .item ul li {
  margin-bottom: 8px;
  line-height: 1.75;
  position: relative;
  padding-left: 16px;
}
section.faq .item ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #404040;
  font-size: 16px;
  line-height: 1.75;
}
section.faq .item a {
  color: #404040;
  text-decoration: none;
}
@media screen and (max-width: 992px) {
  section.faq .item a {
    display: block;
  }
}
section.faq .item a span {
  text-decoration: underline;
  text-underline-offset: 3px;
}
section.faq .item.active h3::after {
  transform: translateY(-50%) rotate(0);
}
section.faq .item.active .content-wrapper {
  grid-template-rows: 1fr;
}

.speaker-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.speaker-popup.active {
  opacity: 1;
  pointer-events: all;
}
.speaker-popup.active .popup-container {
  transform: translateY(0) scale(1);
}
.speaker-popup .popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 135, 211, 0.85);
  cursor: pointer;
}
.speaker-popup .popup-wrapper {
  position: relative;
  z-index: 1;
  max-width: 780px;
  width: calc(100% - 64px);
}
.speaker-popup .popup-wrapper::after {
  content: "";
  position: absolute;
  width: 99px;
  height: 99px;
  display: block;
  background-image: url("./../image/dec-down.png");
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -50px;
  left: -50px;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 992px) {
  .speaker-popup .popup-wrapper::after {
    left: -30px;
  }
}
.speaker-popup .popup-wrapper::before {
  content: "";
  position: absolute;
  width: 133px;
  height: 143px;
  display: block;
  background-image: url("./../image/dec-up.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: -40px;
  right: -20px;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 992px) {
  .speaker-popup .popup-wrapper::before {
    right: -30px;
    top: -60px;
  }
}
.speaker-popup .popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  z-index: 2;
  transition: 0.3s;
}
.speaker-popup .popup-close:hover {
  transform: rotate(90deg);
}
.speaker-popup .popup-close img {
  width: 24px;
  height: 24px;
  display: block;
}
.speaker-popup .popup-container {
  position: relative;
  background: white;
  border-radius: 4px;
  width: 100%;
  padding: 40px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 767px) {
  .speaker-popup .popup-container {
    overflow-y: auto;
    max-height: 75vh;
    padding: 40px;
  }
}
.speaker-popup .popup-body {
  display: flex;
  gap: 60px;
  align-items: center;
}
@media (max-width: 767px) {
  .speaker-popup .popup-body {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.speaker-popup .popup-body .avatar-big {
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  position: relative;
  z-index: 0;
}
.speaker-popup .popup-body .avatar-big::before {
  content: "";
  width: 130%;
  height: 130%;
  opacity: 0.8;
  bottom: -25%;
  left: -5%;
  display: block;
  position: absolute;
  z-index: -1;
  background-size: contain;
  background-image: url("./../image/ball-bg.png");
}
@media screen and (max-width: 768px) {
  .speaker-popup .popup-body .avatar-big::before {
    width: 140%;
    height: 140%;
    bottom: -30%;
    left: -15%;
  }
}
@media (max-width: 767px) {
  .speaker-popup .popup-body .avatar-big {
    width: 180px;
    height: 180px;
    margin-left: 0;
    padding: 10px;
  }
}
.speaker-popup .popup-body .avatar-big img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.speaker-popup .popup-body .details {
  flex: 1;
  text-align: left;
}
.speaker-popup .popup-body .details .tag {
  font-size: 14px;
  letter-spacing: 4px;
  color: #06b6d4;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.speaker-popup .popup-body .details h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a73b8;
  margin-top: 8px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .speaker-popup .popup-body .details h2 {
    font-size: 24px;
  }
}
.speaker-popup .popup-body .details .sub-title {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin-top: 16px;
}
.speaker-popup .popup-body .details .bio {
  font-size: 15px;
  color: #444;
  line-height: 1.85;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .speaker-popup .popup-body .details .bio {
    font-size: 14px;
  }
}

.campaign-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.campaign-popup.active {
  display: flex !important;
}

.popup-box {
  background-image: url("./../image/nav.jpg");
  background-size: cover;
  padding: 73px 100px;
  text-align: center;
  max-width: 600px;
}
@media screen and (max-width: 992px) {
  .popup-box {
    padding: 30px;
    max-width: 90%;
  }
}
.popup-box .popup-title {
  color: #404040;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.popup-box .popup-content {
  color: #404040;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 2px;
}

.fixed-btn {
  position: fixed;
  width: 88px;
  bottom: 40px;
  right: -200px;
  z-index: 11;
  cursor: pointer;
  transition: right 1s, transform 0.3s;
  opacity: 1;
  pointer-events: none;
}
.fixed-btn.visible {
  opacity: 1;
  right: 40px;
  pointer-events: auto;
}
.fixed-btn:hover {
  transform: translateY(-2px);
}
@media screen and (max-width: 992px) {
  .fixed-btn {
    width: 88px;
    bottom: 20px;
    right: -200px;
  }
  .fixed-btn.visible {
    opacity: 1;
    right: 20px;
    pointer-events: auto;
  }
}/*# sourceMappingURL=style.css.map */