:root {
  font-size: 16px;
  --bs-warning: $main-orange !important;
}

body {
  background-color: #01092c;
  font-family: "Noto Sans TC", Arial, Helvetica, sans-serif;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  background: url("../images/bg-1.jpg") center bottom/cover no-repeat fixed;
}
@media only screen and (max-width: 991px) {
  body {
    background: #01092c;
  }
}

html {
  scroll-behavior: smooth;
}

@media only screen and (min-width: 1400px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1500px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(0, 8, 26, 0.65);
  backdrop-filter: blur(10px);
}
.site-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 1.5rem;
}
.site-header__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.site-header__logo-img {
  display: block;
  height: 45px;
  width: auto;
}
.site-header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 1130px) {
  .site-header__nav ul {
    gap: 1rem;
  }
}
.site-header__nav a {
  position: relative;
  display: inline-block;
  padding: 0.35rem 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: #FF6700;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.site-header__nav a:hover {
  color: #FF8F08;
}
.site-header__nav a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.site-header__cta {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #FF6700;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.site-header__cta:hover {
  background: #FF8F08;
  color: #fff;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.site-header__toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.site-header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
}
.site-header__toggle.active span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.site-header__toggle.active span:nth-child(2) {
  opacity: 0;
}
.site-header__toggle.active span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}
@media only screen and (max-width: 992px) {
  .site-header__inner {
    padding: 0.75rem 1.25rem;
    position: relative;
  }
  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 8, 26, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-transition: max-height 0.3s ease;
    transition: max-height 0.3s ease;
  }
  .site-header__nav.active {
    max-height: 400px;
  }
  .site-header__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.5rem 1rem;
  }
  .site-header__nav a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .site-header__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width: 540px) {
  .site-header__logo-img {
    height: 26px;
  }
  .site-header__cta {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
  }
}

#about,
#highlights,
#enterprise-practice,
#perspectives,
#agenda,
#speakers,
#event-info,
#event-info-mobile,
.registration-form {
  scroll-margin-top: 90px;
}

main {
  width: 100%;
  overflow-x: hidden;
}
main img {
  display: block;
  max-width: 100%;
  height: auto;
}

.desktop-image {
  position: relative;
}
.desktop-image img {
  width: 100%;
  max-width: none;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 1920px) {
  .desktop-image img {
    width: 108%;
    -webkit-transform: translateX(-48%);
            transform: translateX(-48%);
  }
}

.mobile-image {
  display: none;
  position: relative;
}
.mobile-image img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media only screen and (max-width: 768px) {
  .desktop-image {
    display: none;
  }
  .mobile-image {
    display: block;
  }
}
.kv-glow {
  display: block;
  position: absolute;
  top: 32%;
  left: 33%;
  width: 160px;
  height: 160px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}
@media only screen and (max-width: 1920px) {
  .kv-glow {
    top: 33%;
    left: 34%;
  }
}
@media only screen and (max-width: 1280px) {
  .kv-glow {
    width: 140px;
    height: 140px;
  }
}

@media only screen and (max-width: 768px) {
  .kv-glow {
    top: 44%;
    left: 52%;
    width: 90px;
    height: 90px;
  }
}
.kv-glow__core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(160, 210, 255, 0.6) 30%, rgba(80, 150, 255, 0) 70%);
  mix-blend-mode: screen;
  -webkit-animation: kvGlowPulse 2.8s ease-in-out infinite;
          animation: kvGlowPulse 2.8s ease-in-out infinite;
}

.kv-glow__spark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  -webkit-box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.9);
          box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.9);
  opacity: 0;
  -webkit-animation: kvGlowSpark 2.4s ease-out infinite;
          animation: kvGlowSpark 2.4s ease-out infinite;
}
.kv-glow__spark--1 {
  --tx: 60px;
  --ty: -40px;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.kv-glow__spark--2 {
  --tx: -50px;
  --ty: -60px;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.kv-glow__spark--3 {
  --tx: 30px;
  --ty: 55px;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

@-webkit-keyframes kvGlowPulse {
  0%, 100% {
    opacity: 0.7;
    -webkit-transform: translate(-50%, -50%) scale(0.9);
            transform: translate(-50%, -50%) scale(0.9);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1.15);
            transform: translate(-50%, -50%) scale(1.15);
  }
}

@keyframes kvGlowPulse {
  0%, 100% {
    opacity: 0.7;
    -webkit-transform: translate(-50%, -50%) scale(0.9);
            transform: translate(-50%, -50%) scale(0.9);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1.15);
            transform: translate(-50%, -50%) scale(1.15);
  }
}
@-webkit-keyframes kvGlowSpark {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) translate(0, 0) scale(0.5);
            transform: translate(-50%, -50%) translate(0, 0) scale(0.5);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) scale(1);
            transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) scale(1);
  }
}
@keyframes kvGlowSpark {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) translate(0, 0) scale(0.5);
            transform: translate(-50%, -50%) translate(0, 0) scale(0.5);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) scale(1);
            transform: translate(-50%, -50%) translate(var(--tx), var(--ty)) scale(1);
  }
}
.section-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.section-heading__deco {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 2px;
  position: relative;
}
.section-heading__deco::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #FF6700;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.section-heading__deco--left {
  background: -webkit-gradient(linear, left top, right top, from(transparent), to(rgba(79, 209, 255, 0.7)));
  background: linear-gradient(90deg, transparent, rgba(79, 209, 255, 0.7));
}
.section-heading__deco--left::before {
  left: 0;
}
.section-heading__deco--right {
  background: -webkit-gradient(linear, left top, right top, from(rgba(79, 209, 255, 0.7)), to(transparent));
  background: linear-gradient(90deg, rgba(79, 209, 255, 0.7), transparent);
}
.section-heading__deco--right::before {
  right: 0;
}
.section-heading__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 18px rgba(120, 200, 255, 0.65), 0 0 40px rgba(80, 150, 255, 0.35);
}
@media only screen and (max-width: 576px) {
  .section-heading__deco {
    display: none;
  }
}

.show-1430 {
  display: none;
}
@media only screen and (max-width: 1430px) {
  .show-1430 {
    display: inline;
  }
}

.show-1400 {
  display: none;
}
@media only screen and (max-width: 1400px) {
  .show-1400 {
    display: inline;
  }
}

.text-accent {
  color: #FF6700 !important;
  font-weight: 700;
}

.text-org {
  background: -webkit-gradient(linear, left top, left bottom, from(#fba344), to(#f94a15));
  background: linear-gradient(180deg, #fba344 0%, #f94a15 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.about {
  position: relative;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .about {
    padding: 3rem 0.8rem;
  }
}
@media only screen and (max-width: 580px) {
  .about {
    padding: 2rem 10px;
  }
}
.about__title {
  margin: 0 auto 1.5rem;
}
@media only screen and (max-width: 1440px) {
  .about__inner .col {
    padding: 0;
  }
}

.about-card {
  position: relative;
  height: 29.5rem;
  padding: 2.5rem 1.5rem 2rem;
  border-radius: 16px;
  background: url("../images/01/block_blue.png") center center/116% 100% no-repeat;
  -webkit-transition: background-image 0.3s ease;
  transition: background-image 0.3s ease;
  cursor: pointer;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .about-card {
    height: 26.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .about-card {
    height: 29rem;
  }
}
@media only screen and (max-width: 580px) {
  .about-card {
    padding: 2.5rem 10px 2rem;
  }
}
@media only screen and (max-width: 450px) {
  .about-card {
    padding: 1rem 10px 2rem;
    height: 20rem;
    background: url("../images/01/block_blue-mb.png") center center/121% 110% no-repeat;
  }
}
.about-card__icon {
  width: 160px;
  margin: 0 auto 0.5em;
}
@media only screen and (max-width: 1440px) {
  .about-card__icon {
    width: 140px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-card__icon {
    width: 60%;
  }
}
.about-card__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4rem;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1440px) {
  .about-card__label {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-card__label {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 580px) {
  .about-card__label {
    gap: 0px;
    font-size: 16px;
  }
}
.about-card__letter {
  font-size: 3rem;
  font-weight: 900;
  color: #FF6700;
  line-height: 1;
}
@media only screen and (max-width: 580px) {
  .about-card__letter {
    font-size: 30px;
  }
}
.about-card__subtitle {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 1500px) {
  .about-card__subtitle {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 1440px) {
  .about-card__subtitle {
    font-size: 16px;
  }
}
@media only screen and (max-width: 580px) {
  .about-card__subtitle {
    font-size: 15px;
    top: 41vw;
    padding: 0;
  }
}
.about-card__content {
  position: absolute;
  left: 1.3rem;
  right: 1.5rem;
  top: 260px;
  opacity: 0;
  padding: 0 1rem;
  font-size: 1.3rem;
  color: #fff;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 1500px) {
  .about-card__content {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 1440px) {
  .about-card__content {
    font-size: 16px;
    top: 250px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-card__content {
    top: 220px;
  }
}
@media only screen and (max-width: 991px) {
  .about-card__content {
    top: 290px;
  }
}
@media only screen and (max-width: 767px) {
  .about-card__content {
    top: 240px;
  }
}
@media only screen and (max-width: 580px) {
  .about-card__content {
    font-size: 15px;
    top: 45vw;
    padding: 0;
  }
}
@media only screen and (max-width: 450px) {
  .about-card__content {
    top: 42vw;
  }
}
.about-card__arrow {
  position: absolute;
  left: 50%;
  bottom: 23%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  opacity: 1;
  text-shadow: 0 0 10px rgba(79, 209, 255, 0.9), 0 0 20px rgba(12, 79, 183, 0.7);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-animation: about-card-arrow-bounce 1.6s ease-in-out infinite;
          animation: about-card-arrow-bounce 1.6s ease-in-out infinite;
}
.about-card:hover, .about-card.active {
  background-image: url("../images/01/block_org.png");
}
@media only screen and (max-width: 450px) {
  .about-card:hover, .about-card.active {
    background-image: url("../images/01/block_org-mb.png");
  }
}
.about-card:hover .about-card__subtitle, .about-card.active .about-card__subtitle {
  opacity: 0;
}
.about-card:hover .about-card__content, .about-card.active .about-card__content {
  opacity: 1;
}
.about-card:hover .about-card__arrow, .about-card.active .about-card__arrow {
  opacity: 0;
}

@-webkit-keyframes about-card-arrow-bounce {
  0%, 100% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  50% {
    -webkit-transform: translate(-50%, 6px);
            transform: translate(-50%, 6px);
  }
}

@keyframes about-card-arrow-bounce {
  0%, 100% {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  50% {
    -webkit-transform: translate(-50%, 6px);
            transform: translate(-50%, 6px);
  }
}
.highlights {
  position: relative;
  margin: 0 auto;
  padding: 3rem 1.5rem 4.5rem;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .highlights {
    padding: 3rem 0.8rem;
  }
}
.highlights__title {
  margin: 0 auto 2.5rem;
}
@media only screen and (max-width: 580px) {
  .highlights__title {
    margin: 0 auto 1.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .highlights .col {
    padding: 0 8px;
  }
}
@media only screen and (max-width: 580px) {
  .highlights .col {
    padding: 0 3px;
  }
}

@media only screen and (max-width: 991px) {
  .highlights .highlights__inner.container {
    max-width: 95%;
  }
}

@media only screen and (max-width: 767px) {
  .highlights-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 20px;
    background: linear-gradient(rgba(4, 14, 34, 0.6), rgba(4, 14, 34, 0.6)) padding-box, linear-gradient(135deg, rgba(79, 209, 255, 0.6), rgba(255, 103, 0, 0.5)) border-box;
  }
}
@media only screen and (max-width: 767px) and (max-width: 350px) {
  .highlights-card {
    gap: 10px;
    padding: 1rem 10px;
  }
}
@media only screen and (max-width: 767px) {
  .highlights-card__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
  }
}
.highlights-card__icon {
  max-width: 230px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 1280px) {
  .highlights-card__icon {
    max-width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .highlights-card__icon {
    max-width: none;
    width: 80px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0;
  }
}
.highlights-card__label {
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
@media only screen and (max-width: 1280px) {
  .highlights-card__label {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 991px) {
  .highlights-card__label {
    font-size: 19px;
  }
}
@media only screen and (max-width: 767px) {
  .highlights-card__label {
    font-size: 1.05rem;
  }
}
@media only screen and (max-width: 580px) {
  .highlights-card__label {
    font-size: 20px;
  }
}
.highlights-card__label .text-org {
  background: -webkit-gradient(linear, left top, left bottom, from(#fba344), to(#f94a15));
  background: linear-gradient(180deg, #fba344 0%, #f94a15 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 2.6rem;
  vertical-align: -3px;
}
@media only screen and (max-width: 991px) {
  .highlights-card__label .text-org {
    font-size: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .highlights-card__label .text-org {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 580px) {
  .highlights-card__label .text-org {
    font-size: 20px;
    vertical-align: -2px;
  }
}
.highlights-card__text {
  max-width: 577px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem;
  background: url("../images/02/text-bg.png") center center/98% 100% no-repeat;
}
@media only screen and (max-width: 1440px) {
  .highlights-card__text {
    background-size: 105% 100%;
  }
}
@media only screen and (max-width: 991px) {
  .highlights-card__text {
    padding: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .highlights-card__text {
    max-width: none;
    margin: 0;
    padding: 0 !important;
    background: none;
  }
}
.highlights-card__text p {
  margin: 0;
  font-size: 1.4rem;
  color: #fff;
}
@media only screen and (max-width: 1430px) {
  .highlights-card__text p {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 991px) {
  .highlights-card__text p {
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .highlights-card__text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
  }
}
@media only screen and (max-width: 580px) {
  .highlights-card__text p {
    font-size: 17px;
  }
}

.partnerships {
  position: relative;
  margin: 0 auto;
  padding: 5rem 1.5rem 5rem;
  color: #fff;
  text-align: center;
  background: url("../images/09/bg.png") center bottom/1920px no-repeat #031331;
  background-position-y: -3rem;
  overflow: hidden;
}
@media only screen and (max-width: 1399px) {
  .partnerships {
    background-position-y: 0;
    background-size: cover;
  }
}
@media only screen and (max-width: 767px) {
  .partnerships {
    padding: 2rem 0 !important;
    background: transparent;
  }
}
.partnerships__title {
  margin: 0 auto 2rem;
}
@media only screen and (max-width: 580px) {
  .partnerships__title {
    margin: 0 auto 1rem;
  }
}
@media only screen and (max-width: 991px) {
  .partnerships__inner.container {
    max-width: 95%;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .partnerships__inner.container {
    max-width: 100%;
  }
}
.partnerships__pic {
  max-width: 1292px;
  width: 100%;
  margin: 0 auto;
}
.partnerships__pic--mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .partnerships__pic--desktop {
    display: none;
  }
  .partnerships__pic--mobile {
    display: block;
    max-width: 420px;
  }
}

.enterprise-practice {
  position: relative;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .enterprise-practice {
    padding: 4rem 0.8rem;
  }
}
.enterprise-practice__title {
  margin: 0 auto 2.5rem;
}
.enterprise-practice__img-wrap {
  max-width: 1352px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .enterprise-practice__img-wrap {
    max-width: 100%;
  }
}
.enterprise-practice__img-wrap img {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
.enterprise-practice__img--mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .enterprise-practice__img--desktop {
    display: none;
  }
  .enterprise-practice__img--mobile {
    display: block;
  }
}

.perspectives {
  position: relative;
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
  color: #fff;
  text-align: center;
  background: url("../images/04/bg.jpg") center center/cover no-repeat fixed;
}
@media only screen and (max-width: 767px) {
  .perspectives {
    padding: 4rem 0.8rem;
    background: -webkit-gradient(linear, left top, left bottom, from(#000511), color-stop(45%, #051336), to(#0c1f4d));
    background: linear-gradient(180deg, #000511 0%, #051336 45%, #0c1f4d 100%);
  }
}
.perspectives__title {
  margin: 0 auto 4rem;
}
@media only screen and (max-width: 580px) {
  .perspectives__title {
    margin: 0 auto 1.5rem;
  }
}
.perspectives .col {
  padding: 0;
}

@media only screen and (max-width: 991.98px) {
  #perspectiveGrid .col:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #perspectiveGrid .col:nth-child(2) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  #perspectiveGrid .col:nth-child(3) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  #perspectiveGrid .col:nth-child(4) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.perspectives-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  cursor: pointer;
}
.perspectives-card__photo {
  width: 100%;
  margin: 0 auto 1rem;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.perspectives-card__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  margin-top: -8rem;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.9);
}
@media only screen and (max-width: 991px) {
  .perspectives-card__text {
    margin-top: -11rem;
  }
}
@media only screen and (max-width: 580px) {
  .perspectives-card__text {
    margin-top: -24vw;
  }
}
.perspectives-card__name {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
@media only screen and (max-width: 1440px) {
  .perspectives-card__name {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 1280px) {
  .perspectives-card__name {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 580px) {
  .perspectives-card__name {
    font-size: 18px;
  }
}
.perspectives-card__title {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1440px) {
  .perspectives-card__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
}
@media only screen and (max-width: 580px) {
  .perspectives-card__title {
    font-size: 16px;
  }
}
.perspectives-card__quote {
  font-size: 1.5rem;
  font-weight: 500;
  color: #FF8F08;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 1280px) {
  .perspectives-card__quote {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 580px) {
  .perspectives-card__quote {
    font-size: 16px;
  }
}
.perspectives-card__btn {
  width: 300px;
  max-width: 95%;
  display: block;
  margin: auto auto 0;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.perspectives-card__btn:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  color: #fff;
  -webkit-filter: brightness(2);
          filter: brightness(2);
}
.perspectives-card:hover .perspectives-card__btn {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  color: #fff;
  -webkit-filter: brightness(2);
          filter: brightness(2);
}

.agenda {
  position: relative;
  margin: 0 auto;
  padding: 5rem 1.5rem 7rem;
  color: #fff;
  text-align: center;
  background: url("../images/05/bg.jpg") center bottom/cover no-repeat fixed;
}
@media only screen and (max-width: 767px) {
  .agenda {
    padding: 3rem 0.8rem;
    background: transparent;
  }
}
.agenda__title {
  margin: 0 auto 2.5rem;
}
.agenda__table {
  max-width: 1074px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .agenda__table {
    display: none;
  }
}

.agenda-timeline {
  display: none;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  border: 2px solid #2ca1ff;
  border-radius: 16px;
}
@media only screen and (max-width: 767px) {
  .agenda-timeline {
    display: block;
  }
}
.agenda-timeline__item {
  padding: 1.5rem;
}
.agenda-timeline__time {
  display: inline-block;
  padding: 0.3rem 1rem;
  margin-bottom: 0.9rem;
  border: 1.5px solid #2ca1ff;
  border-radius: 50px;
  color: #7cd3ff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}
.agenda-timeline__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.6rem;
}
.agenda-timeline__desc {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.agenda-timeline__divider {
  position: relative;
  height: 1px;
  background: #2ca1ff;
}
.agenda-timeline__divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #59c0f2;
  -webkit-box-shadow: 0 0 12px 4px rgba(89, 192, 242, 0.8);
          box-shadow: 0 0 12px 4px rgba(89, 192, 242, 0.8);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.speakers {
  position: relative;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  color: #fff;
  text-align: center;
}
.speakers__title {
  margin: 0 auto 3rem;
}
@media only screen and (max-width: 580px) {
  .speakers__title {
    margin: 0 auto 1.5rem;
  }
}
.speakers__inner.container {
  max-width: 1200px;
}
@media only screen and (max-width: 991px) {
  .speakers .col {
    padding: 0 8px;
  }
}
@media only screen and (max-width: 580px) {
  .speakers .col {
    padding: 0 3px;
  }
}

.speaker-card {
  cursor: pointer;
}
.speaker-card__photo {
  max-width: 210px;
  width: 97%;
  margin: 0 auto 10px;
  border-radius: 50%;
  padding: 3px;
  border: 3px solid #1a4499;
  -webkit-box-shadow: 0 0 25px rgba(1, 0, 14, 0.7), 0 0 25px rgba(1, 0, 14, 0.7);
          box-shadow: 0 0 25px rgba(1, 0, 14, 0.7), 0 0 25px rgba(1, 0, 14, 0.7);
}
@media only screen and (max-width: 991px) {
  .speaker-card__photo {
    width: 95%;
  }
}
@media only screen and (max-width: 580px) {
  .speaker-card__photo {
    width: 90%;
    -webkit-box-shadow: 0 0 25px rgba(1, 0, 14, 0.7);
            box-shadow: 0 0 25px rgba(1, 0, 14, 0.7);
  }
}
.speaker-card__name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
@media only screen and (max-width: 1280px) {
  .speaker-card__name {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 580px) {
  .speaker-card__name {
    font-size: 17px;
  }
}
.speaker-card__title {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1280px) {
  .speaker-card__title {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 580px) {
  .speaker-card__title {
    font-size: 15px;
    margin-bottom: 0.5rem;
  }
}
.speaker-card__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  border: 2px solid #59c0f2;
  cursor: pointer;
  background: #0c193b;
  -webkit-box-shadow: inset 0 0 20px #012681, inset 0 0 20px #012685;
          box-shadow: inset 0 0 20px #012681, inset 0 0 20px #012685;
  -webkit-transition: background 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, border-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media only screen and (max-width: 1280px) {
  .speaker-card__btn {
    font-size: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .speaker-card__btn {
    padding: 0.5rem 13px;
  }
}
@media only screen and (max-width: 580px) {
  .speaker-card__btn {
    padding: 0.5rem 10px;
  }
}
.speaker-card__btn:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border-color: #FF8F08;
  background: rgba(79, 209, 255, 0.12);
}
.speaker-card:hover .speaker-card__btn {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border-color: #FF8F08;
  background: rgba(79, 209, 255, 0.12);
}

.speaker-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.speaker-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.speaker-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 5, 17, 0.75);
  backdrop-filter: blur(4px);
}
.speaker-modal__panel {
  position: relative;
  z-index: 1;
  width: min(700px, 92vw);
  max-height: 80vh;
  overflow-y: auto;
  text-align: left;
  background: linear-gradient(160deg, rgba(9, 22, 48, 0.98), rgba(3, 10, 26, 0.98));
  border: 1px solid rgba(79, 209, 255, 0.4);
  border-radius: 20px;
  padding: 2.25rem 1.6rem 1.5rem;
  color: #fff;
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 143, 8, 0.7) rgba(255, 255, 255, 0.08);
  -webkit-box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
          box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}
.speaker-modal__panel::-webkit-scrollbar {
  width: 10px;
}
.speaker-modal__panel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}
.speaker-modal__panel::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 143, 8, 0.9)), to(rgba(79, 209, 255, 0.8)));
  background: linear-gradient(180deg, rgba(255, 143, 8, 0.9), rgba(79, 209, 255, 0.8));
  border-radius: 999px;
  border: 2px solid rgba(6, 14, 30, 0.8);
}
.speaker-modal__panel::-webkit-scrollbar-thumb:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 167, 38)), to(rgba(96, 220, 255, 0.95)));
  background: linear-gradient(180deg, rgb(255, 167, 38), rgba(96, 220, 255, 0.95));
}
.speaker-modal.active .speaker-modal__panel {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.speaker-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}
.speaker-modal__close:hover {
  color: #fff;
}
.speaker-modal__photo {
  max-width: 200px;
  width: 100%;
  margin: 0 auto 1rem;
  border-radius: 50%;
  padding: 3px;
  border: 3px solid #1a4499;
  opacity: 1;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}
.speaker-modal__photo.is-loading {
  opacity: 0;
}
.speaker-modal__name, .speaker-modal__title, .speaker-modal__outline {
  text-align: left;
}
.speaker-modal__name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 991px) {
  .speaker-modal__name {
    font-size: 26px;
  }
}
.speaker-modal__title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
@media only screen and (max-width: 991px) {
  .speaker-modal__title {
    font-size: 20px;
  }
}
.speaker-modal__outline {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.3rem;
}
.speaker-modal__outline p {
  margin: 0 0 1rem;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 400;
}
.speaker-modal__outline strong {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: #ffb454;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}
@media only screen and (max-width: 991px) {
  .speaker-modal__outline strong {
    font-size: 18px;
  }
}

body.speaker-modal-open {
  overflow: hidden;
}

.event-info {
  position: relative;
  margin: 0 auto;
  padding: 5rem 1.5rem 7rem;
  color: #fff;
  text-align: center;
  background: url("../images/bg.jpg") center bottom/cover no-repeat fixed;
}
@media only screen and (max-width: 767px) {
  .event-info {
    padding: 3rem 0.8rem;
  }
}
.event-info__title {
  margin: 0 auto -1rem;
}
@media only screen and (max-width: 580px) {
  .event-info__title {
    margin: 0 auto 1.5rem;
  }
}
.event-info__inner.container {
  max-width: 1320px;
  text-align: left;
}

.event-info__detail .event-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem;
}
@media only screen and (max-width: 991px) {
  .event-info__detail .event-info__row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 580px) {
  .event-info__detail .event-info__row {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    gap: 10px;
    margin: 0 auto 1.5rem;
  }
}
.event-info__detail .event-info__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.3rem;
}
.event-info__detail .event-info__icon.bi {
  font-size: 4rem;
  color: #FF6700;
  line-height: 1;
}
@media only screen and (max-width: 1100px) {
  .event-info__detail .event-info__icon.bi {
    font-size: 3.6rem;
  }
}
@media only screen and (max-width: 580px) {
  .event-info__detail .event-info__icon.bi {
    font-size: 2.6rem;
  }
}
.event-info__detail .event-info__label {
  color: #FF6700;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1100px) {
  .event-info__detail .event-info__label {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 580px) {
  .event-info__detail .event-info__label {
    font-size: 18px;
  }
}
.event-info__detail .event-info__value {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}
@media only screen and (max-width: 1100px) {
  .event-info__detail .event-info__value {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 580px) {
  .event-info__detail .event-info__value {
    font-size: 24px;
  }
}
.event-info__detail .event-info__note {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0;
  letter-spacing: 1px;
}
@media only screen and (max-width: 1100px) {
  .event-info__detail .event-info__note {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 580px) {
  .event-info__detail .event-info__note {
    font-size: 18px;
  }
}
.event-info__detail .line {
  width: 90%;
  margin: 1rem auto;
}

.event-info__map {
  position: relative;
  width: 100%;
  aspect-ratio: 700/460;
  overflow: hidden;
  border: 4px solid #02b9f1;
  border-radius: 24px;
  background-color: #fff;
}
@media only screen and (max-width: 580px) {
  .event-info__map {
    border: 3px solid #02b9f1;
  }
}
.event-info__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.register {
  padding: 5rem 1.5rem;
}

.hsfc-Step,
[data-hsfc-id=Renderer] .hsfc-Step {
  background: transparent !important;
}

.registration-form {
  position: relative;
  overflow: hidden;
  margin: auto;
  z-index: 2;
  max-width: 1320px;
  min-height: 100vh;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .registration-form {
    max-width: 100%;
    margin-top: 0;
  }
}
.registration-form * {
  font-family: "Noto Sans CJK TC", sans-serif !important;
}
.registration-form .hsfc-DataPrivacyField {
  text-align: left;
  margin-top: 1rem;
}
.registration-form [data-hsfc-id=Renderer] .hsfc-RichText p {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  color: #ffa803;
}
@media only screen and (max-width: 540px) {
  .registration-form [data-hsfc-id=Renderer] .hsfc-RichText p {
    font-size: 1.2rem;
  }
  .registration-form [data-hsfc-id=Renderer] .hsfc-RichText p > p {
    display: block !important;
  }
}
.registration-form .hsfc-TextField,
.registration-form .hsfc-PhoneField,
.registration-form .hsfc-EmailField,
.registration-form .hsfc-DropdownField,
.registration-form .hsfc-FileField,
.registration-form .hsfc-DataPrivacyField {
  width: 100%;
  max-width: 800px;
  margin: auto;
}
.registration-form .hsfc-FileField {
  border: 2px dashed #fff;
  border-radius: 16px;
  padding: 10px 20px;
}
.registration-form [data-hsfc-id=Renderer] .hsfc-FieldLabel {
  font-size: 1.5rem;
  color: #fff;
}
@media only screen and (max-width: 540px) {
  .registration-form [data-hsfc-id=Renderer] .hsfc-FieldLabel {
    font-size: 1.2rem;
  }
}
.registration-form .hsfc-NavigationRow__Buttons button {
  margin: auto;
  width: 300px;
  color: #fff;
  background-color: #FF6700;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 500;
}
.registration-form span.hsfc-FieldLabel__RequiredIndicator {
  color: #FF6700;
  font-size: 2rem;
  line-height: 0;
  vertical-align: -7px;
  padding-left: 3px;
}
.registration-form .hsfc-DataPrivacyField .hsfc-Row {
  margin-bottom: 5px !important;
}
.registration-form .hsfc-DataPrivacyField .hsfc-Row p {
  text-align: left !important;
  display: block !important;
}
.registration-form .hsfc-DataPrivacyField .hsfc-Row span {
  font-size: 16px;
}
.registration-form .hsfc-DataPrivacyField .hsfc-Row span span {
  font-size: 12px !important;
}
.registration-form .hsfc-DataPrivacyField .hsfc-CheckboxField {
  margin-bottom: 15px !important;
}

@media only screen and (max-width: 540px) {
  [data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content,
  .hsfc-Step__Content {
    padding: 0 0.5rem 2rem !important;
  }
  .registration-form .hsfc-DataPrivacyField .hsfc-Row span {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }
}
.about__title--desktop,
.highlights__title--desktop,
.partnerships__title--desktop,
.enterprise-practice__title--desktop,
.perspectives__title--desktop,
.agenda__title--desktop,
.speakers__title--desktop,
.event-info__title--desktop {
  max-width: 1380px;
  width: 100%;
  height: auto;
}

.about__title--mobile,
.highlights__title--mobile,
.partnerships__title--mobile,
.enterprise-practice__title--mobile,
.perspectives__title--mobile,
.agenda__title--mobile,
.speakers__title--mobile,
.event-info__title--mobile {
  display: none;
  max-width: 107vw;
  height: auto;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media only screen and (max-width: 991px) {
  .about__title--desktop,
  .highlights__title--desktop,
  .partnerships__title--desktop,
  .enterprise-practice__title--desktop,
  .perspectives__title--desktop,
  .agenda__title--desktop,
  .speakers__title--desktop,
  .event-info__title--desktop {
    display: none;
  }
  .about__title--mobile,
  .highlights__title--mobile,
  .partnerships__title--mobile,
  .enterprise-practice__title--mobile,
  .perspectives__title--mobile,
  .agenda__title--mobile,
  .speakers__title--mobile,
  .event-info__title--mobile {
    display: block;
  }
}
@media only screen and (max-width: 580px) {
  section {
    padding: 2rem 0.5rem !important;
  }
}

@media only screen and (max-width: 991px) {
  .perspectives__inner.container,
  .enterprise-practice__inner.container,
  .speakers__inner.container,
  .event-info__inner.container {
    max-width: 95%;
    padding: 0;
  }
}/*# sourceMappingURL=main.css.map */